Skip to content
Open
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
2 changes: 1 addition & 1 deletion src.ts/providers/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ function injectCommonNetworks(): void {
registerEth("kovan", 42, { ensNetwork: 42 });
registerEth("sepolia", 11155111, { ensNetwork: 11155111 });
registerEth("holesky", 17000, { ensNetwork: 17000 });

registerEth("hoodi", 560048, { ensNetwork: 560048 });
registerEth("classic", 61, { });
registerEth("classicKotti", 6, { });

Expand Down
3 changes: 3 additions & 0 deletions src.ts/providers/provider-alchemy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* - Ethereum Mainnet (``mainnet``)
* - Goerli Testnet (``goerli``)
* - Sepolia Testnet (``sepolia``)
* - Hoodi Testnet (``hoodi``)
* - Arbitrum (``arbitrum``)
* - Arbitrum Goerli Testnet (``arbitrum-goerli``)
* - Arbitrum Sepolia Testnet (``arbitrum-sepolia``)
Expand Down Expand Up @@ -47,6 +48,8 @@ function getHost(name: string): string {
return "eth-goerli.g.alchemy.com";
case "sepolia":
return "eth-sepolia.g.alchemy.com";
case "hoodi":
return "eth-hoodi.g.alchemy.com";

case "arbitrum":
return "arb-mainnet.g.alchemy.com";
Expand Down
3 changes: 3 additions & 0 deletions src.ts/providers/provider-ankr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* - Ethereum Mainnet (``mainnet``)
* - Goerli Testnet (``goerli``)
* - Sepolia Testnet (``sepolia``)
* - Hoodi Testnet (``hoodi``)
* - Arbitrum (``arbitrum``)
* - Base (``base``)
* - Base Goerlia Testnet (``base-goerli``)
Expand Down Expand Up @@ -45,6 +46,8 @@ function getHost(name: string): string {
return "rpc.ankr.com/eth_goerli";
case "sepolia":
return "rpc.ankr.com/eth_sepolia";
case "hoodi":
return "rpc.ankr.com/eth_hoodi";

case "arbitrum":
return "rpc.ankr.com/arbitrum";
Expand Down
3 changes: 3 additions & 0 deletions src.ts/providers/provider-blockscout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* - Ethereum Mainnet (``mainnet``)
* - Sepolia Testnet (``sepolia``)
* - Holesky Testnet (``holesky``)
* - Hoodi Testnet (``hoodi``)
* - Ethereum Classic (``classic``)
* - Arbitrum (``arbitrum``)
* - Base (``base``)
Expand Down Expand Up @@ -40,6 +41,8 @@ function getUrl(name: string): string {
return "https:/\/eth-sepolia.blockscout.com/api/eth-rpc";
case "holesky":
return "https:/\/eth-holesky.blockscout.com/api/eth-rpc";
case "hoodi":
return "https:/\/eth-hoodi.blockscout.com/api/eth-rpc";

case "classic":
return "https:/\/etc.blockscout.com/api/eth-rpc";
Expand Down
3 changes: 3 additions & 0 deletions src.ts/providers/provider-infura.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* - Ethereum Mainnet (``mainnet``)
* - Goerli Testnet (``goerli``)
* - Sepolia Testnet (``sepolia``)
* - Hoodi Testnet (``hoodi``)
* - Arbitrum (``arbitrum``)
* - Arbitrum Goerli Testnet (``arbitrum-goerli``)
* - Arbitrum Sepolia Testnet (``arbitrum-sepolia``)
Expand Down Expand Up @@ -51,6 +52,8 @@ function getHost(name: string): string {
return "goerli.infura.io";
case "sepolia":
return "sepolia.infura.io";
case "hoodi":
return "hoodi.infura.io";

case "arbitrum":
return "arbitrum-mainnet.infura.io";
Expand Down
3 changes: 3 additions & 0 deletions src.ts/providers/provider-quicknode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* - Goerli Testnet (``goerli``)
* - Sepolia Testnet (``sepolia``)
* - Holesky Testnet (``holesky``)
* - Hoodi Testnet (``hoodi``)
* - Arbitrum (``arbitrum``)
* - Arbitrum Goerli Testnet (``arbitrum-goerli``)
* - Arbitrum Sepolia Testnet (``arbitrum-sepolia``)
Expand Down Expand Up @@ -50,6 +51,8 @@ function getHost(name: string): string {
return "ethers.ethereum-sepolia.quiknode.pro";
case "holesky":
return "ethers.ethereum-holesky.quiknode.pro";
case "hoodi":
return "ethers.ethereum-hoodi.quiknode.pro";

case "arbitrum":
return "ethers.arbitrum-mainnet.quiknode.pro";
Expand Down