Skip to content

Commit

Permalink
➕ Add Hemi Test and Main Networks
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Jan 31, 2025
1 parent 0fc0494 commit fa24d67
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ The current available networks are:
- `etherlinkTestnet`
- `soneiumTestnet`
- `swellTestnet`
- `hemiTestnet`
- **EVM-Based Production Networks:**
- `ethMain`
- `bscMain`
Expand Down Expand Up @@ -313,6 +314,7 @@ The current available networks are:
- `etherlinkMain`
- `soneiumMain`
- `swellMain`
- `hemiMain`

> [!IMPORTANT]
> Note that you must ensure that your deployment account has sufficient funds on **all** target networks.
Expand Down
8 changes: 8 additions & 0 deletions src/utils/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ export const networksInfo = {
url: "https://swell-testnet-explorer.alt.technology",
chainId: 1924,
},
hemiTestnet: {
url: "https://testnet.explorer.hemi.xyz",
chainId: 743111,
},
ethMain: { url: "https://etherscan.io", chainId: 1 },
bscMain: { url: "https://bscscan.com", chainId: 56 },
optimismMain: { url: "https://optimistic.etherscan.io", chainId: 10 },
Expand Down Expand Up @@ -272,6 +276,10 @@ export const networksInfo = {
url: "https://explorer.swellnetwork.io",
chainId: 1923,
},
hemiMain: {
url: "https://explorer.hemi.xyz",
chainId: 43111,
},
} as const;

// Define a type `SupportedNetwork` that represents the union of all possible network names
Expand Down

0 comments on commit fa24d67

Please sign in to comment.