UNPKG

@crypdex/hydro-sdk

Version:

Javascript SDK for the Hydro API

21 lines (20 loc) 504 B
import { BigNumber } from "bignumber.js"; /** * A representation of how much of a specific token is currently listed in all * of the orders you have in the exchange. */ export declare class LockedBalance { /** * The symbol of the token */ readonly symbol: string; /** * The amount of token that is tied up in orders */ readonly amount: BigNumber; /** * Last time this balance was updated */ readonly updatedAt: Date; constructor(json: any); }