- 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>
21 lines
449 B
TypeScript
21 lines
449 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const zilliqa = /*#__PURE__*/ defineChain({
|
|
id: 32769,
|
|
name: 'Zilliqa',
|
|
network: 'zilliqa',
|
|
nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://api.zilliqa.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Ethernal',
|
|
url: 'https://evmx.zilliqa.com',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|