You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
501 B
21 lines
501 B
// src/chains/definitions/example.ts
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const botanix = /*#__PURE__*/ defineChain({
|
|
id: 3637,
|
|
name: 'Botanix',
|
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.botanixlabs.com'],
|
|
webSocket: ['wss://rpc.botanixlabs.com/ws'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Botanixscan',
|
|
url: 'https://botanixscan.io',
|
|
},
|
|
},
|
|
})
|