- 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>
22 lines
517 B
TypeScript
22 lines
517 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const cronoszkEVMTestnet = /*#__PURE__*/ defineChain({
|
|
id: 282,
|
|
name: 'Cronos zkEVM Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Cronos zkEVM Test Coin',
|
|
symbol: 'zkTCRO',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://testnet.zkevm.cronos.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Cronos zkEVM Testnet Explorer',
|
|
url: 'https://explorer.zkevm.cronos.org/testnet',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|