IOutput: {
    getLedger2Postings: {
        currentPage: number;
        items: {
            blockNum: number;
            createdAt: unknown;
            creditAccountId?: null | number;
            creditGlobalSequence?: null | string;
            debitAccountId?: null | number;
            debitGlobalSequence?: null | string;
            key: string;
            memo?: null | string;
            operationCode?: null | string;
            parentApplyGlobalSequence?: null | string;
            processHash?: null | string;
            quantity?: null | string;
            username?: null | string;
        }[];
        totalCount: number;
        totalPages: number;
    };
}

Type declaration

  • getLedger2Postings: {
        currentPage: number;
        items: {
            blockNum: number;
            createdAt: unknown;
            creditAccountId?: null | number;
            creditGlobalSequence?: null | string;
            debitAccountId?: null | number;
            debitGlobalSequence?: null | string;
            key: string;
            memo?: null | string;
            operationCode?: null | string;
            parentApplyGlobalSequence?: null | string;
            processHash?: null | string;
            quantity?: null | string;
            username?: null | string;
        }[];
        totalCount: number;
        totalPages: number;
    }

    Реестр проводок: пары debit+credit (Дт/Кт/Сумма), восстановленные из blockchain_actions по правилу «ближайший parent apply». Источник для фронт-страницы «Реестр проводок».

    Требуемые роли: chairman, member.

    • currentPage: number
    • items: {
          blockNum: number;
          createdAt: unknown;
          creditAccountId?: null | number;
          creditGlobalSequence?: null | string;
          debitAccountId?: null | number;
          debitGlobalSequence?: null | string;
          key: string;
          memo?: null | string;
          operationCode?: null | string;
          parentApplyGlobalSequence?: null | string;
          processHash?: null | string;
          quantity?: null | string;
          username?: null | string;
      }[]
    • totalCount: number
    • totalPages: number