- 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>
28 lines
620 B
TypeScript
28 lines
620 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const cronos = /*#__PURE__*/ defineChain({
|
|
id: 25,
|
|
name: 'Cronos Mainnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Cronos',
|
|
symbol: 'CRO',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://evm.cronos.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Cronos Explorer',
|
|
url: 'https://explorer.cronos.org',
|
|
apiUrl: 'https://explorer-api.cronos.org/mainnet/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
blockCreated: 1963112,
|
|
},
|
|
},
|
|
})
|