From 073a0ec0851c7da00d527b22050b895f5f1bc167 Mon Sep 17 00:00:00 2001 From: andytudhope <13001517+andytudhope@users.noreply.github.com> Date: Fri, 27 Oct 2023 08:50:52 +0200 Subject: [PATCH] Add faucet + Chris feedback --- docs/how-to/create-contracts/deploy-custom.mdx | 8 +++++--- docs/how-to/send-transactions.mdx | 3 ++- docs/index.mdx | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/how-to/create-contracts/deploy-custom.mdx b/docs/how-to/create-contracts/deploy-custom.mdx index decdc32a..edad0ff2 100644 --- a/docs/how-to/create-contracts/deploy-custom.mdx +++ b/docs/how-to/create-contracts/deploy-custom.mdx @@ -171,17 +171,19 @@ And you should see the address of your custom contract printed in your terminal. ## 3. Deploy to Rigil -Follow the same steps as listed above, but point your deploy script at the Rigil RPC after getting some faucet funds. You can request faucet funds by putting your address in the **#suave-hackathon** slack channel. +Follow the same steps as listed above, but point your deploy script at the Rigil RPC after getting some faucet funds. + +Request [faucet funds here](https://faucet.rigil.suave.flashbots.net). `deploy.go` should work as is, just adapt this block: ```go var ( - // The address of the flashbots MEVM on Rigil - exNodeEthAddr = common.HexToAddress("0626a5c68af88e43613f7f7cf5879d60f50033b3") // Target the Rigil RPC exNodeNetAddr = "https://rpc.rigil.suave.flashbots.net" // Insert a private key you own with some SUAVE ETH fundedAccount = newPrivKeyFromHex("") + // The public address of a Kettle on Rigil + exNodeEthAddr = common.HexToAddress("0626a5c68af88e43613f7f7cf5879d60f50033b3") ) ``` \ No newline at end of file diff --git a/docs/how-to/send-transactions.mdx b/docs/how-to/send-transactions.mdx index 91d7ea21..33a248cf 100644 --- a/docs/how-to/send-transactions.mdx +++ b/docs/how-to/send-transactions.mdx @@ -231,7 +231,7 @@ If you're able to generate the necessary ABIs and bytecode, you should be able t You can also adapt any of this code to use the Rigil Testnet RPC, rather than your local development environment. -1. Request faucet funds in the **#suave-hackathon** slack channel by posting your address +1. Request [faucet funds here](https://faucet.rigil.suave.flashbots.net) 2. Change this code: ```go @@ -250,4 +250,5 @@ The exact details for the Rigil Testnet are: - **Network ID**: `16813125` - **Chain ID**: `16813125` - **RPC Endpoint**: `https://rpc.rigil.suave.flashbots.net` +- **Faucet**: https://faucet.rigil.suave.flashbots.net - **Explorer**: https://explorer.rigil.suave.flashbots.net \ No newline at end of file diff --git a/docs/index.mdx b/docs/index.mdx index 2322b6ce..f14a6185 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -10,7 +10,7 @@ keywords: - mechanisms --- -# Start Hacking on SUAVE +# Start Building on SUAVE Welcome to our first internal SUAVE hackathon. Let's start building better mechanisms.