- 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
499 B
TypeScript
24 lines
499 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const tenet = /*#__PURE__*/ defineChain({
|
|
id: 1559,
|
|
name: 'Tenet',
|
|
network: 'tenet-mainnet',
|
|
nativeCurrency: {
|
|
name: 'TENET',
|
|
symbol: 'TENET',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc.tenet.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'TenetScan Mainnet',
|
|
url: 'https://tenetscan.io',
|
|
apiUrl: 'https://tenetscan.io/api',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|