- 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>
21 lines
479 B
TypeScript
21 lines
479 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const hpp = /*#__PURE__*/ defineChain({
|
|
id: 190415,
|
|
name: 'HPP Mainnet',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://mainnet.hpp.io'],
|
|
webSocket: ['wss://mainnet.hpp.io'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'HPP Mainnet Explorer',
|
|
url: 'https://explorer.hpp.io',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|