- 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
532 B
TypeScript
22 lines
532 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const gatechain = /*#__PURE__*/ defineChain({
|
|
id: 86,
|
|
name: 'GateChain Mainnet',
|
|
nativeCurrency: { name: 'GateChainToken', symbol: 'GT', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://evm.nodeinfo.cc'],
|
|
webSocket: ['wss://evm-ws.gatenode.cc'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Gate Scan',
|
|
url: 'https://www.gatescan.org',
|
|
apiUrl: 'https://gatescan.org/api',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|