Skip to content

Commit 2f63f9a

Browse files
MaryBeckyNORAVemp
andauthored
feat: add InitVerse Mainnet (#3259)
feat:Added InitVerse Mainnet Co-authored-by: caoyong <[email protected]>
1 parent a1e17d0 commit 2f63f9a

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.changeset/hungry-houses-fry.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"viem": patch
3+
---
4+
5+
Added InitVerse Mainnet.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { defineChain } from '../../utils/chain/defineChain.js'
2+
3+
export const initVerse = /*#__PURE__*/ defineChain({
4+
id: 7_233,
5+
name: 'InitVerse Mainnet',
6+
nativeCurrency: {
7+
decimals: 18,
8+
name: 'InitVerse',
9+
symbol: 'INI',
10+
},
11+
rpcUrls: {
12+
default: { http: ['https://rpc-mainnet.inichain.com'] },
13+
},
14+
blockExplorers: {
15+
default: {
16+
name: 'InitVerseScan',
17+
url: 'https://www.iniscan.com',
18+
apiUrl: 'https://explorer-api.inichain.com/api',
19+
},
20+
},
21+
contracts: {
22+
multicall3: {
23+
address: '0x83466BE48A067115FFF91f7b892Ed1726d032e47',
24+
blockCreated: 2318,
25+
},
26+
},
27+
})

src/chains/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ export { idchain } from './definitions/idchain.js'
217217
export { immutableZkEvm } from './definitions/immutableZkEvm.js'
218218
export { immutableZkEvmTestnet } from './definitions/immutableZkEvmTestnet.js'
219219
export { inEVM } from './definitions/inEVM.js'
220+
export { initVerse } from './definitions/initVerse.js'
220221
export { initVerseGenesis } from './definitions/initVerseGenesis.js'
221222
export { ink } from './definitions/ink.js'
222223
export { inkSepolia } from './definitions/inkSepolia.js'

0 commit comments

Comments
 (0)