Skip to content

Commit

Permalink
➕ Add Ink/Morph 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 12, 2025
1 parent ad7ca93 commit bf1f2b1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ The current available networks are:
- `storyTestnet`
- `sonicTestnet`
- `flowTestnet`
- `inkTestnet`
- `morphTestnet`
- **EVM-Based Production Networks:**
- `ethMain`
- `bscMain`
Expand Down Expand Up @@ -301,6 +303,8 @@ The current available networks are:
- `superseedMain`
- `sonicMain`
- `flowMain`
- `inkMain`
- `morphMain`

> [!IMPORTANT]
> Note that you must ensure that your deployment account has sufficient funds on **all** target networks.
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions src/utils/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ export const networksInfo = {
url: "https://evm-testnet.flowscan.io",
chainId: 545,
},
inkTestnet: {
url: "https://explorer-sepolia.inkonchain.com",
chainId: 763373,
},
morphTestnet: {
url: "https://explorer-holesky.morphl2.io",
chainId: 2810,
},
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 @@ -224,6 +232,14 @@ export const networksInfo = {
url: "https://evm.flowscan.io",
chainId: 747,
},
inkMain: {
url: "https://explorer.inkonchain.com",
chainId: 57073,
},
morphMain: {
url: "https://explorer.morphl2.io",
chainId: 2818,
},
} as const;

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

0 comments on commit bf1f2b1

Please sign in to comment.