interface IInput {
    input: {
        accountId?: null | number;
        actionNames?: null | string[];
        applyGlobalSequence?: null | string;
        coopname: string;
        dateFrom?: any;
        dateTo?: any;
        limit?: null | number;
        operationCodes?: null | string[];
        page?: null | number;
        parentApplyGlobalSequence?: null | string;
        processHash?: null | string;
        sortOrder?: null | string;
        username?: null | string;
        walletName?: null | string;
        walletopGlobalSequence?: null | string;
    };
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

Properties

input: {
    accountId?: null | number;
    actionNames?: null | string[];
    applyGlobalSequence?: null | string;
    coopname: string;
    dateFrom?: any;
    dateTo?: any;
    limit?: null | number;
    operationCodes?: null | string[];
    page?: null | number;
    parentApplyGlobalSequence?: null | string;
    processHash?: null | string;
    sortOrder?: null | string;
    username?: null | string;
    walletName?: null | string;
    walletopGlobalSequence?: null | string;
}

Type declaration

  • Optional accountId?: null | number

    Бух.счёт (×1000): 51000/80000/86000 — для debit/credit действий.

  • Optional actionNames?: null | string[]

    Имена blockchain-действий: apply | walletop | debit | credit

  • Optional applyGlobalSequence?: null | string

    № операции = apply.global_sequence. Точечная адресация одной apply-группы (apply + walletop/debit/credit).

  • coopname: string
  • Optional dateFrom?: any
  • Optional dateTo?: any
  • Optional limit?: null | number
  • Optional operationCodes?: null | string[]

    OPERATION_REGISTRY коды: o.cap.lend, o.wal.depcpl, o.mig.minshr и т.д.

  • Optional page?: null | number
  • Optional parentApplyGlobalSequence?: null | string

    global_sequence родительского apply: возвращает только inline-сибсов (walletop/debit/credit) этого apply через точечную связь parser2 (transaction_id + creator_action_ordinal=apply.action_ordinal).

  • Optional processHash?: null | string

    process_hash для выборки всех действий одной операции

  • Optional sortOrder?: null | string
  • Optional username?: null | string
  • Optional walletName?: null | string

    eosio::name кошелька (w.<contract>.<waltype>) — для walletop действий.

  • Optional walletopGlobalSequence?: null | string

    № движения по кошельку = walletop.global_sequence. Уникален.