-
Notifications
You must be signed in to change notification settings - Fork 21
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 getTransactions endpoint #110
Comments
@psheth9 @aditya1702 I added an example request/response to the description here, per our conversation yesterday. Let me know what you think |
I know this isn't hard to provide, but why do we need this? Also, what is This also needs pagination information in the response, e.g. a |
I just included this because it already exists in
The ledger sequence number. Again, mimicking existing
+1 |
What problem does your feature solve?
Horizon will cease to serve txmeta sometime in Q2 (see discord discussion) due to data storage size concerns of Soroban transactions. The ecosystem needs an alternative to this, and we want that alternative to be the RPC.
What would you like to see?
Users need to be able to page through all transactions available in RPC's retention window. See this issue for some prior discussion/context on why we've chosen not to implement an actual stream/websocket/sse implementation here.
The
getTransactions
endpoint should be able to support pagination and should provide all metadata about the transaction that is currently available viagetTransaction
.Scope for this will be limited to simple pagination with no filters, and we will work/propose additional filters on this as separate issues. Pagination should follow the format/user experience of the
getEvents
endpoint, except see (see #118) for changes that we want to make to pagination and follow the decision there.Request format:
Response format
Tasks
The text was updated successfully, but these errors were encountered: