- 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>
21 lines
562 B
TypeScript
21 lines
562 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const dodochainTestnet = /*#__PURE__*/ defineChain({
|
|
id: 53457,
|
|
name: 'DODOchain Testnet',
|
|
nativeCurrency: { decimals: 18, name: 'DODO', symbol: 'DODO' },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://dodochain-testnet.alt.technology'],
|
|
webSocket: ['wss://dodochain-testnet.alt.technology/ws'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'DODOchain Testnet (Sepolia) Explorer',
|
|
url: 'https://testnet-scan.dodochain.com',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|