- 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>
64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
const sourceId = 1 // mainnet
|
|
|
|
export const base = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 8453,
|
|
name: 'Base',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://mainnet.base.org'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Basescan',
|
|
url: 'https://basescan.org',
|
|
apiUrl: 'https://api.basescan.org/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
disputeGameFactory: {
|
|
[sourceId]: {
|
|
address: '0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e',
|
|
},
|
|
},
|
|
l2OutputOracle: {
|
|
[sourceId]: {
|
|
address: '0x56315b90c40730925ec5485cf004d835058518A0',
|
|
},
|
|
},
|
|
multicall3: {
|
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
|
blockCreated: 5022,
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0x49048044D57e1C92A77f79988d21Fa8fAF74E97e',
|
|
blockCreated: 17482143,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0x3154Cf16ccdb4C6d922629664174b904d80F2C35',
|
|
blockCreated: 17482143,
|
|
},
|
|
},
|
|
},
|
|
sourceId,
|
|
})
|
|
|
|
export const basePreconf = /*#__PURE__*/ defineChain({
|
|
...base,
|
|
experimental_preconfirmationTime: 200,
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://mainnet-preconf.base.org'],
|
|
},
|
|
},
|
|
})
|