- 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>
22 lines
449 B
TypeScript
22 lines
449 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const telosTestnet = /*#__PURE__*/ defineChain({
|
|
id: 41,
|
|
name: 'Telos',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Telos',
|
|
symbol: 'TLOS',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc.testnet.telos.net'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Teloscan (testnet)',
|
|
url: 'https://testnet.teloscan.io/',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|