- 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>
24 lines
454 B
TypeScript
24 lines
454 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const xpla = /*#__PURE__*/ defineChain({
|
|
id: 37,
|
|
name: 'CONX Chain',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'XPLA',
|
|
symbol: 'XPLA',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://dimension-evm-rpc.xpla.dev'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'CONX Explorer',
|
|
url: 'https://explorer.conx.xyz',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|