Skip to content

Commit

Permalink
feat: add bool beta mainnet (#3056)
Browse files Browse the repository at this point in the history
* feat: add bool beta mainnet

* feat: add changeset

* Update cuddly-turtles-accept.md

---------

Co-authored-by: jxom <7336481+jxom@users.noreply.github.com>
  • Loading branch information
stonega and jxom authored Nov 25, 2024
1 parent a39c279 commit dffc561
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-turtles-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"viem": patch
---

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

export const boolBetaMainnet = /*#__PURE__*/ defineChain({
id: 11100,
name: 'Bool Beta Mainnet',
nativeCurrency: {
decimals: 18,
name: 'BOL',
symbol: 'BOL',
},
rpcUrls: {
default: { http: ['https://beta-rpc-node-http.bool.network'] },
},
blockExplorers: {
default: {
name: 'BoolScan',
url: 'https://beta-mainnet.boolscan.com/',
},
},
testnet: false
})
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export { bob } from './definitions/bob.js'
export { boba } from './definitions/boba.js'
export { bobaSepolia } from './definitions/bobaSepolia.js'
export { bobSepolia } from './definitions/bobSepolia.js'
export { boolBetaMainnet } from './definitions/boolBetaMainnet.js'
export { botanixTestnet } from './definitions/botanixTestnet.js'
export { bounceBit } from './definitions/bounceBit.js'
export { bounceBitTestnet } from './definitions/bounceBitTestnet.js'
Expand Down

0 comments on commit dffc561

Please sign in to comment.