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