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