1
I want to run full Bitcoin node ( via bitcoind ) in a "secured listen-only" fashion, ie if anybody gets access to the server he gets nothing.
At the same time I want to be able to execute RPC calls such as: - listtransactions ( to get transactions for my specific wallet ) - gettransaction
Is it possible? If yes, how to achieve this? No sending should be possible from my wallet, of course.
I assume that using a key -disablewallet won't allow me to use listtransactions rpc call.
Thanks
ok, but how exactly to do it? what rpc call to use / what change in the config / what parameter in command line for bitcoind?
Will definitely look by myself right now, but if you already know it, please tell me.. – user3489820 – 2018-03-05T20:04:53.907
1Use the
importaddressRPC, so it never sees the private key – MeshCollider – 2018-03-05T20:06:17.677Hah..Thanks... I was checking outdated API: https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list
– user3489820 – 2018-03-05T20:18:38.207Will try out :) Hope everything will work.. – user3489820 – 2018-03-05T20:19:11.663