Documentation
    Preparing search index...

    Type Alias CreateAuctionParams

    type CreateAuctionParams = {
        coinType: string;
        encryptedReservePrice?: number[] | Uint8Array;
        endTime: number;
        minBid: bigint;
        startTime: number;
        suinsRegistration: TransactionObjectInput;
    }
    Index

    Properties

    coinType: string

    The coin type for the auction (e.g. '0x2::sui::SUI')

    encryptedReservePrice?: number[] | Uint8Array

    Optional encrypted reserve price as a byte array (pre-encrypted using Seal). If not provided, the auction will have no reserve price.

    endTime: number

    Auction end time as a Unix timestamp in seconds

    minBid: bigint

    Minimum bid amount in base units of the coin

    startTime: number

    Auction start time as a Unix timestamp in seconds

    suinsRegistration: TransactionObjectInput

    The SuinsRegistration NFT to auction