- 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>
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const kinto = /*#__PURE__*/ defineChain({
|
|
id: 7887,
|
|
name: 'Kinto Mainnet',
|
|
network: 'Kinto Mainnet',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc.kinto.xyz/http'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Kinto Explorer',
|
|
url: 'https://explorer.kinto.xyz',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|