Skip to content

Commit

Permalink
feat: add new chains to StdChains (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr authored Aug 1, 2023
1 parent 75f1746 commit f18e8aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/StdChains.sol
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ abstract contract StdChains {
ChainData("BNB Smart Chain Testnet", 97, "https://rpc.ankr.com/bsc_testnet_chapel")
);
setChainWithDefaultRpcUrl("gnosis_chain", ChainData("Gnosis Chain", 100, "https://rpc.gnosischain.com"));
setChainWithDefaultRpcUrl("moonbeam", ChainData("Moonbeam", 1284, "https://rpc.api.moonbeam.network"));
setChainWithDefaultRpcUrl(
"moonriver", ChainData("Moonriver", 1285, "https://rpc.api.moonriver.moonbeam.network")
);
setChainWithDefaultRpcUrl("moonbase", ChainData("Moonbase", 1287, "https://rpc.testnet.moonbeam.network"));
}

// set chain info, with priority to chainAlias' rpc url in foundry.toml
Expand Down

0 comments on commit f18e8aa

Please sign in to comment.