Skip to content

Commit

Permalink
feat: add rivalz network (#3178)
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-jdj authored Jan 2, 2025
1 parent 2361ef1 commit daad891
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/nice-lemons-poke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"viem": patch
---

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

export const rivalz = /*#__PURE__*/ defineChain({
id: 753,
name: 'Rivalz',
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
rpcUrls: {
default: {
http: ['https://rivalz.calderachain.xyz/http'],
},
},
blockExplorers: {
default: {
name: 'Rivalz Caldera Explorer',
url: 'https://rivalz.calderaexplorer.xyz',
},
},
testnet: false,
})
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ export { redbellyTestnet } from './definitions/redbellyTestnet.js'
export { redstone } from './definitions/redstone.js'
export { rei } from './definitions/rei.js'
export { reyaNetwork } from './definitions/reyaNetwork.js'
export { rivalz } from './definitions/rivalz.js'
export { rollux } from './definitions/rollux.js'
export { rolluxTestnet } from './definitions/rolluxTestnet.js'
export { ronin } from './definitions/ronin.js'
Expand Down

0 comments on commit daad891

Please sign in to comment.