-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Feature-request: _listTransactions() #3567
Comments
Have a look at As stated in the original issue, it's not enough to list incoming/outgoing transactions since there are also internal contract calls that may transfer value as well. curl --data '{"jsonrpc":"2.0", "id":1, "method": "trace_filter", "params": [{ "fromAccount": "0x385acafdb80b71ae001f1dbd0d65e62ec2fff055" }] }' -X POST -H Content-Type:application/json Note that you need to run with |
@tomusdrw thanks for your answer.
fromAccount
|
Sorry, just checked the format, in my example The correct format is (note it's curl --data '{"jsonrpc":"2.0", "id":1, "method": "trace_filter", "params": [{ "fromAddress": ["0x385acafdb80b71ae001f1dbd0d65e62ec2fff055"] }] }' -X POST -H Content-Type:application/json I will move point 3. to a separate issue: https://github.com/ethcore/parity/issues/3571 |
Thanks, so only point 3 remains. @tomusdrw P.S.: sorry, haven't searched the api for solution intense enough. your comment is the solution for the requested feature. |
Over a year passed by and the go-ethereum developers have no ETA (clue?) to implement this feature.
Original request from ethereum/go-ethereum#1897:
This feature has been discussed on gitter in the past and we would like to see this get implemented for accounts and contracts.
Proposal
eth_listTransactions
Returns a list of transaction hashes for a given external or contract account
Parameters
String - the account or contract address
Returns
DATA - A list of transaction hashes
Additional Parameter:
STRING (IN|OUT) - for incoming or outgoing transactions
What's your opinion for implementing this feature?
The text was updated successfully, but these errors were encountered: