- 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
458 B
TypeScript
22 lines
458 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const bronosTestnet = /*#__PURE__*/ defineChain({
|
|
id: 1038,
|
|
name: 'Bronos Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Bronos Coin',
|
|
symbol: 'tBRO',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://evm-testnet.bronos.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'BronoScan',
|
|
url: 'https://tbroscan.bronos.org',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|