- 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>
30 lines
651 B
TypeScript
30 lines
651 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const immutableZkEvm = /*#__PURE__*/ defineChain({
|
|
id: 13371,
|
|
name: 'Immutable zkEVM',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Immutable Coin',
|
|
symbol: 'IMX',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.immutable.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Immutable Explorer',
|
|
url: 'https://explorer.immutable.com',
|
|
apiUrl: 'https://explorer.immutable.com/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0x236bdA4589e44e6850f5aC6a74BfCa398a86c6c0',
|
|
blockCreated: 4335972,
|
|
},
|
|
},
|
|
})
|