- 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>
26 lines
604 B
TypeScript
26 lines
604 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const injective = /*#__PURE__*/ defineChain({
|
|
id: 1776,
|
|
name: 'Injective',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Injective',
|
|
symbol: 'INJ',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://sentry.evm-rpc.injective.network'],
|
|
webSocket: ['wss://sentry.evm-ws.injective.network'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Injective Explorer',
|
|
url: 'https://blockscout.injective.network',
|
|
apiUrl: 'https://blockscout.injective.network/api',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|