hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
7 lines • 529 B
TypeScript
import type { BigNumber as EthersBigNumberType } from "ethers-v5";
import type { BigNumber as BigNumberJsType } from "bignumber.js";
import type { default as BNType } from "bn.js";
export declare function normalizeToBigInt(source: number | bigint | BNType | EthersBigNumberType | BigNumberJsType | string): bigint;
export declare function isBigNumber(source: any): boolean;
export declare function formatNumberType(n: string | bigint | BNType | EthersBigNumberType | BigNumberJsType): string;
//# sourceMappingURL=bigInt.d.ts.map