Skip to content

Commit

Permalink
feat: add InitVerse Mainnet (#3259)
Browse files Browse the repository at this point in the history
feat:Added InitVerse Mainnet

Co-authored-by: caoyong <[email protected]>
  • Loading branch information
MaryBecky and NORAVemp authored Jan 23, 2025
1 parent a1e17d0 commit 2f63f9a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/hungry-houses-fry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"viem": patch
---

Added InitVerse Mainnet.
27 changes: 27 additions & 0 deletions src/chains/definitions/initVerse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { defineChain } from '../../utils/chain/defineChain.js'

export const initVerse = /*#__PURE__*/ defineChain({
id: 7_233,
name: 'InitVerse Mainnet',
nativeCurrency: {
decimals: 18,
name: 'InitVerse',
symbol: 'INI',
},
rpcUrls: {
default: { http: ['https://rpc-mainnet.inichain.com'] },
},
blockExplorers: {
default: {
name: 'InitVerseScan',
url: 'https://www.iniscan.com',
apiUrl: 'https://explorer-api.inichain.com/api',
},
},
contracts: {
multicall3: {
address: '0x83466BE48A067115FFF91f7b892Ed1726d032e47',
blockCreated: 2318,
},
},
})
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ export { idchain } from './definitions/idchain.js'
export { immutableZkEvm } from './definitions/immutableZkEvm.js'
export { immutableZkEvmTestnet } from './definitions/immutableZkEvmTestnet.js'
export { inEVM } from './definitions/inEVM.js'
export { initVerse } from './definitions/initVerse.js'
export { initVerseGenesis } from './definitions/initVerseGenesis.js'
export { ink } from './definitions/ink.js'
export { inkSepolia } from './definitions/inkSepolia.js'
Expand Down

0 comments on commit 2f63f9a

Please sign in to comment.