Move chain id constant to test helpers
All checks were successful
Lint & Build / lint_and_build (20.x) (pull_request) Successful in 1m59s
Tests / sdk_tests (pull_request) Successful in 22m15s

This commit is contained in:
Prathamesh Musale 2024-09-06 12:17:25 +05:30
parent b56cb09b3b
commit 7717b11fb2
2 changed files with 2 additions and 3 deletions

View File

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

View File

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