- 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>
26 lines
617 B
TypeScript
26 lines
617 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const confluxESpace = /*#__PURE__*/ defineChain({
|
|
id: 1_030,
|
|
name: 'Conflux eSpace',
|
|
nativeCurrency: { name: 'Conflux', symbol: 'CFX', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://evm.confluxrpc.com'],
|
|
webSocket: ['wss://evm.confluxrpc.com/ws'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'ConfluxScan',
|
|
url: 'https://evm.confluxscan.org',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xEFf0078910f638cd81996cc117bccD3eDf2B072F',
|
|
blockCreated: 68602935,
|
|
},
|
|
},
|
|
})
|