- 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
463 B
TypeScript
24 lines
463 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const xphereMainnet = /*#__PURE__*/ defineChain({
|
|
id: 20250217,
|
|
name: 'Xphere Mainnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'XP',
|
|
symbol: 'XP',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://en-bkk.x-phere.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Xphere Tamsa Explorer',
|
|
url: 'https://xp.tamsa.io',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|