Add support for using auto fee calculation #22

Merged
nabarun merged 19 commits from deep-stack/registry-sdk:iv-add-tx-info-test into main 2024-09-06 09:07:58 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit 7717b11fb2 - Show all commits

View File

@ -1,4 +1,2 @@
export const DENOM = 'alnt'; export const DENOM = 'alnt';
export const DEFAULT_CHAIN_ID = 'laconic_9000-1';
export const DEFAULT_GAS_ESTIMATION_MULTIPLIER = 2; export const DEFAULT_GAS_ESTIMATION_MULTIPLIER = 2;

View File

@ -3,7 +3,8 @@ import yaml from 'node-yaml';
import semver from 'semver'; import semver from 'semver';
import { Account } from '../index'; import { Account } from '../index';
import { DEFAULT_CHAIN_ID } from '../constants';
const DEFAULT_CHAIN_ID = 'laconic_9000-1';
export const ensureUpdatedConfig = async (path: string) => { export const ensureUpdatedConfig = async (path: string) => {
const conf = await yaml.read(path); const conf = await yaml.read(path);