Skip to content

Commit 18248cd

Browse files
committed
docs: create shared faucets page
1 parent 39411f3 commit 18248cd

File tree

6 files changed

+50
-35
lines changed

6 files changed

+50
-35
lines changed

next.config.mjs

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ const config = withNextra({
2929
'@': path.join(__dirname, 'src'),
3030
}
3131
return config
32-
}
32+
},
33+
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
34+
experimental: {
35+
mdxRs: true,
36+
},
3337
})
3438

3539
export default config
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import CopyableCode from '@/components/CopyableCode'
2+
import FaucetsContent from '@/content/shared/faucets-content.mdx'
3+
4+
export function FaucetsContentWrapper() {
5+
const components = {
6+
CopyableCode
7+
}
8+
9+
return <FaucetsContent components={components} />
10+
}
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Faucets
2+
3+
Get sepolia ETH from these faucets so you can fund your wallet to send transactions and deploy contracts on Ink Sepolia. You can also [bridge](/quick-start/faucets#bridging-funds-to-ink-sepolia) testnet funds to Ink.
4+
5+
###### Optimism Superchain Faucet
6+
The Superchain Faucet provides testnet ETH for Ink and all other OP chains. Sign in to claim 0.05 test ETH on 1 network every 24 hours or verify your onchain identity for more tokens.
7+
- https://console.optimism.io/faucet
8+
###### QuickNode
9+
QuickNode faucet is an easy to use Multi-Chain Faucet. You can use QuickNode Faucet to claim Ink Sepolia for testnet ETH for free - one drip per network every 12 hours.
10+
- https://faucet.quicknode.com/drip
11+
###### Ink
12+
Our in house faucet provides a quick and easy way to acquire testnet ETH.
13+
- https://inkonchain.com/faucet
14+
15+
## Bridging funds to Ink Sepolia
16+
17+
If you need an alternative to the above faucets you can choose to bridge ETH onto Ink Sepolia.
18+
19+
1. Get sepolia ETH by using your wallet with one of the existing faucets on the Ethereum Sepolia network:
20+
21+
* [https://console.optimism.io/faucet](https://console.optimism.io/faucet)
22+
* [https://www.alchemy.com/faucets/ethereum-sepolia](https://www.alchemy.com/faucets/ethereum-sepolia)
23+
* [https://faucet.quicknode.com/ethereum/sepolia](https://faucet.quicknode.com/ethereum/sepolia)
24+
* [https://cloud.google.com/application/web3/faucet/ethereum/sepolia](https://cloud.google.com/application/web3/faucet/ethereum/sepolia)
25+
26+
2. Transfer your ETH to <CopyableCode code="0x33f60714bbd74d62b66d79213c348614de51901c" />.
27+
- This is the [`L1StandardBridge Contract`](https://eth-sepolia.blockscout.com/address/0x33f60714BbD74d62b66D79213C348614DE51901C).
28+
- This contract will help you send your ETH from Sepolia to Ink Sepolia.
29+
- Once the transaction is confirmed you will quickly receive Ink ETH in your wallet.

src/pages/build/tools/_meta.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
"multisig": "Multisig",
44
"account-abstraction": "Account Abstraction",
55
"bridges": "Bridges",
6-
"faucets": {
7-
"title": "Faucets",
8-
"href": "/quick-start/faucets"
9-
},
6+
"faucets": "Faucets",
107
"block-explorers": "Block Explorers",
118
"indexers": "Indexers",
129
"vrf": "VRF",

src/pages/build/tools/faucets.mdx

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { FaucetsContentWrapper } from '@/components/FaucetsContentWrapper'
2+
3+
<FaucetsContentWrapper />

src/pages/quick-start/faucets.mdx

+2-30
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,3 @@
1-
import CopyableCode from '@/components/CopyableCode'
1+
import { FaucetsContentWrapper } from '@/components/FaucetsContentWrapper'
22

3-
## Faucets
4-
5-
Get sepolia ETH from these faucets so you can fund your wallet to send transactions and deploy contracts on Ink Sepolia. You can also [bridge](/quick-start/faucets#bridging-funds-to-ink-sepolia) testnet funds to Ink.
6-
7-
###### Optimism Superchain Faucet
8-
The Superchain Faucet provides testnet ETH for Ink and all other OP chains. Sign in to claim 0.05 test ETH on 1 network every 24 hours or verify your onchain identity for more tokens.
9-
- https://console.optimism.io/faucet
10-
###### QuickNode
11-
QuickNode faucet is an easy to use Multi-Chain Faucet. You can use QuickNode Faucet to claim Ink Sepolia for testnet ETH for free - one drip per network every 12 hours.
12-
- https://faucet.quicknode.com/drip
13-
###### Ink
14-
Our in house faucet provides a quick and easy way to acquire testnet ETH.
15-
- https://inkonchain.com/faucet
16-
17-
## Bridging funds to Ink Sepolia
18-
19-
If you need an alternative to the above faucets you can choose to bridge ETH onto Ink Sepolia.
20-
21-
1. Get sepolia ETH by using your wallet with one of the existing faucets on the Ethereum Sepolia network:
22-
23-
* [https://console.optimism.io/faucet](https://console.optimism.io/faucet)
24-
* [https://www.alchemy.com/faucets/ethereum-sepolia](https://www.alchemy.com/faucets/ethereum-sepolia)
25-
* [https://faucet.quicknode.com/ethereum/sepolia](https://faucet.quicknode.com/ethereum/sepolia)
26-
* [https://cloud.google.com/application/web3/faucet/ethereum/sepolia](https://cloud.google.com/application/web3/faucet/ethereum/sepolia)
27-
28-
2. Transfer your ETH to <CopyableCode code="0x33f60714bbd74d62b66d79213c348614de51901c" />.
29-
- This is the [`L1StandardBridge Contract`](https://eth-sepolia.blockscout.com/address/0x33f60714BbD74d62b66D79213C348614DE51901C).
30-
- This contract will help you send your ETH from Sepolia to Ink Sepolia.
31-
- Once the transaction is confirmed you will quickly receive Ink ETH in your wallet.
3+
<FaucetsContentWrapper />

0 commit comments

Comments
 (0)