- 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
421 B
TypeScript
19 lines
421 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const nautilus = /*#__PURE__*/ defineChain({
|
|
id: 22222,
|
|
name: 'Nautilus Mainnet',
|
|
nativeCurrency: { name: 'ZBC', symbol: 'ZBC', decimals: 9 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://api.nautilus.nautchain.xyz'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'NautScan',
|
|
url: 'https://nautscan.com',
|
|
},
|
|
},
|
|
})
|