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