- 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>
22 lines
557 B
TypeScript
22 lines
557 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const bitkubTestnet = /*#__PURE__*/ defineChain({
|
|
id: 25925,
|
|
name: 'Bitkub Testnet',
|
|
network: 'Bitkub Testnet',
|
|
nativeCurrency: { name: 'Bitkub Test', symbol: 'tKUB', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc-testnet.bitkubchain.io'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Bitkub Chain Testnet Explorer',
|
|
url: 'https://testnet.bkcscan.com',
|
|
apiUrl: 'https://testnet.bkcscan.com/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|