- 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>
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
const sourceId = 11155111 // sepolia
|
|
|
|
export const superseedSepolia = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 53302,
|
|
name: 'Superseed Sepolia',
|
|
nativeCurrency: {
|
|
name: 'Ether',
|
|
symbol: 'ETH',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://sepolia.superseed.xyz'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Superseed Sepolia Explorer',
|
|
url: 'https://sepolia-explorer.superseed.xyz',
|
|
apiUrl: 'https://sepolia-explorer.superseed.xyz/api/v2',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0x7A0db8C51432d2C3eb4e8f360a2EeB26FF2809fB',
|
|
blockCreated: 5523438,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0x2B227A603fAAdB3De0ED050b63ADD232B5f2c28C',
|
|
blockCreated: 5523442,
|
|
},
|
|
},
|
|
},
|
|
testnet: true,
|
|
sourceId,
|
|
})
|