-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from inkonchain/feat/update-docs
Feat/update docs
- Loading branch information
Showing
68 changed files
with
844 additions
and
697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { Callout } from "nextra/components"; | ||
|
||
export const TestnetDisclaimer = () => { | ||
return ( | ||
<Callout type="info" emoji="ℹ️"> | ||
This guide currently references Ink Sepolia (testnet) however it can be | ||
used for Ink mainnet as well. Please be sure to change the necessary | ||
parameters based on your network of choice. | ||
</Callout> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,19 @@ | ||
## Faucets | ||
# 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. | ||
Get sepolia ETH on Ink from these faucets below! Alternatively, you can [bridge](https://inkonchain.com/bridge) testnet funds to Ink. | ||
|
||
## [Ink](https://inkonchain.com/faucet) | ||
|
||
###### Ink | ||
Our in house faucet provides a quick and easy way to acquire testnet ETH. | ||
- https://inkonchain.com/faucet | ||
###### Optimism Superchain Faucet | ||
The Superchain Faucet provides testnet ETH for Ink and all other OP chains. Sign in to claim 0.10 test ETH on 1 network every 24 hours or verify your onchain identity for more tokens. | ||
- https://console.optimism.io/faucet | ||
###### QuickNode | ||
Use QuickNode Faucet to claim Ink Sepolia for testnet ETH for free - one drip per network every 12 hours. | ||
- https://faucet.quicknode.com/drip | ||
###### Gelato | ||
Gelato's Faucet uses Cloudflare authentication and drops up to 0.3 Ink Sepolia ETH every 12 hours. | ||
- https://faucet-gel-sepolia.inkonchain.com | ||
|
||
## Bridging funds to Ink Sepolia | ||
## [Optimism Superchain Faucet](https://console.optimism.io/faucet) | ||
|
||
If you need an alternative to the above faucets you can choose to bridge ETH onto Ink Sepolia. | ||
The Superchain Faucet provides testnet ETH for Ink and all other OP chains. Sign in to claim 0.10 test ETH on 1 network every 24 hours or verify your onchain identity for more tokens. | ||
|
||
## [QuickNode](https://faucet.quicknode.com/drip) | ||
|
||
1. Get sepolia ETH by using your wallet with one of the existing faucets on the Ethereum Sepolia network: | ||
Use QuickNode Faucet to claim Ink Sepolia for testnet ETH for free - one drip per network every 12 hours. | ||
|
||
* [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) | ||
## [Gelato](https://faucet-gel-sepolia.inkonchain.com) | ||
|
||
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. | ||
Gelato's Faucet uses Cloudflare authentication and drops up to 0.3 Ink Sepolia ETH every 12 hours. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{ | ||
"getting-started": "Getting Started", | ||
"onchain-clients": "Onchain Clients", | ||
"oracles": "Oracles", | ||
"run-an-ink-node": "Running Ink Nodes", | ||
"fees": "Fees", | ||
"run-an-ink-node": { | ||
"title": "Running Ink Nodes", | ||
"href": "https://github.com/inkonchain/node", | ||
"newWindow": true | ||
}, | ||
"transaction-fees": "Transaction Fees", | ||
"ink-kit": "Ink Kit", | ||
"tutorials": "Tutorials", | ||
"tools": "Tools", | ||
"useful-info": "Useful Information" | ||
"tutorials": "Tutorials" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Callout, Checkbox } from "nextra/components"; | ||
|
||
# What do I Need to Start Developing on Ink? | ||
|
||
To start developing on Ink, you'll need: | ||
|
||
- [ ] An IDE (integrated developer environment) like [Visual Studio Code](https://code.visualstudio.com/), [Cursor](https://cursor.sh/), or [Remix](https://remix.ethereum.org/) to write smart contracts in solidity. | ||
|
||
- [ ] A wallet that holds ETH such as [Kraken Wallet](https://www.kraken.com/wallet), [MetaMask](https://metamask.io/), or [Rainbow](https://rainbow.me/). | ||
|
||
- We suggest having at least 0.01 ETH for standard deployments on Ink. | ||
- You can request Ink Sepolia ETH using our [Faucets](/tools/faucets). | ||
|
||
- [ ] We recommend using a development framework like [Foundry](https://github.com/foundry-rs/foundry) or [Hardhat](https://hardhat.org/) | ||
|
||
- [Guide to deploy a contract using Foundry](/build/tutorials/deploying-a-smart-contract/foundry) | ||
- [Guide to deploy a contract using Hardhat](/build/tutorials/deploying-a-smart-contract/hardhat) | ||
- [Guide to deploy a contract using Remix](/build/tutorials/deploying-a-smart-contract/remix) | ||
|
||
<Callout type="info" emoji="ℹ️"> | ||
Try out InkGPT! Blaze through the docs and get deployed in no time with our | ||
new AI assistant. | ||
</Callout> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.