- 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>
34 lines
693 B
TypeScript
34 lines
693 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const planq = /*#__PURE__*/ defineChain({
|
|
id: 7070,
|
|
name: 'Planq Mainnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'PLQ',
|
|
symbol: 'PLQ',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://planq-rpc.nodies.app',
|
|
'https://evm-rpc.planq.network',
|
|
'https://jsonrpc.planq.nodestake.top',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Planq Explorer',
|
|
url: 'https://evm.planq.network',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
|
blockCreated: 8470015,
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|