- 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>
25 lines
488 B
TypeScript
25 lines
488 B
TypeScript
import { defineChain } from '../utils.js'
|
|
|
|
export const dymension = /*#__PURE__*/ defineChain({
|
|
id: 1100,
|
|
name: 'Dymension',
|
|
nativeCurrency: {
|
|
name: 'DYM',
|
|
symbol: 'DYM',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://dymension-evm-rpc.publicnode.com'],
|
|
webSocket: ['wss://dymension-evm-rpc.publicnode.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Dym FYI',
|
|
url: 'https://dym.fyi',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|