Get tx fees from config for auction tests (#84)

Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Reviewed-on: cerc-io/laconic-registry-cli#84
Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
This commit is contained in:
Nabarun 2024-09-25 16:00:42 +00:00 committed by nabarun
parent 03422548a4
commit c770d14bd9
2 changed files with 18 additions and 7 deletions

View File

@ -19,7 +19,8 @@ import {
getAuctionObj,
getBidObj,
updateGasAndFeesConfig,
AUCTION_STATUS
AUCTION_STATUS,
getFeesConfig
} from './helpers';
describe('Test laconic CLI commands', () => {
@ -715,13 +716,14 @@ describe('Test laconic CLI commands', () => {
}, (AUCTION_COMMIT_DURATION + 5) * 1000);
});
describe.only('Provider Auction operations', () => {
describe('Provider Auction operations', () => {
const txFees = getFeesConfig();
const commitFee = 1000;
const revealFee = 1000;
const maxPrice = 1000000;
const numProviders = 2;
const bidderInitialBlanace = 1000000000;
const txFees = 200000;
testAuctionId = '5e9dd5501e965f25db4fa62635d0ce5f6c59d73ab1a2ea999f8c5bf2f6fb6350';
const bidderAccounts = [

View File

@ -2,11 +2,15 @@ import fs from 'fs';
import path from 'path';
import yaml from 'js-yaml';
import { SpawnSyncReturns, spawnSync } from 'child_process';
import { Arguments } from 'yargs';
import { getConfig } from '../src/util';
import { StdFee } from '@cosmjs/stargate';
import { getConfig, getGasAndFees } from '../src/util';
export const CHAIN_ID = 'laconic_9000-1';
export const TOKEN_TYPE = 'alnt';
export const CONFIG_FILE = 'config.yml';
export enum AUCTION_STATUS {
COMMIT = 'commit',
@ -133,9 +137,14 @@ export async function delay (ms: number): Promise<any> {
return new Promise((resolve) => setTimeout(resolve, ms));
}
export function getFeesConfig (): number {
const { services: { registry: registryConfig } } = getConfig(CONFIG_FILE);
const fee = getGasAndFees({} as Arguments, registryConfig);
return Number((fee as StdFee).amount[0].amount);
}
export function updateGasAndFeesConfig (gas?: string | null, fees?: string | null, gasPrice?: string | null): void {
const configFilePath = './config.yml';
const config = getConfig(path.resolve(configFilePath));
const config = getConfig(path.resolve(CONFIG_FILE));
if (gas) {
config.services.registry.gas = gas;
@ -156,7 +165,7 @@ export function updateGasAndFeesConfig (gas?: string | null, fees?: string | nul
}
try {
fs.writeFileSync(configFilePath, yaml.dump(config), 'utf8');
fs.writeFileSync(CONFIG_FILE, yaml.dump(config), 'utf8');
} catch (e) {
console.error('Error writing config file:', e);
throw e;