Skip to content

Commit

Permalink
feat: add InitVerseGenesis Test Chain (#3134)
Browse files Browse the repository at this point in the history
  • Loading branch information
NORAVemp authored Dec 17, 2024
1 parent aca3e1d commit 6991900
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-books-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"viem": patch
---

Added InitVerseGenesis Test Chain
28 changes: 28 additions & 0 deletions src/chains/definitions/initVerseGenesis.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { defineChain } from '../../utils/chain/defineChain.js'

export const initVerseGenesis = /*#__PURE__*/ defineChain({
id: 7234,
name: 'InitVerse Genesis Chain Testnet',
nativeCurrency: {
decimals: 18,
name: 'InitVerse',
symbol: 'INI',
},
rpcUrls: {
default: { http: ['http://rpc-testnet.inichain.com'] },
},
blockExplorers: {
default: {
name: 'InitVerseGenesisScan',
url: 'https://genesis-testnet.iniscan.com',
apiUrl: 'https://explorer-testnet-api.inichain.com/api',
},
},
contracts: {
multicall3: {
address: '0x0cF32CBDd6c437331EA4f85ed2d881A5379B5a6F',
blockCreated: 16361,
},
},
testnet: true,
})
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,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 { initVerseGenesis } from './definitions/initVerseGenesis.js'
export { inkSepolia } from './definitions/inkSepolia.js'
export { iota } from './definitions/iota.js'
export { iotaTestnet } from './definitions/iotaTestnet.js'
Expand Down

0 comments on commit 6991900

Please sign in to comment.