- 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>
27 lines
616 B
TypeScript
27 lines
616 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const cronoszkEVM = /*#__PURE__*/ defineChain({
|
|
id: 388,
|
|
name: 'Cronos zkEVM Mainnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Cronos zkEVM CRO',
|
|
symbol: 'zkCRO',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://mainnet.zkevm.cronos.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Cronos zkEVM (Mainnet) Chain Explorer',
|
|
url: 'https://explorer.zkevm.cronos.org',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0x06f4487d7c4a5983d2660db965cc6d2565e4cfaa',
|
|
blockCreated: 72,
|
|
},
|
|
},
|
|
})
|