Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ SEI_RPC_URL=https://evm-rpc.sei-apis.com
INK_RPC_URL=https://rpc-gel.inkonchain.com
SONIC_RPC_URL=https://rpc.soniclabs.com
MONAD_RPC_URL=https://rpc.monad.xyz
RONIN_RPC_URL=https://api.roninchain.com/rpc

# Testnets
SEPOLIA_RPC_URL=https://sepolia.infura.io/v3/${RPC_API_KEY}
Expand Down
1 change: 1 addition & 0 deletions documents/Deployments.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ bytes32 salt = bytes32(abi.encodePacked("GATOR"));
- Sei
- Sonic
- Monad
- Ronin

### Testnets

Expand Down
2 changes: 2 additions & 0 deletions script/verification/verify-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ CHAIN_IDS=(
146 # sonic
14601 # sonic-testnet
143 # monad
2020 # ronin
)

##########################################
Expand Down Expand Up @@ -83,6 +84,7 @@ get_chain_config() {
146) config=("$ETHERSCAN_API_KEY" "etherscan" "$SONIC_RPC_URL" "https://api.etherscan.io/v2/api?chainid=146") ;; # sonic
14601) config=("$ETHERSCAN_API_KEY" "etherscan" "$SONIC_TESTNET_RPC_URL" "https://api.etherscan.io/v2/api?chainid=14601") ;; # sonic-testnet
143) config=("key" "sourcify" "$MONAD_RPC_URL" "https://sourcify-api-monad.blockvision.org/") ;; # monad
2020) config=("key" "sourcify" "$RONIN_RPC_URL" "https://sourcify.dev/server/") ;; # ronin
*)
echo "Unknown chain ID: $chain_id" >&2
return 1
Expand Down