github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/supply_response.go (about)

     1  package models
     2  
     3  // SupplyResponse supply represents the current supply of MicroAlgos in the system.
     4  type SupplyResponse struct {
     5  	// Current_round round
     6  	Current_round uint64 `json:"current_round"`
     7  
     8  	// OnlineMoney onlineMoney
     9  	OnlineMoney uint64 `json:"online-money"`
    10  
    11  	// TotalMoney totalMoney
    12  	TotalMoney uint64 `json:"total-money"`
    13  }