- 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>
24 lines
452 B
TypeScript
24 lines
452 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const acria = /*#__PURE__*/ defineChain({
|
|
id: 47,
|
|
name: 'Acria IntelliChain',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'ACRIA',
|
|
symbol: 'ACRIA',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://aic.acria.ai'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Acria Explorer',
|
|
url: 'https://explorer.acria.ai',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|