IOutput: {
    getLedger2History: {
        currentPage: number;
        items: {
            accountId?: null | number;
            action: string;
            blockNum: number;
            coopname: string;
            createdAt: unknown;
            globalSequence: string;
            memo?: null | string;
            operationCode?: null | string;
            parentApplyGlobalSequence?: null | string;
            processHash?: null | string;
            quantity?: null | string;
            username?: null | string;
            walletFrom?: null | string;
            walletTo?: null | string;
        }[];
        totalCount: number;
        totalPages: number;
    };
}

Type declaration

  • getLedger2History: {
        currentPage: number;
        items: {
            accountId?: null | number;
            action: string;
            blockNum: number;
            coopname: string;
            createdAt: unknown;
            globalSequence: string;
            memo?: null | string;
            operationCode?: null | string;
            parentApplyGlobalSequence?: null | string;
            processHash?: null | string;
            quantity?: null | string;
            username?: null | string;
            walletFrom?: null | string;
            walletTo?: null | string;
        }[];
        totalCount: number;
        totalPages: number;
    }

    История операций ledger2 с серверными фильтрами (action/accountId/username/date-range).

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

    • currentPage: number
    • items: {
          accountId?: null | number;
          action: string;
          blockNum: number;
          coopname: string;
          createdAt: unknown;
          globalSequence: string;
          memo?: null | string;
          operationCode?: null | string;
          parentApplyGlobalSequence?: null | string;
          processHash?: null | string;
          quantity?: null | string;
          username?: null | string;
          walletFrom?: null | string;
          walletTo?: null | string;
      }[]
    • totalCount: number
    • totalPages: number