You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
Implement endpoints for token module
There is need to implement similar endpoint like getTotalSupply to retrieve stakedLSK, inflationRate and totalSupplyLSK
This information can be included in blockchain application stats endpoint response by lisk-service.
Endpoints:
getStakedLSK
getInflationRate
totalSupplyLSK
Acceptance Criteria
Suggested endpoint is added to token module
Add unit test for all the endpoints
The text was updated successfully, but these errors were encountered:
getInflationRate, we can include the endpoint with #7622 which will be exposed under reward module
getStakedLSK, I think this will go under DPoS, but since this will require to iterate through all the votes, I don't think we can expose this value from endpoint
totalSupply is already exposed by token module getTotalSupply, if LSK specifically from sidechain, i don't think sidechain can know the total supply of LSK.
Description
Implement endpoints for token module
There is need to implement similar endpoint like
getTotalSupply
to retrievestakedLSK
,inflationRate
andtotalSupplyLSK
This information can be included in blockchain application stats endpoint response by
lisk-service
.Endpoints:
Acceptance Criteria
The text was updated successfully, but these errors were encountered: