Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Ethereum transaction list by address

I'm looking for a way to get a list of transactions for a given address. If there are too many transactions I'd expect to be able to page the results. It would be better if I can give the latest processed transaction as parameter so I could get the latest transactions from a given point.

Something like this:

var page = 1;
txList = getTransactionList("0x323432432...", page, lastProcessedTx);
like image 512
Pablo Yabo Avatar asked Mar 29 '16 17:03

Pablo Yabo


People also ask

How do you get Ethereum transaction history?

It's easy to check your balance and transaction history on an Ethereum blockchain explorer like EthVM, Etherscan, or Ethplorer. These websites offer a full history of your activity. All you have to do is search your public Ethereum address, which is the 42 character string beginning with '0x'.

Can you track Ethereum transactions?

Transaction Monitors explainedUpon creation, Tangany's Transaction Monitors watch every Ethereum transaction and will notify you accordingly. This includes blocks on Mainnet and Ropsten. The monitor will search through all the new transactions and tries to find a match to the search criteria you provided on creation.

How do I get Ethereum by address?

"My ETH wallet"). Tap the receive icon. Tap the clipboard icon to copy the address to your clipboard, then provide the sender with the copied address (by pasting it into an email or message and sending it to the sender). Alternatively, the sender can scan the QR code shown in your Bitcoin.com Wallet app.

Can you track an Ethereum wallet address?

Google Inc. is now providing data on Ethereum addresses via its search engine. The company's latest cryptocurrency feature allows users to select Ethereum wallet addresses to track the Ether balances directly on the search engine.


1 Answers

From my research so far there is no way to get transaction list for an address. You should check all the transactions in the blockchain for the given address or relate addresses to transaction hashes in a database. See this thread that confirms the lack of the needed API: https://github.com/ethereum/go-ethereum/issues/1897

An alternative to this is to use Etherscan API: https://etherscan.io/apis But it depends on a third party server.

like image 89
Pablo Yabo Avatar answered Nov 15 '22 10:11

Pablo Yabo