- 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>
27 lines
642 B
TypeScript
27 lines
642 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const apexTestnet = /*#__PURE__*/ defineChain({
|
|
id: 3993,
|
|
name: 'APEX Testnet',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc-testnet.apexlayer.xyz'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://exp-testnet.apexlayer.xyz',
|
|
apiUrl: 'https://exp-testnet.apexlayer.xyz/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xf7642be33a6b18D16a995657adb5a68CD0438aE2',
|
|
blockCreated: 283775,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|