- 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>
20 lines
514 B
TypeScript
20 lines
514 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const oasisTestnet = /*#__PURE__*/ defineChain({
|
|
id: 4090,
|
|
network: 'oasis-testnet',
|
|
name: 'Oasis Testnet',
|
|
nativeCurrency: { name: 'Fasttoken', symbol: 'FTN', decimals: 18 },
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc1.oasis.bahamutchain.com'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Ftnscan',
|
|
url: 'https://oasis.ftnscan.com',
|
|
apiUrl: 'https://oasis.ftnscan.com/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|