Type alias WithdrawFromFeeAccountBuilderParams

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

Type declaration

  • 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.

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

    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.

  • Optional authority?: undefined | Signer

    The Auction House authority.

    Default Value

    metaplex.identity()

  • Optional instructionKey?: undefined | string

Generated using TypeDoc