UNPKG

moonwalkerswap-v1-sdk

Version:

An SDK for building applications on top of the Moonwalkerswap V1 protocol

6 lines (5 loc) 575 B
import { BigNumberish, FormatSignificantOptions, FormatFixedOptions } from '../types'; export declare function formatSignificant(bigNumberish: BigNumberish, options?: FormatSignificantOptions): string; export declare function formatFixed(bigNumberish: BigNumberish, options?: FormatFixedOptions): string; export declare function formatSignificantDecimals(bigNumberish: BigNumberish, decimals: number, options?: FormatSignificantOptions): string; export declare function formatFixedDecimals(bigNumberish: BigNumberish, decimals: number, options?: FormatFixedOptions): string;