UNPKG

@iguanadex/swap-sdk-core

Version:

🛠 An SDK for building applications on top of IguanaDEX.

30 lines • 804 B
export type BigintIsh = bigint | number | string; export declare enum TradeType { EXACT_INPUT = 0, EXACT_OUTPUT = 1 } export declare enum Rounding { ROUND_DOWN = 0, ROUND_HALF_UP = 1, ROUND_UP = 2 } export declare const MINIMUM_LIQUIDITY = 1000n; export declare const ZERO = 0n; export declare const ONE = 1n; export declare const TWO = 2n; export declare const THREE = 3n; export declare const FIVE = 5n; export declare const TEN = 10n; export declare const _100 = 100n; export declare const _9975 = 9975n; export declare const _10000 = 10000n; export declare const MaxUint256: bigint; export declare enum VMType { uint8 = "uint8", uint256 = "uint256" } export declare const VM_TYPE_MAXIMA: { uint8: bigint; uint256: bigint; }; //# sourceMappingURL=constants.d.ts.map