UNPKG

xdb-digitalbits-sdk

Version:

xdb-digitalbits-sdk is a library for working with the DigitalBits Frontier server.

11 lines (10 loc) 442 B
/// <reference types="urijs" /> import { Asset } from "xdb-digitalbits-base"; import { CallBuilder } from "./call_builder"; import { ServerApi } from "./server_api"; export declare class TradesCallBuilder extends CallBuilder<ServerApi.CollectionPage<ServerApi.TradeRecord>> { constructor(serverUrl: URI); forAssetPair(base: Asset, counter: Asset): this; forOffer(offerId: string): this; forAccount(accountId: string): this; }