Skip to content

Commit

Permalink
Added Sepolia support (#3863).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Mar 7, 2023
1 parent 26a830e commit abeaa74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src.ts/providers/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ function injectCommonNetworks(): void {
registerEth("rinkeby", 4, { ensNetwork: 4 });
registerEth("goerli", 5, { ensNetwork: 5 });
registerEth("kovan", 42, { ensNetwork: 42 });
registerEth("sepolia", 11155111, { });

registerEth("classic", 61, { });
registerEth("classicKotti", 6, { });
Expand Down
2 changes: 2 additions & 0 deletions src.ts/providers/provider-alchemy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ function getHost(name: string): string {
return "eth-mainnet.alchemyapi.io";
case "goerli":
return "eth-goerli.g.alchemy.com";
case "sepolia":
return "eth-sepolia.g.alchemy.com";

case "arbitrum":
return "arb-mainnet.g.alchemy.com";
Expand Down

0 comments on commit abeaa74

Please sign in to comment.