- GET /monitoring/denomination-pending#
Get a list of denomination pending stored by the auditor.
The following query parameters are optional, and can be used to customise the response:
Request:
- Query Parameters:
limit – A signed integer, indicating how many elements relative to the offset query parameter should be returned. The default value is -20.
offset – An unsigned integer, indicating from which row onward to return elements. The default value is INT_MAX.
With the default settings, the endpoint returns at most the 20 latest elements.
Response:
- 200 OK:
The auditor responds with a top level array of DenominationPending objects. If no elements could be found, an empty array is returned
Details:
interface DenominationPending { // Unique row identifier row_id : Integer; // Hash of the denomination public key denom_pub_hash : HashCode; // Total value of coins remaining in circulation (excluding // the value of coins that were recouped, those are always // just under recoup_loss). denom_balance : Amount; // Total value of coins redeemed that exceeds the amount we // put into circulation. Basically, this value grows if we // wanted to reduce denom_balance (because a coin was deposited) // but we could not because the denom_balance was already zero. denom_loss : Amount; // Total number of coins of this denomination that were // put into circulation. num_issued : Integer; // Total value of the coins put into circulation. denom_risk : Amount; // Losses the exchange had from this denomination due to coins // that were recouped (after the denomination was revoked). recoup_loss : Amount; }
Note
This endpoint is still experimental. The endpoint will be further developed as needed.