Skip to content

Commit

Permalink
docs: create shared faucets page
Browse files Browse the repository at this point in the history
  • Loading branch information
inkjesse committed Nov 4, 2024
1 parent 39411f3 commit 18248cd
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 35 deletions.
6 changes: 5 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ const config = withNextra({
'@': path.join(__dirname, 'src'),
}
return config
}
},
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
experimental: {
mdxRs: true,
},
})

export default config
10 changes: 10 additions & 0 deletions src/components/FaucetsContentWrapper.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import CopyableCode from '@/components/CopyableCode'
import FaucetsContent from '@/content/shared/faucets-content.mdx'

export function FaucetsContentWrapper() {
const components = {
CopyableCode
}

return <FaucetsContent components={components} />
}
29 changes: 29 additions & 0 deletions src/content/shared/faucets-content.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Faucets

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.

###### Optimism Superchain Faucet
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.
- https://console.optimism.io/faucet
###### QuickNode
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.
- https://faucet.quicknode.com/drip
###### Ink
Our in house faucet provides a quick and easy way to acquire testnet ETH.
- https://inkonchain.com/faucet

## Bridging funds to Ink Sepolia

If you need an alternative to the above faucets you can choose to bridge ETH onto Ink Sepolia.

1. Get sepolia ETH by using your wallet with one of the existing faucets on the Ethereum Sepolia network:

* [https://console.optimism.io/faucet](https://console.optimism.io/faucet)
* [https://www.alchemy.com/faucets/ethereum-sepolia](https://www.alchemy.com/faucets/ethereum-sepolia)
* [https://faucet.quicknode.com/ethereum/sepolia](https://faucet.quicknode.com/ethereum/sepolia)
* [https://cloud.google.com/application/web3/faucet/ethereum/sepolia](https://cloud.google.com/application/web3/faucet/ethereum/sepolia)

2. Transfer your ETH to <CopyableCode code="0x33f60714bbd74d62b66d79213c348614de51901c" />.
- This is the [`L1StandardBridge Contract`](https://eth-sepolia.blockscout.com/address/0x33f60714BbD74d62b66D79213C348614DE51901C).
- This contract will help you send your ETH from Sepolia to Ink Sepolia.
- Once the transaction is confirmed you will quickly receive Ink ETH in your wallet.
5 changes: 1 addition & 4 deletions src/pages/build/tools/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
"multisig": "Multisig",
"account-abstraction": "Account Abstraction",
"bridges": "Bridges",
"faucets": {
"title": "Faucets",
"href": "/quick-start/faucets"
},
"faucets": "Faucets",
"block-explorers": "Block Explorers",
"indexers": "Indexers",
"vrf": "VRF",
Expand Down
3 changes: 3 additions & 0 deletions src/pages/build/tools/faucets.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { FaucetsContentWrapper } from '@/components/FaucetsContentWrapper'

<FaucetsContentWrapper />
32 changes: 2 additions & 30 deletions src/pages/quick-start/faucets.mdx
Original file line number Diff line number Diff line change
@@ -1,31 +1,3 @@
import CopyableCode from '@/components/CopyableCode'
import { FaucetsContentWrapper } from '@/components/FaucetsContentWrapper'

## Faucets

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.

###### Optimism Superchain Faucet
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.
- https://console.optimism.io/faucet
###### QuickNode
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.
- https://faucet.quicknode.com/drip
###### Ink
Our in house faucet provides a quick and easy way to acquire testnet ETH.
- https://inkonchain.com/faucet

## Bridging funds to Ink Sepolia

If you need an alternative to the above faucets you can choose to bridge ETH onto Ink Sepolia.

1. Get sepolia ETH by using your wallet with one of the existing faucets on the Ethereum Sepolia network:

* [https://console.optimism.io/faucet](https://console.optimism.io/faucet)
* [https://www.alchemy.com/faucets/ethereum-sepolia](https://www.alchemy.com/faucets/ethereum-sepolia)
* [https://faucet.quicknode.com/ethereum/sepolia](https://faucet.quicknode.com/ethereum/sepolia)
* [https://cloud.google.com/application/web3/faucet/ethereum/sepolia](https://cloud.google.com/application/web3/faucet/ethereum/sepolia)

2. Transfer your ETH to <CopyableCode code="0x33f60714bbd74d62b66d79213c348614de51901c" />.
- This is the [`L1StandardBridge Contract`](https://eth-sepolia.blockscout.com/address/0x33f60714BbD74d62b66D79213C348614DE51901C).
- This contract will help you send your ETH from Sepolia to Ink Sepolia.
- Once the transaction is confirmed you will quickly receive Ink ETH in your wallet.
<FaucetsContentWrapper />

0 comments on commit 18248cd

Please sign in to comment.