Skip to content

Commit

Permalink
update public chain docs
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Shorsher <alex.shorsher@kaleido.io>
  • Loading branch information
shorsher committed Sep 7, 2022
1 parent 54d7a14 commit 30590f9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/chains/arbitrum.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To create a local FireFly development stack and connect it to the Arbitrum testn
- Connect to an ethereum network
- Use the `evmconnect` blockchain connector
- Use an remote RPC node. This will create a signer locally, so that our signing key never leaves the development machine.
- Set the remote RPC node URL to `https://goerli-rollup.arbitrum.io/rpc` (for a full list of testnet RPC node urls visit https://developer.offchainlabs.com/docs/Public_Chains)
- See the Arbitrum [docs](https://developer.offchainlabs.com/node-running/node-providers) and select an HTTPS RPC endpoint.
- Set the chain ID to `421613` (the correct ID for the Binance Smart Chain testnet)
- Merge the custom config created above with the generated `evmconnect` config file

Expand All @@ -59,7 +59,7 @@ ff init arbitrum 1 \
-b ethereum \
-c evmconnect \
-n remote-rpc \
--remote-node-url https://goerli-rollup.arbitrum.io/rpc \
--remote-node-url <selected RPC endpoint> \
--chain-id 421613 \
--connector-config ~/Desktop/evmconnect.yml
```
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/chains/avalanche.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ff init avalanche 1 \
-b ethereum \
-c evmconnect \
-n remote-rpc \
--remote-node-url https://api.avax-test.network/ext/bc/C/rpc \
--remote-node-url <selected RPC endpoint> \
--chain-id 43113 \
--connector-config ~/Desktop/evmconnect.yml
```
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/chains/binance_smart_chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To create a local FireFly development stack and connect it to the Binance Smart
- Connect to an ethereum network
- Use the `evmconnect` blockchain connector
- Use an remote RPC node. This will create a signer locally, so that our signing key never leaves the development machine.
- Set the remote RPC node URL to `https://data-seed-prebsc-1-s1.binance.org:8545` (for a full list of testnet RPC node urls visit [https://docs.bscscan.com/misc-tools-and-utilities/public-rpc-nodes](https://docs.bscscan.com/misc-tools-and-utilities/public-rpc-nodes))
- See the Binance BscScan [docs](https://docs.bscscan.com/misc-tools-and-utilities/public-rpc-nodes) and select an HTTPS RPC endpoint.
- Set the chain ID to `97` (the correct ID for the Binance Smart Chain testnet)
- Merge the custom config created above with the generated `evmconnect` config file

Expand All @@ -59,7 +59,7 @@ ff init bsc 1 \
-b ethereum \
-c evmconnect \
-n remote-rpc \
--remote-node-url https://data-seed-prebsc-1-s1.binance.org:8545 \
--remote-node-url <selected RPC endpoint> \
--chain-id 97 \
--connector-config ~/Desktop/evmconnect.yml
```
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/chains/moonbeam.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ff init moonbeam 1 \
-b ethereum \
-c evmconnect \
-n remote-rpc \
--remote-node-url <selected rpc endpoint> \
--remote-node-url <selected RPC endpoint> \
--chain-id 1287 \
--connector-config ~/Desktop/evmconnect.yml
```
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/chains/optimism.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To create a local FireFly development stack and connect it to the Optimism testn
- Connect to an ethereum network
- Use the `evmconnect` blockchain connector
- Use an remote RPC node. This will create a signer locally, so that our signing key never leaves the development machine.
- Set the remote RPC node URL to `https://goerli.optimism.io`
- See the optimism [docs](https://community.optimism.io/docs/useful-tools/networks/) and select an HTTPS RPC endpoint.
- Set the chain ID to `420` (the correct ID for the Optimism testnet)
- Merge the custom config created above with the generated `evmconnect` config file

Expand All @@ -59,7 +59,7 @@ ff init optimism 1 \
-b ethereum \
-c evmconnect \
-n remote-rpc \
--remote-node-url https://goerli.optimism.io \
--remote-node-url <selected RPC endpoint> \
--chain-id 420 \
--connector-config ~/Desktop/evmconnect.yml
```
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/chains/polygon_testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To create a local FireFly development stack and connect it to the Polygon Mumbai
- Connect to an ethereum network
- Use the `evmconnect` blockchain connector
- Use an remote RPC node. This will create a signer locally, so that our signing key never leaves the development machine.
- Set the remote RPC node URL to `https://rpc-mumbai.maticvigil.com`
- See the polygon [docs](https://docs.polygon.technology/docs/develop/network-details/network/) and select an HTTPS RPC endpoint.
- Set the chain ID to `80001` (the correct ID for the Polygon Mumbai testnet)
- Merge the custom config created above with the generated `evmconnect` config file

Expand All @@ -59,7 +59,7 @@ ff init polygon 1 \
-b ethereum \
-c evmconnect \
-n remote-rpc \
--remote-node-url https://rpc-mumbai.maticvigil.com \
--remote-node-url <selected RPC endpoint> \
--chain-id 80001 \
--connector-config ~/Desktop/evmconnect.yml
```
Expand Down

0 comments on commit 30590f9

Please sign in to comment.