Type alias CreateAuctionHouseOutput

CreateAuctionHouseOutput: {
    auctionHouseAddress: Pda;
    auctionHouseFeeAccountAddress: Pda;
    auctionHouseTreasuryAddress: Pda;
    treasuryWithdrawalDestinationAddress: PublicKey;
    auctionHouse: AuctionHouse;
    response: SendAndConfirmTransactionResponse;
}

Type declaration

  • auctionHouseAddress: Pda

    The address of the Auction House.

  • auctionHouseFeeAccountAddress: Pda

    The account that used to pay the fees for selling and buying.

  • auctionHouseTreasuryAddress: Pda

    The account that receives the AuctionHouse fees.

  • treasuryWithdrawalDestinationAddress: PublicKey

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

  • auctionHouse: AuctionHouse

    Auction House model.

  • response: SendAndConfirmTransactionResponse

    The blockchain response from sending and confirming the transaction.

Generated using TypeDoc