@crypdex/hydro-sdk
Version:
Javascript SDK for the Hydro API
16 lines (15 loc) • 400 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 totalFeeAmount: BigNumber;
/**
* The percentage of the order that will be taken as a fee
*/
readonly feeRate: BigNumber;
constructor(json: any);
}