- 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>
26 lines
582 B
TypeScript
26 lines
582 B
TypeScript
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const elysiumTestnet = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 1338,
|
|
name: 'Elysium Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'LAVA',
|
|
symbol: 'LAVA',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://elysium-test-rpc.vulcanforged.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Elysium testnet explorer',
|
|
url: 'https://elysium-explorer.vulcanforged.com',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|