- 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>
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
const sourceId = 11_155_111 // sepolia
|
|
|
|
export const soneiumMinato = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 1946,
|
|
name: 'Soneium Minato Testnet',
|
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.minato.soneium.org'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://soneium-minato.blockscout.com',
|
|
apiUrl: 'https://soneium-minato.blockscout.com/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
disputeGameFactory: {
|
|
[sourceId]: {
|
|
address: '0xB3Ad2c38E6e0640d7ce6aA952AB3A60E81bf7a01',
|
|
},
|
|
},
|
|
l2OutputOracle: {
|
|
[sourceId]: {
|
|
address: '0x710e5286C746eC38beeB7538d0146f60D27be343',
|
|
},
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0x65ea1489741A5D72fFdD8e6485B216bBdcC15Af3',
|
|
blockCreated: 6466136,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0x5f5a404A5edabcDD80DB05E8e54A78c9EBF000C2',
|
|
blockCreated: 6466136,
|
|
},
|
|
},
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
blockCreated: 1,
|
|
},
|
|
},
|
|
testnet: true,
|
|
sourceId,
|
|
})
|