- 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>
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
const sourceId = 11_155_111 // sepolia
|
|
|
|
export const baseSepolia = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 84532,
|
|
network: 'base-sepolia',
|
|
name: 'Base Sepolia',
|
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://sepolia.base.org'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Basescan',
|
|
url: 'https://sepolia.basescan.org',
|
|
apiUrl: 'https://api-sepolia.basescan.org/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
disputeGameFactory: {
|
|
[sourceId]: {
|
|
address: '0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1',
|
|
},
|
|
},
|
|
l2OutputOracle: {
|
|
[sourceId]: {
|
|
address: '0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254',
|
|
},
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0x49f53e41452c74589e85ca1677426ba426459e85',
|
|
blockCreated: 4446677,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0xfd0Bf71F60660E2f608ed56e1659C450eB113120',
|
|
blockCreated: 4446677,
|
|
},
|
|
},
|
|
multicall3: {
|
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
|
blockCreated: 1059647,
|
|
},
|
|
},
|
|
testnet: true,
|
|
sourceId,
|
|
})
|
|
|
|
export const baseSepoliaPreconf = /*#__PURE__*/ defineChain({
|
|
...baseSepolia,
|
|
experimental_preconfirmationTime: 200,
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://sepolia-preconf.base.org'],
|
|
},
|
|
},
|
|
})
|