- 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>
18 lines
426 B
TypeScript
18 lines
426 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const wemix = /*#__PURE__*/ defineChain({
|
|
id: 1111,
|
|
name: 'WEMIX',
|
|
network: 'wemix-mainnet',
|
|
nativeCurrency: { name: 'WEMIX', symbol: 'WEMIX', decimals: 18 },
|
|
rpcUrls: {
|
|
default: { http: ['https://api.wemix.com'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'wemixExplorer',
|
|
url: 'https://explorer.wemix.com',
|
|
},
|
|
},
|
|
})
|