- 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>
23 lines
444 B
TypeScript
23 lines
444 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const otimDevnet = /*#__PURE__*/ defineChain({
|
|
id: 41144114,
|
|
name: 'Otim Devnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'ETH',
|
|
symbol: 'ETH',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['http://devnet.otim.xyz'],
|
|
},
|
|
},
|
|
contracts: {
|
|
batchInvoker: {
|
|
address: '0x5FbDB2315678afecb367f032d93F642f64180aa3',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|