Skip to content

Commit 4f0a3db

Browse files
committed
feat: add RLCFaucet link to the sidebar for easier access to resources
1 parent be525f2 commit 4f0a3db

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed

.vitepress/sidebar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ export function getSidebar() {
9292
text: 'RLC Bridge',
9393
link: '/get-started/tooling-and-explorers/bridge',
9494
},
95+
{
96+
text: 'RLCFaucet',
97+
link: '/get-started/tooling-and-explorers/faucet',
98+
},
9599
{
96100
text: 'Subgraph Explorer',
97101
link: '/get-started/tooling-and-explorers/subgraph-explorer',
44.3 KB
Loading
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: RLC Faucet
3+
description:
4+
Get free RLC tokens on Arbitrum Sepolia testnet for testing your iApps,
5+
workerpools, and protected datasets without spending real tokens.
6+
---
7+
8+
# 🚰 RLC Faucet
9+
10+
Get free RLC tokens on **Arbitrum Sepolia testnet** to test your iApps, pay for workerpool executions, and access protected datasets without spending real tokens.
11+
12+
## What are RLC Tokens Used For?
13+
14+
In the iExec ecosystem, RLC tokens are used to pay for various services:
15+
16+
- **Pay Workerpools** - Compensate computational resources for executing your iApps
17+
- **Pay Protected Data Providers** - Access and use protected datasets in your applications
18+
- **Pay iApp Providers** - Use decentralized applications deployed on the network
19+
20+
These testnet RLC tokens allow you to test all these payment flows without spending real tokens.
21+
22+
## Eligibility Requirements
23+
24+
To be eligible for RLC claims, builders must meet these criteria:
25+
26+
- **GitHub or Google login** required for verification
27+
- **Maximum 1 RLC** in your wallet to claim (prevents abuse and ensures fair distribution)
28+
- **One claim per 24 hours** per authenticated account
29+
30+
## 💰 Claim Details
31+
32+
<UseCaseCard
33+
title="🚰 iExec RLC Faucet"
34+
description="Get 5 RLC tokens per claim on Arbitrum Sepolia testnet for testing your iExec applications and services."
35+
:image-url="faucetImage"
36+
image-alt="iExec RLC Faucet Interface"
37+
:features="[
38+
'5 RLC per claim',
39+
'GitHub/Google authentication',
40+
'24-hour cooldown period',
41+
'Balance verification (max 1 RLC)',
42+
'Arbitrum Sepolia testnet only'
43+
]"
44+
demo-url="https://explorer.iex.ec/arbitrum-sepolia-testnet/faucet"
45+
demo-icon="mdi:water"
46+
demo-label="Access Faucet"
47+
/>
48+
49+
::: tip 💡 Development Workflow
50+
51+
Use the RLC Faucet for development and testing, then bridge real RLC tokens when ready for production deployment on Arbitrum mainnet.
52+
53+
:::
54+
55+
<script setup>
56+
import UseCaseCard from '@/components/UseCaseCard.vue';
57+
58+
// Assets
59+
import faucetImage from '@/assets/tooling-&-explorers/faucet/faucet.png';
60+
</script>

0 commit comments

Comments
 (0)