- 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
426 B
TypeScript
21 lines
426 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const classic = /*#__PURE__*/ defineChain({
|
|
id: 61,
|
|
name: 'Ethereum Classic',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'ETC',
|
|
symbol: 'ETC',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://etc.rivet.link'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://blockscout.com/etc/mainnet',
|
|
},
|
|
},
|
|
})
|