UNPKG

@alka-swap/sdk

Version:

🛠 An SDK for building applications on top of Alkaline.

45 lines (44 loc) • 1.19 kB
import JSBI from 'jsbi'; export declare type BigintIsh = JSBI | bigint | string; export declare enum ChainId { SEPOLIA = 11155111, ZKSYNCERA = 324, ZKTESTNET = 280, LINEAZKEVM = 1101, LINEA_TESTNET = 59140 } 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: { 11155111: string; 324: string; 280: string; 1101: string; 59140: string; }; export declare const INIT_CODE_HASH = "0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f"; 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 _997: JSBI; export declare const _1000: JSBI; export declare enum SolidityType { uint8 = "uint8", uint256 = "uint256" } export declare const SOLIDITY_TYPE_MAXIMA: { uint8: JSBI; uint256: JSBI; };