UNPKG

hector-rubic-sdk

Version:
11 lines (10 loc) 375 B
import BigNumber from 'bignumber.js'; import { UniswapV3AlgebraRoute } from './uniswap-v3-algebra-route'; export interface UniswapV3AlgebraCalculatedInfo { route: UniswapV3AlgebraRoute; estimatedGas?: BigNumber; } export interface UniswapV3AlgebraCalculatedInfoWithProfit extends UniswapV3AlgebraCalculatedInfo { estimatedGas: BigNumber; profit: BigNumber; }