- 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>
33 lines
744 B
TypeScript
33 lines
744 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const spicy = /*#__PURE__*/ defineChain({
|
|
id: 88_882,
|
|
name: 'Chiliz Spicy Testnet',
|
|
network: 'chiliz-spicy-Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'CHZ',
|
|
symbol: 'CHZ',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://spicy-rpc.chiliz.com',
|
|
'https://chiliz-spicy-rpc.publicnode.com',
|
|
],
|
|
webSocket: [
|
|
'wss://spicy-rpc-ws.chiliz.com',
|
|
'wss://chiliz-spicy-rpc.publicnode.com',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Chiliz Explorer',
|
|
url: 'http://spicy-explorer.chiliz.com',
|
|
apiUrl: 'http://spicy-explorer.chiliz.com/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|