TokenSellTransactionParams
Type Alias: TokenSellTransactionParams
Properties overview
type TokenSellTransactionParams = DeployedTokenTransactionBaseParams & {
amount: number;
bidAddress: string;
txType: "token:bid:sell";
};
Defined in: packages/api/src/client/types.gen.ts:511
Type declaration
amount
amount: number;
The amount of tokens to sell.
bidAddress
bidAddress: string;
The address of the bid to sell to.
txType?
optional txType: "token:bid:sell";
Must be "token:bid:sell"
Updated 10 days ago