- 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>
26 lines
595 B
TypeScript
26 lines
595 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const redbellyMainnet = /*#__PURE__*/ defineChain({
|
|
id: 151,
|
|
name: 'Redbelly Network Mainnet',
|
|
nativeCurrency: {
|
|
name: 'Redbelly Native Coin',
|
|
symbol: 'RBNT',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://governors.mainnet.redbelly.network'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Routescan',
|
|
url: 'https://redbelly.routescan.io',
|
|
apiUrl:
|
|
'https://api.routescan.io/v2/network/mainnet/evm/151/etherscan/api',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|