Type alias LazyBid

LazyBid: { auctionHouse: AuctionHouse; price: SolAmount | SplTokenAmount; bookkeeperAddress: Option<PublicKey>; purchaseReceiptAddress: Option<PublicKey>; createdAt: DateTime; model: "bid"; tradeStateAddress: Pda; buyerAddress: PublicKey; receiptAddress: Option<Pda>; canceledAt: Option<DateTime>; isPublic: boolean; lazy: true; metadataAddress: PublicKey; tokenAddress: Option<PublicKey>; tokens: BigNumber }

Type declaration

  • auctionHouse: AuctionHouse

    A model of the Auction House related to this bid.

  • price: SolAmount | SplTokenAmount

    The buyer's price.

  • bookkeeperAddress: Option<PublicKey>

    The address of the bookkeeper account. It is responsible for signing a Bid Receipt Print.

  • purchaseReceiptAddress: Option<PublicKey>

    The address of the purchase receipt account. This is the account that stores information about the purchase related to this bid.

    const transactionBuilder = metaplex
    .auctionHouse()
    .builders()
    .findPurchaseByReceipt({ auctionHouse, receiptAddress: purchaseReceiptAddress });
  • createdAt: DateTime

    The date of creation.

  • model: "bid"

    A model identifier to distinguish models in the SDK.

  • tradeStateAddress: Pda

    The address of the buyer's trade state account.

  • buyerAddress: PublicKey

    The address of the buyer's wallet.

  • receiptAddress: Option<Pda>

    The address of the bid receipt account. This is the account that stores information about this bid. The Bid model is built on top of this account.

  • canceledAt: Option<DateTime>

    The date of cancellation.

  • isPublic: boolean

    The bid is not public, which means that it was created according to the listing.

  • lazy: true
  • metadataAddress: PublicKey
  • tokenAddress: Option<PublicKey>
  • tokens: BigNumber

Generated using TypeDoc