UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

23 lines (20 loc) 479 B
import {DefaultSendArgs} from './defaultSendArgs'; /** * The argument object for [[AssetApi.placeAskOrder]] and [[AssetApi.placeBidOrder]] * * @module core */ export interface PlaceOrderArgs extends DefaultSendArgs { /** * The assets id */ asset: string; /** * The price that is offered for bid/ask */ pricePlanck: string; /** * The amount of assets to ask/bid for */ quantity: string | number; }