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

23 lines
567 B
TypeScript

import { defineChain } from '../../utils/chain/defineChain.js'
export const juneoSocotraTestnet = /*#__PURE__*/ defineChain({
id: 101_003,
name: 'Socotra JUNE-Chain',
nativeCurrency: {
decimals: 18,
name: 'Socotra JUNE-Chain',
symbol: 'JUNE',
},
rpcUrls: {
default: { http: ['https://rpc.socotra-testnet.network/ext/bc/JUNE/rpc'] },
},
blockExplorers: {
default: {
name: 'Juneo Scan',
url: 'https://socotra.juneoscan.io/chain/2',
apiUrl: 'https://socotra.juneoscan.io/chain/2/api',
},
},
testnet: true,
})