We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to support TVL (Total Volume Locked) and TMV (Total Markets Values) API method
The text was updated successfully, but these errors were encountered:
I think we should use these 2 graphql calls to get our TMV/TVL.
query getAssets($MARKET_ID: String ) { assets(where: {assetId_contains: $MARKET_ID}) { assetId amountInPool price } }
query getTVL { pools(where: {poolStatus_not_eq: "Closed"}) { marketId poolId volume ztgQty } }
Then the value of a market (TMV) equals to the sum of ztgQty and assets' value, which is amountInPool * price
ztgQty
amountInPool * price
Sorry, something went wrong.
No branches or pull requests
We need to support TVL (Total Volume Locked) and TMV (Total Markets Values) API method
The text was updated successfully, but these errors were encountered: