- 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
615 B
TypeScript
28 lines
615 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const jocMainnet = /*#__PURE__*/ defineChain({
|
|
id: 81,
|
|
name: 'Japan Open Chain Mainnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Japan Open Chain Token',
|
|
symbol: 'JOC',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://rpc-1.japanopenchain.org:8545',
|
|
'https://rpc-2.japanopenchain.org:8545',
|
|
'https://rpc-3.japanopenchain.org',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Block Explorer',
|
|
url: 'https://explorer.japanopenchain.org',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|