How To Receive Only The Transactions About Particular Set Of Addresses From Blockchain Without Full Syncing?
I am trying to parse Ethereum blockchain and read transactions which indicate transfer to or from the given set of addresses. The problem is that to do so full synced node is needed and it takes too much space on dist. So, is there any way (or software) to accept new blocks and just read transactions of my concern without downloading all other transactions and with the same safety checks of blockchain?
Answer
For the problem of querying informations about a particular set of adresses, there are multiple ways to achieve that:
Use a blockchain explorer like https://aleth.io
Use Google Big Query (https://console.cloud.google.com/bigquery?p=bigquery-public-data&d=ethereum_blockchain)
Use an archive synchronized node that unfortunately will fill up your hard drive!
Related Questions
- → laravel5 eloquent foreign key hasOne()
- → Get transactions in batches ShopifyAPI
- → Laravel: a model that belongs to two other models
- → shopify transaction api GET all transactions
- → Laravel DB::transaction exception PDO There is no active transaction
- → Query state in React, and setState or update if exists
- → How can I setup edit item functionality in this React application?
- → Fastest way to gather JS objects by date
- → PHPUnit + Laravel 5.2 + Attribute not returning properly
- → Database Transactions Not Found - Lumen
- → In a NodeJS Blockchain, does this code create a basic peer to peer blockchain that checks the previous block's hash?
- → Are "unconfirmed transactions" of a blockchain's memory pool spread over nodes?
- → How to receive only the transactions about particular set of addresses from blockchain without full syncing?