-
Notifications
You must be signed in to change notification settings - Fork 4.6k
rpc call to get transactions given an address #12411
Comments
Oops, duplicate issues. solana-labs/solana-web3.js#992 I'll close the other Right now chaining those calls ( |
I saw that |
Do you know if there are planned improvements to allow pagination on |
Yes! There is actually already an |
Oh thanks, that's a lot useful! I guess also the documentation must be updated. |
💯 on my list for today |
Wouldn't be also useful to get rid of the upper limit of 1000 txs ? |
I think we'll keep that limit for now. RPC isn't optimized for huge data dumps. |
Any plan to aggregate those nested calls? |
Problem
what's the RPC to get the list of transactions given an address?
I saw
getConfirmedSignaturesForAddress2
but I don't want only the list of signature, instead I'd like to get some basic info like amount received/sent and addresses involved. Something more verbose.I assumed having the signatures and call
getConfirmedTransaction
would give me the txs details, but what if I want the timestamp of the tx instead of theslot
?Nesting rpc calls seems a wrong approach to me.
The text was updated successfully, but these errors were encountered: