Bitcoin Forum
May 08, 2024, 09:01:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: is there any bitcoin commandline tool that give me this info without fullnode?  (Read 514 times)
eximalus (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 17
Merit: 1


View Profile
December 11, 2016, 01:52:23 PM
 #1

I need to get number of confirmation of a transaction. I know I can do this using bitcoin core but I need a tool that do not need a local copy blockchains. also I can not use any 3rd party API. it should work in linux.
1715202112
Hero Member
*
Offline Offline

Posts: 1715202112

View Profile Personal Message (Offline)

Ignore
1715202112
Reply with quote  #2

1715202112
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715202112
Hero Member
*
Offline Offline

Posts: 1715202112

View Profile Personal Message (Offline)

Ignore
1715202112
Reply with quote  #2

1715202112
Report to moderator
1715202112
Hero Member
*
Offline Offline

Posts: 1715202112

View Profile Personal Message (Offline)

Ignore
1715202112
Reply with quote  #2

1715202112
Report to moderator
1715202112
Hero Member
*
Offline Offline

Posts: 1715202112

View Profile Personal Message (Offline)

Ignore
1715202112
Reply with quote  #2

1715202112
Report to moderator
ranochigo
Legendary
*
Offline Offline

Activity: 2968
Merit: 4170



View Profile
December 11, 2016, 03:03:22 PM
 #2

I need to get number of confirmation of a transaction. I know I can do this using bitcoin core but I need a tool that do not need a local copy blockchains. also I can not use any 3rd party API. it should work in linux.
Main problem there. It is quite hard if you choose not to use a third party API.

If you are facing storage constraints only, I would recommend running Bitcoin Core with pruning turned on. If not, would a SPV client suffice? Electrum provides a command line and it doesn't require much resources. That is the best I can think of.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
eximalus (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 17
Merit: 1


View Profile
December 11, 2016, 03:18:11 PM
 #3

I need to get number of confirmation of a transaction. I know I can do this using bitcoin core but I need a tool that do not need a local copy blockchains. also I can not use any 3rd party API. it should work in linux.
Main problem there. It is quite hard if you choose not to use a third party API.

If you are facing storage constraints only, I would recommend running Bitcoin Core with pruning turned on. If not, would a SPV client suffice? Electrum provides a command line and it doesn't require much resources. That is the best I can think of.
electrum doesn't provide confirmation counts  Sad
Quote
I would recommend running Bitcoin Core with pruning turned on
could you please explain more? thanks Cheesy
ranochigo
Legendary
*
Offline Offline

Activity: 2968
Merit: 4170



View Profile
December 11, 2016, 03:49:22 PM
 #4

I need to get number of confirmation of a transaction. I know I can do this using bitcoin core but I need a tool that do not need a local copy blockchains. also I can not use any 3rd party API. it should work in linux.
Main problem there. It is quite hard if you choose not to use a third party API.

If you are facing storage constraints only, I would recommend running Bitcoin Core with pruning turned on. If not, would a SPV client suffice? Electrum provides a command line and it doesn't require much resources. That is the best I can think of.
electrum doesn't provide confirmation counts  Sad
Oops, I just noticed that. So sorry.
Quote
I would recommend running Bitcoin Core with pruning turned on
could you please explain more? thanks Cheesy
Pruning allows the older blocks to be deleted safely. They are useless after they are verified to be legit. To enable this, you can insert -prune=1000 into bitcoin.conf to enable the last 1000mb of blocks to be saved.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!