- 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>
17 lines
444 B
TypeScript
17 lines
444 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
import { chainConfig } from '../../zksync/chainConfig.js'
|
|
|
|
export const zksyncLocalNode = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 270,
|
|
name: 'ZKsync CLI Local Node',
|
|
network: 'zksync-cli-local-node',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['http://localhost:3050'],
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|