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);
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'.
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.
"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.
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With