- 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>
27 lines
570 B
TypeScript
27 lines
570 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const nexilix = /*#__PURE__*/ defineChain({
|
|
id: 240,
|
|
name: 'Nexilix Smart Chain',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Nexilix',
|
|
symbol: 'NEXILIX',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://rpcurl.pos.nexilix.com'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'NexilixScan',
|
|
url: 'https://scan.nexilix.com',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0x58381c8e2BF9d0C2C4259cA14BdA9Afe02831244',
|
|
blockCreated: 74448,
|
|
},
|
|
},
|
|
})
|