- 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>
21 lines
518 B
TypeScript
21 lines
518 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const citreaTestnet = /*#__PURE__*/ defineChain({
|
|
id: 5115,
|
|
name: 'Citrea Testnet',
|
|
nativeCurrency: { name: 'cBTC', symbol: 'cBTC', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.testnet.citrea.xyz'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Citrea Explorer',
|
|
url: 'https://explorer.testnet.citrea.xyz',
|
|
apiUrl: 'https://explorer.testnet.citrea.xyz/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|