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.
30 lines
623 B
30 lines
623 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const bitlayer = /*#__PURE__*/ defineChain({
|
|
id: 200901,
|
|
name: 'Bitlayer Mainnet',
|
|
nativeCurrency: {
|
|
name: 'BTC',
|
|
symbol: 'BTC',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.bitlayer.org'],
|
|
webSocket: ['wss://ws.bitlayer.org'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'bitlayer mainnet scan',
|
|
url: 'https://www.btrscan.com',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0x5B256fE9e993902eCe49D138a5b1162cBb529474',
|
|
blockCreated: 2421963,
|
|
},
|
|
},
|
|
})
|