Type alias CancelBidInput

CancelBidInput: {
    auctionHouse: Pick<AuctionHouse, "authorityAddress" | "address" | "feeAccountAddress" | "hasAuctioneer">;
    bid: Pick<Bid, "asset" | "buyerAddress" | "isPublic" | "price" | "receiptAddress" | "tokens" | "tradeStateAddress">;
    auctioneerAuthority?: Signer;
}

Type declaration

  • auctionHouse: Pick<AuctionHouse, "authorityAddress" | "address" | "feeAccountAddress" | "hasAuctioneer">

    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.

  • bid: Pick<Bid, "asset" | "buyerAddress" | "isPublic" | "price" | "receiptAddress" | "tokens" | "tradeStateAddress">

    The Bid to cancel. We only need a subset of the Bid model but we need enough information regarding its settings to know how to cancel it.

    This includes, its asset, buyer address, price, receipt address etc.

  • Optional auctioneerAuthority?: Signer

    The Auctioneer authority key. It is required when Auction House has Auctioneer enabled.

    Default Value

    No default value.

Generated using TypeDoc