TokenBidTransactionParams
Type Alias: TokenBidTransactionParams
Properties overview
type TokenBidTransactionParams = DeployedTokenTransactionBaseParams & {
amount: number;
bidAddress: string;
bidPrivateKey: string;
price: number;
txType: "token:bid:create";
whitelist: Whitelist;
};
Defined in: packages/api/src/client/types.gen.ts:351
Type declaration
amount
amount: number;
The amount to bid.
bidAddress?
optional bidAddress: string;
Optional. The address for bidding.
bidPrivateKey?
optional bidPrivateKey: string;
Optional. The private key for bidding.
price
price: number;
The price to bid.
txType?
optional txType: "token:bid:create";
Must be "token:bid:create"
whitelist?
optional whitelist: Whitelist;
Updated 10 days ago