- 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>
22 lines
465 B
TypeScript
22 lines
465 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const domaTestnet = /*#__PURE__*/ defineChain({
|
|
id: 97_476,
|
|
name: 'Doma Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Ether',
|
|
symbol: 'ETH',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc-testnet.doma.xyz'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Doma Testnet Explorer',
|
|
url: 'https://explorer-testnet.doma.xyz',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|