- 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
701 B
TypeScript
28 lines
701 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const confluxESpaceTestnet = /*#__PURE__*/ defineChain({
|
|
id: 71,
|
|
name: 'Conflux eSpace Testnet',
|
|
network: 'cfx-espace-testnet',
|
|
testnet: true,
|
|
nativeCurrency: { name: 'Conflux', symbol: 'CFX', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://evmtestnet.confluxrpc.com'],
|
|
webSocket: ['wss://evmtestnet.confluxrpc.com/ws'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'ConfluxScan',
|
|
url: 'https://evmtestnet.confluxscan.org',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xEFf0078910f638cd81996cc117bccD3eDf2B072F',
|
|
blockCreated: 117499050,
|
|
},
|
|
},
|
|
})
|