diff --git a/README.md b/README.md index 66b52f5..ac6f522 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,8 @@ The current available networks are: - `storyTestnet` - `sonicTestnet` - `flowTestnet` + - `inkTestnet` + - `morphTestnet` - **EVM-Based Production Networks:** - `ethMain` - `bscMain` @@ -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. diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 06bdfee..a9d625a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1259,8 +1259,8 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} - readdirp@4.1.0: - resolution: {integrity: sha512-4+hHiVsxlm4OVSNFpAIrOGyGeG9kNLGcLMqvSGL5Rj2NOYBDQiQ6lJRViwAZ80i8SNbY8kCpdjgJy5PNALARew==} + readdirp@4.1.1: + resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==} engines: {node: '>= 14.18.0'} require-directory@2.1.1: @@ -2265,7 +2265,7 @@ snapshots: chokidar@4.0.3: dependencies: - readdirp: 4.1.0 + readdirp: 4.1.1 ci-info@2.0.0: {} @@ -3011,7 +3011,7 @@ snapshots: dependencies: picomatch: 2.3.1 - readdirp@4.1.0: {} + readdirp@4.1.1: {} require-directory@2.1.1: {} diff --git a/src/utils/networks.ts b/src/utils/networks.ts index 25a87cb..0fdc4b7 100644 --- a/src/utils/networks.ts +++ b/src/utils/networks.ts @@ -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 }, @@ -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