- 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>
23 lines
492 B
TypeScript
23 lines
492 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const qTestnet = /*#__PURE__*/ defineChain({
|
|
id: 35443,
|
|
name: 'Q Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Q',
|
|
symbol: 'Q',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc.qtestnet.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Q Testnet Explorer',
|
|
url: 'https://explorer.qtestnet.org',
|
|
apiUrl: 'https://explorer.qtestnet.org/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|