- 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>
23 lines
520 B
TypeScript
23 lines
520 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const vechain = /*#__PURE__*/ defineChain({
|
|
id: 100009,
|
|
name: 'Vechain',
|
|
nativeCurrency: { name: 'VeChain', symbol: 'VET', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://mainnet.vechain.org'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Vechain Explorer',
|
|
url: 'https://explore.vechain.org',
|
|
},
|
|
vechainStats: {
|
|
name: 'Vechain Stats',
|
|
url: 'https://vechainstats.com',
|
|
},
|
|
},
|
|
})
|