- 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
517 B
TypeScript
23 lines
517 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const exsatTestnet = /*#__PURE__*/ defineChain({
|
|
id: 839999,
|
|
name: 'exSat Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'BTC',
|
|
symbol: 'BTC',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://evm-tst3.exsat.network'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'exSat Explorer',
|
|
url: 'https://scan-testnet.exsat.network',
|
|
apiUrl: 'https://scan-testnet.exsat.network/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|