- 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
579 B
TypeScript
22 lines
579 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const creditCoin3Mainnet = /*#__PURE__*/ defineChain({
|
|
id: 102030,
|
|
name: 'Creditcoin',
|
|
nativeCurrency: { name: 'Creditcoin', symbol: 'CTC', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://mainnet3.creditcoin.network'],
|
|
webSocket: ['wss://mainnet3.creditcoin.network'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://creditcoin.blockscout.com',
|
|
apiUrl: 'https://creditcoin.blockscout.com/api',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|