feat: Delegator Count for Validators#8
Merged
Conversation
27f6fb8 to
fd4e569
Compare
5df51d1 to
c3d6971
Compare
Eengineer1
reviewed
Jun 6, 2022
Eengineer1
reviewed
Jun 6, 2022
c3d6971 to
735b568
Compare
ankurdotb
requested changes
Jun 6, 2022
Collaborator
ankurdotb
left a comment
There was a problem hiding this comment.
Sorry but this doesn't meet the needs of what the staking rewards API requires. I've discussed this in clickup.
735b568 to
1c9b009
Compare
We've added a new API which uses our GraphQL Endpoint to query a list of active delegators for a validator. Endpoint: `/staking/delegators/:validator_address` Also refactored the GraphQL Queries to use string templates (which are multiline by nature) instead of using string concatenation. This improves readability and reduces surface for syntactical errors Signed-off-by: jay-dee7 <jasdeepsingh.uppal@gmail.com>
1c9b009 to
c23f880
Compare
cheqd-bot Bot
pushed a commit
that referenced
this pull request
Mar 13, 2025
## [2.0.0](1.0.0...2.0.0) (2025-03-13) ### ⚠ BREAKING CHANGES * Add support for non-circulating-addresses ### Features * Add analytics endpoints to fetch identity data [DEV-4774] ([#269](#269)) ([6ba0f6a](6ba0f6a)), closes [#270](#270) * Add support for non-circulating-addresses ([b775822](b775822)) * Circulating supply API and vesting API fixes [DEV-1388] ([#7](#7)) ([a3e4a12](a3e4a12)) * Create circulating supply API [DEV-1028] ([3a26551](3a26551)) * Delegator Count for Validators ([#8](#8)) ([63830b6](63830b6)) * Design and implement monitoring for price discrepancies across exchanges [DEV-1300] ([#29](#29)) ([f2a10c3](f2a10c3)) * Remove market monitoring API and update documentation for identity analytics [DEV-4788] ([#271](#271)) ([5d01d69](5d01d69)) * Staking rewards APIs ([#11](#11)) ([209d5f2](209d5f2)) * Store identity-related transactions into relational DB [DEV-4773] ([#261](#261)) ([6ea1e62](6ea1e62)) ### Bug Fixes * Circulating supply response ([#41](#41)) ([3b930d3](3b930d3)) * Drop active validators KV ([#42](#42)) ([bcadfc5](bcadfc5)) * Filter by denom when displaying total account balance [DEV-3904] ([#197](#197)) ([5e58dce](5e58dce)) * Fix circulating supply API endpoint [DEV-1821] ([#35](#35)) ([301769e](301769e)), closes [#38](#38) [#37](#37) * **graphql:** Broken upstream API fix [DEV-1726] ([#22](#22)) ([d1365d8](d1365d8)) * Removed mis-configs & added bindings ([29b2b66](29b2b66)) * Removed mis-configs & added bindings ([3e0092c](3e0092c)) * Update production KV ([e9ff2aa](e9ff2aa))
|
🎉 This PR is included in version 2.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We've added a new API which uses our GraphQL Endpoint to query a list of
active delegators for a validator.
Endpoint:
/staking/delegators/:validator_addressAlso refactored the GraphQL Queries to use string templates (which are
multiline by nature) instead of using string concatenation. This
improves readability and reduces surface for syntactical errors
Signed-off-by: jay-dee7 jasdeepsingh.uppal@gmail.com