import { JSBI } from '10k_swap-sdk'
// import JSBI from 'jsbi'
The default export from jsbi.
import { BigintIsh } from '10k_swap-sdk'
// type BigintIsh = JSBI | bigint | string
A union type comprised of all types that can be cast to a JSBI instance.
import { ChainId } from '10k_swap-sdk'
// enum ChainId {
// MAINNET = '0x534e5f4d41494e',
// TESTNET = '0x534e5f474f45524c49',
// }
A enum denominating supported chain IDs.
import { TradeType } from '10k_swap-sdk'
// enum TradeType {
// EXACT_INPUT,
// EXACT_OUTPUT
// }
A enum denominating supported trade types.
import { Rounding } from '10k_swap-sdk'
// enum Rounding {
// ROUND_DOWN,
// ROUND_HALF_UP,
// ROUND_UP
// }
A enum denominating supported rounding options.
import { FACTORY_ADDRESSES } from '10k_swap-sdk'
The factory addresses.
import { CONTRACT_ADDRESS_PREFIX } from '10k_swap-sdk'
Encode short string STARKNET_CONTRACT_ADDRESS
.
import { MINIMUM_LIQUIDITY } from '10k_swap-sdk'
Minimum liquidity for the initial pool.
import { InsufficientReservesError } from '10k_swap-sdk'
import { InsufficientInputAmountError } from '10k_swap-sdk'