- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
28 lines
590 B
TypeScript
28 lines
590 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const btrTestnet = /*#__PURE__*/ defineChain({
|
|
id: 200810,
|
|
name: 'Bitlayer Testnet',
|
|
nativeCurrency: {
|
|
name: 'Bitcoin',
|
|
symbol: 'BTC',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://testnet-rpc.bitlayer.org'],
|
|
webSocket: [
|
|
'wss://testnet-ws.bitlayer.org',
|
|
'wss://testnet-ws.bitlayer-rpc.com',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Bitlayer(BTR) Scan',
|
|
url: 'https://testnet.btrscan.com',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|