- 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
465 B
TypeScript
24 lines
465 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const tiktrixTestnet = /*#__PURE__*/ defineChain({
|
|
id: 62092,
|
|
name: 'TikTrix Testnet',
|
|
nativeCurrency: {
|
|
name: 'tTTX',
|
|
symbol: 'tTTX',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://tiktrix-rpc.xyz'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'TikTrix Testnet Explorer',
|
|
url: 'https://tiktrix.xyz',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|