Add auction kind in constants

This commit is contained in:
IshaVenikar 2024-09-19 17:37:34 +05:30
parent bc8c0e0040
commit 0c0037e2ac
2 changed files with 4 additions and 1 deletions

View File

@ -1,12 +1,12 @@
import Long from 'long';
import { coin } from '@cosmjs/amino';
import { Coin } from '@cosmjs/proto-signing';
import { Registry, Account, createBid } from './index';
import { getConfig } from './testing/helper';
import { DENOM } from './constants';
import { Duration } from './proto/google/protobuf/duration';
import { Coin } from '@cosmjs/proto-signing';
jest.setTimeout(30 * 60 * 1000);
const { chainId, rpcEndpoint, gqlEndpoint, privateKey, fee } = getConfig();

View File

@ -1,2 +1,5 @@
export const DENOM = 'alnt';
export const DEFAULT_GAS_ESTIMATION_MULTIPLIER = 2;
export const AUCTION_KIND_VICKREY = 'vickrey';
export const AUCTION_KIND_PROVIDER = 'provider';