- Preparing search index...
- The search index is not available
API References
Type alias CancelBidBuilderParams
Cancel
Bid
Builder
Params
: { auctionHouse
: Pick<AuctionHouse, "address" | "authorityAddress" | "feeAccountAddress" | "hasAuctioneer">; bid
: Pick<Bid, "asset" | "tradeStateAddress" | "buyerAddress" | "receiptAddress" | "price" | "tokens" | "isPublic">; auctioneerAuthority
?: undefined | Signer; instructionKey
?: undefined | string; }
Type declaration
-
auctionHouse: Pick<AuctionHouse, "address" | "authorityAddress" | "feeAccountAddress" | "hasAuctioneer">
-
bid: Pick<Bid, "asset" | "tradeStateAddress" | "buyerAddress" | "receiptAddress" | "price" | "tokens" | "isPublic">
-
Optional
auctioneerAuthority?: undefined | Signer
-
Optional
instructionKey?: undefined | string
The Auction House in which to cancel Bid. We only need a subset of the
AuctionHouse
model but we need enough information regarding its settings to know how to cancel bid.This includes, its address, authority address, its fee account address, etc.