Skip to content

Commit

Permalink
Added Base network to AlchemyProvider (ethers-io#4384).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo authored and Woodpile37 committed Jan 14, 2024
1 parent 4abb5f6 commit 51f6cb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src.ts/providers/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,10 @@ function injectCommonNetworks(): void {
});
registerEth("arbitrum-goerli", 421613, { });

registerEth("base", 8453, { ensNetwork: 1 });
registerEth("base-goerli", 84531, { });
registerEth("base-sepolia", 84532, { });

registerEth("bnb", 56, { ensNetwork: 1 });
registerEth("bnbt", 97, { });

Expand Down
4 changes: 4 additions & 0 deletions src.ts/providers/provider-alchemy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ function getHost(name: string): string {
return "arb-mainnet.g.alchemy.com";
case "arbitrum-goerli":
return "arb-goerli.g.alchemy.com";
case "base":
return "base-mainnet.g.alchemy.com";
case "base-goerli":
return "base-goerli.g.alchemy.com";
case "matic":
return "polygon-mainnet.g.alchemy.com";
case "matic-mumbai":
Expand Down

0 comments on commit 51f6cb7

Please sign in to comment.