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.
20 lines
467 B
20 lines
467 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const botanixTestnet = /*#__PURE__*/ defineChain({
|
|
id: 3636,
|
|
name: 'Botanix Testnet',
|
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://node.botanixlabs.dev'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Botanix Testnet Explorer',
|
|
url: 'https://testnet.botanixscan.io',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|