- 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>
49 lines
1.2 KiB
TypeScript
49 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 rss3Sepolia = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 2_331,
|
|
name: 'RSS3 VSL Sepolia Testnet',
|
|
nativeCurrency: { name: 'RSS3', symbol: 'RSS3', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.testnet.rss3.io'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'RSS3 VSL Sepolia Testnet Scan',
|
|
url: 'https://scan.testnet.rss3.io',
|
|
apiUrl: 'https://scan.testnet.rss3.io/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
l2OutputOracle: {
|
|
[sourceId]: {
|
|
address: '0xDb5c46C3Eaa6Ed6aE8b2379785DF7dd029C0dC81',
|
|
},
|
|
},
|
|
multicall3: {
|
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
|
blockCreated: 55697,
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0xcBD77E8E1E7F06B25baDe67142cdE82652Da7b57',
|
|
blockCreated: 5345035,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0xdDD29bb63B0839FB1cE0eE439Ff027738595D07B',
|
|
},
|
|
},
|
|
},
|
|
testnet: true,
|
|
sourceId,
|
|
})
|