diff --git a/docs/src/developing/clients/jsonrpc-api.md b/docs/src/developing/clients/jsonrpc-api.md index 2f1618e1c4..1b66863ec0 100644 --- a/docs/src/developing/clients/jsonrpc-api.md +++ b/docs/src/developing/clients/jsonrpc-api.md @@ -923,6 +923,7 @@ The result field will be an object with the following fields: - `epoch: `, the current epoch - `slotIndex: `, the current slot relative to the start of the current epoch - `slotsInEpoch: `, the number of slots in this epoch +- `transactionCount: `, total number of transactions processed without error since genesis #### Example: @@ -942,7 +943,8 @@ Result: "blockHeight": 166500, "epoch": 27, "slotIndex": 2790, - "slotsInEpoch": 8192 + "slotsInEpoch": 8192, + "transactionCount": 22661093 }, "id": 1 }