- 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>
19 lines
508 B
TypeScript
19 lines
508 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
/** @deprecated Use `loadAlphanet` instead. */
|
|
export const weaveVMAlphanet = /*#__PURE__*/ defineChain({
|
|
id: 9496,
|
|
name: 'WeaveVM Alphanet',
|
|
nativeCurrency: { name: 'Testnet WeaveVM', symbol: 'tWVM', decimals: 18 },
|
|
rpcUrls: {
|
|
default: { http: ['https://testnet-rpc.wvm.dev'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'WeaveVM Alphanet Explorer',
|
|
url: 'https://explorer.wvm.dev',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|