Files
FrenoCorp/node_modules/viem/chains/definitions/mantaTestnet.ts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- 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>
2026-04-25 00:08:01 -04:00

30 lines
735 B
TypeScript

import { defineChain } from '../../utils/chain/defineChain.js'
export const mantaTestnet = /*#__PURE__*/ defineChain({
id: 3_441_005,
name: 'Manta Pacific Testnet',
network: 'manta-testnet',
nativeCurrency: {
decimals: 18,
name: 'ETH',
symbol: 'ETH',
},
rpcUrls: {
default: { http: ['https://manta-testnet.calderachain.xyz/http'] },
},
blockExplorers: {
default: {
name: 'Manta Testnet Explorer',
url: 'https://pacific-explorer.testnet.manta.network',
apiUrl: 'https://pacific-explorer.testnet.manta.network/api',
},
},
contracts: {
multicall3: {
address: '0x211B1643b95Fe76f11eD8880EE810ABD9A4cf56C',
blockCreated: 419915,
},
},
testnet: true,
})