Skip to content
New issue

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

Add TVL/TMV API method #5

Open
Whisker17 opened this issue Nov 1, 2022 · 1 comment
Open

Add TVL/TMV API method #5

Whisker17 opened this issue Nov 1, 2022 · 1 comment

Comments

@Whisker17
Copy link
Contributor

We need to support TVL (Total Volume Locked) and TMV (Total Markets Values) API method

@Whisker17
Copy link
Contributor Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant