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

    Type Alias IInvokeScriptParams<LONG>

    IInvokeScriptParams: {
        call?:
            | { args?: InvokeScriptCallArgument<LONG>[]; function: string }
            | null;
        dApp: string;
        feeAssetId?: string | null;
        payment?: { amount: LONG; assetId?: string | null }[];
    } & IBasicParams<LONG>

    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