UNPKG

@arbnowfinance/sdk2

Version:

🛠 An SDK for building applications on top of arbnowfinance.

36 lines (35 loc) • 1.06 kB
import JSBI from 'jsbi'; export declare type BigintIsh = JSBI | bigint | string; export declare enum ChainId { MAINNET = 42161, BSCTESTNET = 97 } 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 FACTORY_ADDRESS = "0xb6007991ce40a203dbe5f8c088dfd7ce2a2360f1"; export declare const INIT_CODE_HASH = "0x30b7e4d7cb53be7e3c55fd5e60ec926a46babdae6af3c8a444186589d2680508"; export declare const MINIMUM_LIQUIDITY: JSBI; export declare const ZERO: JSBI; export declare const ONE: JSBI; export declare const TWO: JSBI; export declare const THREE: JSBI; export declare const FIVE: JSBI; export declare const TEN: JSBI; export declare const _100: JSBI; export declare const _998: JSBI; export declare const _1000: JSBI; export declare enum SolidityType { uint8 = "uint8", uint256 = "uint256" } export declare const SOLIDITY_TYPE_MAXIMA: { uint8: JSBI; uint256: JSBI; };