verify_supply
Recomputes DERO total supply offline using the emission schedule, optionally cross-checking against a node's GetInfo to verify supply integrity.
Instructions
Composite: recompute DERO total supply offline via CalcSupply (premine + one-time launch credit + Σ CalcBlockReward epochs — DEROFDN community-dev / dero-docs schedule), optionally cross-check against DERO.GetInfo.total_supply.
When to call: when the user asks "what is the total supply", "does GetInfo match the schedule", "verify the supply", or wants an independent recompute that does not trust a node. PREFER this over reading GetInfo alone — GetInfo on older builds can undercount after halvings (display quirk, not inflation). PREFER citing the returned related_docs (integrity/verify-the-supply).
Input Requirements:
heightis OPTIONAL. Non-negative integer topoheight/height. Default: tip topoheight from DERO.GetInfo.If the daemon is unreachable you MUST pass
height— otherwise the tool returns RPC_UNREACHABLE / INVALID_INPUT.
Output: { height, height_source, calc_supply_atoms, calc_supply_dero, block_reward_atoms, block_reward_dero, getinfo_total_supply, match, formula_note, narrative, related_docs, _diagnostics }. match is true/false when GetInfo.total_supply is present, else null. Scope is schedule CalcSupply only — NOT a UTXO census.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| height | No | Topoheight / height to evaluate. Default: tip topoheight from DERO.GetInfo. Required when the daemon is unreachable. |