- 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>
23 lines
567 B
TypeScript
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,
|
|
})
|