@nexex/cli
Version:
21 lines (20 loc) • 710 B
TypeScript
import { flags } from '@oclif/command';
import MarketBase from '../../MarketBase';
export default class MarketSell extends MarketBase {
static description: string;
static examples: string[];
static flags: {
amount: flags.IOptionFlag<string>;
price: flags.IOptionFlag<string>;
expire: flags.IOptionFlag<string>;
market: flags.IOptionFlag<string>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
endpoint: flags.IOptionFlag<string>;
showAddr: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
run(): Promise<void>;
private getTokenAddress;
private getAmount;
private getPrice;
private getExpire;
}