Skip to content

Commit

Permalink
feat: add donatuz chain (#3296)
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-jdj authored Feb 3, 2025
1 parent 06f3dee commit 41aab42
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/chilly-radios-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"viem": patch
---

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

export const donatuz = /*#__PURE__*/ defineChain({
id: 42_026,
name: 'Donatuz',
nativeCurrency: {
decimals: 18,
name: 'Ether',
symbol: 'ETH',
},
rpcUrls: {
default: { http: ['ttps://rpc.donatuz.com'] },
},
blockExplorers: {
default: {
name: 'Donatuz Explorer',
url: 'https://explorer.donatuz.com',
},
},
contracts: {
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
blockCreated: 0,
},
},
})
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export { diode } from './definitions/diode.js'
export { disChain } from './definitions/disChain.js'
export { dodochainTestnet } from './definitions/dodochainTestnet.js'
export { dogechain } from './definitions/dogechain.js'
export { donatuz } from './definitions/donatuz.js'
export { dosChain } from './definitions/dosChain.js'
export { dosChainTestnet } from './definitions/dosChainTestnet.js'
export { dreyerxMainnet } from './definitions/dreyerxMainnet.js'
Expand Down

0 comments on commit 41aab42

Please sign in to comment.