Files
FrenoCorp/node_modules/viem/chains/definitions/root.ts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- 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>
2026-04-25 00:08:01 -04:00

30 lines
622 B
TypeScript

import { defineChain } from '../../utils/chain/defineChain.js'
export const root = /*#__PURE__*/ defineChain({
id: 7668,
name: 'The Root Network',
nativeCurrency: {
decimals: 18,
name: 'XRP',
symbol: 'XRP',
},
rpcUrls: {
default: {
http: ['https://root.rootnet.live/archive'],
webSocket: ['wss://root.rootnet.live/archive/ws'],
},
},
blockExplorers: {
default: {
name: 'Rootscan',
url: 'https://rootscan.io',
},
},
contracts: {
multicall3: {
address: '0xc9C2E2429AeC354916c476B30d729deDdC94988d',
blockCreated: 9218338,
},
},
})