- 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>
36 lines
883 B
TypeScript
36 lines
883 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const metisSepolia = /*#__PURE__*/ defineChain({
|
|
id: 59902,
|
|
name: 'Metis Sepolia',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Test Metis',
|
|
symbol: 'tMETIS',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://sepolia.metisdevops.link',
|
|
'https://metis-sepolia-rpc.publicnode.com',
|
|
'https://metis-sepolia.gateway.tenderly.co',
|
|
],
|
|
webSocket: ['wss://metis-sepolia-rpc.publicnode.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Metis Sepolia Explorer',
|
|
url: 'https://sepolia-explorer.metisdevops.link',
|
|
apiUrl: 'https://sepolia-explorer.metisdevops.link/api-docs',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
blockCreated: 224185,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|