UNPKG

@hydro-protocol/hydro-client-js

Version:
36 lines (35 loc) 964 B
import { BigNumber } from "bignumber.js"; /** * A representation of the fees incurred when making an order on the exchange */ export declare class Fee { /** * The total amount being charged as a fee */ readonly asMakerFeeRate: BigNumber; /** * The percentage of the order that will be taken as a fee */ readonly asMakerTotalFeeAmount: BigNumber; /** * The total amount being charged as a fee */ readonly asMakerTradeFeeAmount: BigNumber; /** * The total amount being charged as a fee */ readonly asTakerFeeRate: BigNumber; /** * The percentage of the order that will be taken as a fee */ readonly asTakerTotalFeeAmount: BigNumber; /** * The total amount being charged as a fee */ readonly asTakerTradeFeeAmount: BigNumber; /** * The total amount being charged as a fee */ readonly gasFeeAmount: BigNumber; constructor(json: any); }