@hydro-protocol/hydro-client-js
Version:
Javascript SDK for the Hydro API
36 lines (35 loc) • 964 B
TypeScript
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);
}