Type alias WithdrawFromTreasuryAccountInput

WithdrawFromTreasuryAccountInput: {
    auctionHouse: Pick<AuctionHouse, "treasuryMint" | "authorityAddress" | "treasuryWithdrawalDestinationAddress" | "address">;
    amount: SolAmount | SplTokenAmount;
    authority?: Signer;
}

Type declaration

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

    The Auction House from which to transfer funds from the treasury wallet to the treasury withdrawal destination wallet. treasuryWithdrawalDestinationAddress is set on Auction House creation, but you can also change it via the update operation.

  • 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 authority?: Signer

    The Auction House authority.

    Default Value

    metaplex.identity()

Generated using TypeDoc