From 0c9939f3fbefce7bf06fa2fb5cec3613240c8e77 Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Mon, 29 Jul 2024 14:39:56 +0530 Subject: [PATCH] Add laconicd network by default --- src/utils/constants.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/utils/constants.ts b/src/utils/constants.ts index c4956fc..96b5547 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -4,6 +4,18 @@ import { EIP155_CHAINS } from './wallet-connect/EIP155Data'; export const EIP155 = 'eip155'; export const COSMOS = 'cosmos'; export const DEFAULT_NETWORKS = [ + { + chainId: 'laconic_9000-1', + networkName: 'laconicd', + namespace: COSMOS, + rpcUrl: 'http://127.0.0.1:26657', + blockExplorerUrl: '', + nativeDenom: 'photon', + addressPrefix: 'laconic', + coinType: '118', + gasPrice: '0.01', + isDefault: true, + }, { chainId: '1', networkName: EIP155_CHAINS['eip155:1'].name,