Type alias UpdateAuctionHouseInput

UpdateAuctionHouseInput: {
    auctionHouse: AuctionHouse;
    authority?: Signer;
    sellerFeeBasisPoints?: number | null;
    requiresSignOff?: boolean | null;
    canChangeSalePrice?: boolean | null;
    newAuthority?: PublicKey;
    feeWithdrawalDestination?: PublicKey;
    treasuryWithdrawalDestinationOwner?: PublicKey;
    auctioneerAuthority?: PublicKey;
    auctioneerScopes?: AuthorityScope[];
}

Type declaration

  • auctionHouse: AuctionHouse

    The Auction House model. We need the full model in order to compare the current data with the provided data to update. For instance, if you only want to update the feeWithdrawalDestination, we need to send an instruction that updates the data whilst keeping all other properties the same.

  • Optional authority?: Signer

    The Auction House authority.

    Default Value

    auctionHouse.authority

  • Optional sellerFeeBasisPoints?: number | null

    The share of the sale the auction house takes on all NFTs as a fee.

    Default Value

    auctionHouse.requiresSignOff

  • Optional requiresSignOff?: boolean | null

    This allows the centralised authority to gate which NFT can be listed, bought and sold.

    Default Value

    auctionHouse.requiresSignOff

  • Optional canChangeSalePrice?: boolean | null

    Is intended to be used with the Auction House that requires sign off. If the seller intentionally lists their NFT for a price of 0, a new FreeSellerTradeState is made. The Auction House can then change the price to match a matching Bid that is greater than 0.

    Default Value

    auctionHouse.canChangeSalePrice

  • Optional newAuthority?: PublicKey

    The new Auction House authority if you want to change it.

    Default Value

    auctionHouse.authority

  • Optional feeWithdrawalDestination?: PublicKey

    The account that is marked as a destination of withdrawal from the fee account.

    Default Value

    auctionHouse.feeWithdrawalDestination

  • Optional treasuryWithdrawalDestinationOwner?: PublicKey

    The account that is marked as the owner of treasury withdrawal destination.

    Default Value

    auctionHouse.treasuryWithdrawalDestinationAddress

  • Optional auctioneerAuthority?: PublicKey

    The Auctioneer authority key. It is required when Auction House is going to have Auctioneer enabled.

    Provide it if you want to delegate Auctioneer on the Auction House that doesn't have Auctioneer enabled.

    Default Value

    auctionHouse.auctioneerAuthority

  • Optional auctioneerScopes?: AuthorityScope[]

    The list of scopes available to the user in the Auction House. For example Bid, List, Execute Sale.

    Only takes place when Auction House has Auctioneer enabled.

    Default Value

    auctionHouse.scopes

Generated using TypeDoc