- 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>
38 lines
939 B
TypeScript
38 lines
939 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const lycan = /*#__PURE__*/ defineChain({
|
|
id: 721,
|
|
name: 'Lycan',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Lycan',
|
|
symbol: 'LYC',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://rpc.lycanchain.com',
|
|
'https://us-east.lycanchain.com',
|
|
'https://us-west.lycanchain.com',
|
|
'https://eu-north.lycanchain.com',
|
|
'https://eu-west.lycanchain.com',
|
|
'https://asia-southeast.lycanchain.com',
|
|
],
|
|
webSocket: [
|
|
'wss://rpc.lycanchain.com',
|
|
'wss://us-east.lycanchain.com',
|
|
'wss://us-west.lycanchain.com',
|
|
'wss://eu-north.lycanchain.com',
|
|
'wss://eu-west.lycanchain.com',
|
|
'wss://asia-southeast.lycanchain.com',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Lycan Explorer',
|
|
url: 'https://explorer.lycanchain.com',
|
|
},
|
|
},
|
|
})
|