Post
Topic
Board Development & Technical Discussion
Merits 2 from 2 users
Topic OP
Architecture and code for retrieving Wallet Address balance and transactions
by
FiNaR76
on 07/02/2020, 05:14:06 UTC
⭐ Merited by vapourminer (1) ,ETFbitcoin (1)
Hello,

I am trying to build a simple app that retrieve Bitcoin balance, transactions and fee for a given Public Wallet Address...

for example, if we get the following Address: 1GB2CgZ9a4yXFaaN2YfmTKuhZbomkpUfbH btc.com api woudl give me exactly what I need with two API calls:

- Balance: https://chain.api.btc.com/v3/address/1GB2CgZ9a4yXFaaN2YfmTKuhZbomkpUfbH
- Transactions/fees: https://chain.api.btc.com/v3/address/1GB2CgZ9a4yXFaaN2YfmTKuhZbomkpUfbH/tx

Because these services changes and often have some limitations (e.g. # of API calls per second/per IP), I would prefer to build the same results on my infrastructure...

my next steps are:

1) install a bitcoin Node in my infrastructure (do I need a full node? I would prefer to have something "lighter" to save data storage and bandwidth)....

2) create a code that interact with the node and retrieve what I need...

Because I am a newbie, is there anyone who can address me how to achieve my end goal? Smiley

sorry, I am not sure where to start....

Thank you all!