- 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>
29 lines
633 B
TypeScript
29 lines
633 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const xoneTestnet = /*#__PURE__*/ defineChain({
|
|
id: 33772211,
|
|
name: 'Xone Chain Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'XOC',
|
|
symbol: 'XOC',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://rpc-testnet.xone.org',
|
|
'https://rpc-testnet.xone.plus',
|
|
'https://rpc-testnet.knight.center',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Xone Testnet Explorer',
|
|
url: 'https://testnet.xonescan.com',
|
|
apiUrl: 'http://api.testnet.xonescan.com/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|