Skip to content

Commit

Permalink
Added arbitrum-goerli to Networks and AlchemyProvider (#3246).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Aug 10, 2022
1 parent 7ce41cd commit e72d13e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/networks/src.ts/index.ts
Expand Up @@ -204,6 +204,7 @@ const networks: { [name: string]: Network } = {

arbitrum: { chainId: 42161, name: "arbitrum" },
"arbitrum-rinkeby": { chainId: 421611, name: "arbitrum-rinkeby" },
"arbitrum-goerli": { chainId: 421613, name: "arbitrum-goerli" },

bnb: { chainId: 56, name: "bnb" },
bnbt: { chainId: 97, name: "bnbt" },
Expand Down
3 changes: 3 additions & 0 deletions packages/providers/src.ts/alchemy-provider.ts
Expand Up @@ -82,6 +82,9 @@ export class AlchemyProvider extends UrlJsonRpcProvider {
case "arbitrum-rinkeby":
host = "arb-rinkeby.g.alchemy.com/v2/";
break;
case "arbitrum-goerli":
host = "arb-goerli.g.alchemy.com/v2/";
break;
case "optimism":
host = "opt-mainnet.g.alchemy.com/v2/";
break;
Expand Down

0 comments on commit e72d13e

Please sign in to comment.