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