@waves/waves-transactions
    Preparing search index...

    Type Alias IOrderParams<LONG>

    type IOrderParams<LONG = string | number> = {
        amount: LONG;
        amountAsset: string | null;
        expiration?: number;
        matcherFee?: number;
        matcherFeeAssetId?: string | null;
        matcherPublicKey: string;
        orderType: ExchangeTransactionOrderType;
        price: LONG;
        priceAsset: string | null;
        priceMode?: "fixedDecimals" | "assetDecimals";
        senderPublicKey?: string;
        timestamp?: number;
    }

    Type Parameters

    • LONG = string | number

      Generic type representing LONG type. Default to string | number. Since javascript number more than 2 ** 53 -1 cannot be precisely represented, generic type is used

    Index

    Properties

    amount: LONG
    amountAsset: string | null
    expiration?: number
    matcherFee?: number
    matcherFeeAssetId?: string | null
    matcherPublicKey: string
    orderType: ExchangeTransactionOrderType
    price: LONG
    priceAsset: string | null
    priceMode?: "fixedDecimals" | "assetDecimals"
    senderPublicKey?: string
    timestamp?: number