supply method

Future<LedgerSupply> supply()

Get the current supply reported by the ledger.

Throws an AlgorandException if there is an HTTP error. Returns the current supply reported by the ledger.

Implementation

Future<LedgerSupply> supply() async {
  return _nodeRepository.supply();
}