- 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
506 B
TypeScript
21 lines
506 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const reddioSepolia = /*#__PURE__*/ defineChain({
|
|
id: 50341,
|
|
name: 'Reddio Sepolia',
|
|
nativeCurrency: { name: 'Reddio', symbol: 'RED', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://reddio-dev.reddio.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Reddioscan',
|
|
url: 'https://reddio-devnet.l2scan.co',
|
|
apiUrl: 'https://reddio-devnet.l2scan.co/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|