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 10, 2022. It is now read-only.
Height is presently only filterable as a string. The ability to filter height as an integer would be more functional.
Sample use cases:
Querying the blockchain in ranged batches (i.e. for random audit data samples or batching large queries)
Queries limited to blocks greater or less than the prior query's block height (i.e. monitoring for new transactions or harvested blocks since last check, or checking for preceding transactions)
Excluding a subset of blocks from query results (i.e. first 1000 blocks from an implementation's stabilization or pilot period)
This would be particularly useful for blockchain monitoring when CLI installation isn't an option or adds unnecessary complexity - i.e. when attempting to integrate with SAAS or cloud based workflow automation platforms (like Microsoft Power Automate).
The text was updated successfully, but these errors were encountered:
Height on-chain is uint64, (long in java), the consideration is when the height reaches the max int32 we then have the problem. In rest, it is using nodejs's native Long type, basic arithmetic can be done, but agree that there are limitations for the current rest gateway.
Height is presently only filterable as a string. The ability to filter height as an integer would be more functional.
Sample use cases:
This would be particularly useful for blockchain monitoring when CLI installation isn't an option or adds unnecessary complexity - i.e. when attempting to integrate with SAAS or cloud based workflow automation platforms (like Microsoft Power Automate).
The text was updated successfully, but these errors were encountered: