Type alias WithdrawFromBuyerAccountInput

WithdrawFromBuyerAccountInput: {
    auctionHouse: Pick<AuctionHouse, "address" | "authorityAddress" | "hasAuctioneer" | "treasuryMint" | "feeAccountAddress">;
    amount: SolAmount | SplTokenAmount;
    buyer?: PublicKey | Signer;
    authority?: Signer;
    auctioneerAuthority?: Signer;
}

Type declaration

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

    The Auction House from which escrow buyer withdraws funds.

  • amount: SolAmount | SplTokenAmount

    Amount of funds to withdraw. This can either be in SOL or in the SPL token used by the Auction House as a currency.

  • Optional buyer?: PublicKey | Signer

    The buyer who withdraws funds.

    There must be one and only one signer; Authority or Seller must sign.

    Default Value

    metaplex.identity()

  • Optional authority?: Signer

    The Authority key. It is required when the buyer is not a signer. There must be one and only one signer; Authority or Buyer must sign.

    Default Value

    Defaults to not being used.

  • Optional auctioneerAuthority?: Signer

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

    Default Value

    No default value.

Generated using TypeDoc