@hydro-protocol/hydro-client-js
Version:
Javascript SDK for the Hydro API
17 lines (16 loc) • 432 B
TypeScript
import { BigNumber } from "bignumber.js";
/**
* An aggregated level in the orderbook, containing the total
* amount of token available to purchase at a certain price
*/
export declare class PriceLevel {
/**
* The price of the tokens
*/
readonly price: BigNumber;
/**
* The total aggregated amount of tokens available for this price
*/
readonly amount: BigNumber;
constructor(json: any);
}