This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Add JSON RPC primitives for fetching the list of transactions that affect a given address #9317
Comments
This was referenced Apr 8, 2020
This was referenced Dec 14, 2023
This was referenced Jan 1, 2024
This was referenced Mar 16, 2024
This was referenced Oct 15, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For the history that an API node maintains, it's not possible to fetch the list of transactions that affect a given address. This is a feature that is starting to be widely requested.
These two new JSON RPC methods could be path to enabling this feature:
getConfirmTransactionsForAddress
. Input an address, return all the transaction signatures (paginated by slot?). For this we'll require a new rocksdb column to store the mapping of Address -> (Signature, Slot)getConfirmedTransactionBySignature
. Input a signature, return the transaction. This could be build on top of Blockstore'sget_transaction_status()
The text was updated successfully, but these errors were encountered: