Files
FrenoCorp/node_modules/viem/chains/definitions/dustboyIoT.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
623 B
TypeScript

import { defineChain } from '../../utils/chain/defineChain.js'
export const dustboyIoT = /*#__PURE__*/ defineChain({
id: 555888,
name: 'DustBoy IoT',
nativeCurrency: { name: 'Ether', symbol: 'DST', decimals: 18 },
rpcUrls: {
default: {
http: ['https://dustboy-rpc.jibl2.com'],
},
},
blockExplorers: {
default: {
name: 'Blockscout',
url: 'https://dustboy.jibl2.com',
apiUrl: 'https://dustboy.jibl2.com/api',
},
},
contracts: {
multicall3: {
address: '0xFFD34aa2C62B2D52E00A361e466C229788f4eD6a',
blockCreated: 526569,
},
},
testnet: false,
})