- 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>
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
const sourceId = 11_155_111 // sepolia
|
|
|
|
export const modeTestnet = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 919,
|
|
name: 'Mode Testnet',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://sepolia.mode.network'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://sepolia.explorer.mode.network',
|
|
apiUrl: 'https://sepolia.explorer.mode.network/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
l2OutputOracle: {
|
|
[sourceId]: {
|
|
address: '0x2634BD65ba27AB63811c74A63118ACb312701Bfa',
|
|
blockCreated: 3778393,
|
|
},
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0x320e1580effF37E008F1C92700d1eBa47c1B23fD',
|
|
blockCreated: 3778395,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0xbC5C679879B2965296756CD959C3C739769995E2',
|
|
blockCreated: 3778392,
|
|
},
|
|
},
|
|
multicall3: {
|
|
address: '0xBAba8373113Fb7a68f195deF18732e01aF8eDfCF',
|
|
blockCreated: 3019007,
|
|
},
|
|
},
|
|
testnet: true,
|
|
sourceId,
|
|
})
|