- 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
539 B
TypeScript
22 lines
539 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const l3x = /*#__PURE__*/ defineChain({
|
|
id: 12324,
|
|
name: 'L3X Protocol',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc-mainnet.l3x.com'],
|
|
webSocket: ['wss://rpc-mainnet.l3x.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'L3X Mainnet Explorer',
|
|
url: 'https://explorer.l3x.com',
|
|
apiUrl: 'https://explorer.l3x.com/api/v2',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|