Type alias WithdrawFromFeeAccountInput

WithdrawFromFeeAccountInput: {
    auctionHouse: Pick<AuctionHouse, "address" | "authorityAddress" | "feeWithdrawalDestinationAddress" | "feeAccountAddress">;
    amount: SolAmount | SplTokenAmount;
    authority?: Signer;
}

Type declaration

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

    The Auction House from which to transfer funds from the fee wallet to the fee withdrawal destination wallet. feeWithdrawalDestinationAddress 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