Files
FrenoCorp/node_modules/viem/chains/definitions/phoenix.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

27 lines
651 B
TypeScript

// src/chains/definitions/phoenix.ts
import { defineChain } from '../../utils/chain/defineChain.js'
export const phoenix = /*#__PURE__*/ defineChain({
id: 13381,
name: 'Phoenix Blockchain',
nativeCurrency: { name: 'Phoenix', symbol: 'PHX', decimals: 18 },
rpcUrls: {
default: {
http: ['https://rpc.phoenixplorer.com'],
},
},
blockExplorers: {
default: {
name: 'Phoenixplorer',
url: 'https://phoenixplorer.com',
apiUrl: 'https://phoenixplorer.com/api',
},
},
contracts: {
multicall3: {
address: '0x498cF757a575cFF2c2Ed9f532f56Efa797f86442',
blockCreated: 5620192,
},
},
})