- 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>
32 lines
796 B
TypeScript
32 lines
796 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const mantaSepoliaTestnet = /*#__PURE__*/ defineChain({
|
|
id: 3_441_006,
|
|
name: 'Manta Pacific Sepolia Testnet',
|
|
network: 'manta-sepolia',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'ETH',
|
|
symbol: 'ETH',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://pacific-rpc.sepolia-testnet.manta.network/http'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Manta Sepolia Testnet Explorer',
|
|
url: 'https://pacific-explorer.sepolia-testnet.manta.network',
|
|
apiUrl: 'https://pacific-explorer.sepolia-testnet.manta.network/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xca54918f7B525C8df894668846506767412b53E3',
|
|
blockCreated: 479584,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|