- 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>
28 lines
630 B
TypeScript
28 lines
630 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const jbc = /*#__PURE__*/ defineChain({
|
|
id: 8899,
|
|
name: 'JB Chain',
|
|
network: 'jbc',
|
|
nativeCurrency: { name: 'JBC', symbol: 'JBC', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc-l1.jibchain.net'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://exp-l1.jibchain.net',
|
|
apiUrl: 'https://exp-l1.jibchain.net/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xc0C8C486D1466C57Efe13C2bf000d4c56F47CBdC',
|
|
blockCreated: 2299048,
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|