2
I want to create an API service that will trigger my local wallet to generate new account with receive address and return that address to a user.
User => API => my_local_wallet => API => User
The user will have this address and will be able to transfer Bitcoins into that address.
In order to keep my wallet anonymous I would want to create new account addresses. – Dor Bar – 2018-11-19T21:25:49.087
yes that command exactly does it – Boris Ivanov – 2018-11-20T09:23:18.430
But how should I attach the new address with any wallet on the network?
My wallet is on my computer and the API is on a remote server.
What I expect the API to do is to have the account address of my local wallet and assign the new Receiving-Address generated by the API to my wallet address.
Can I do that? – Dor Bar – 2018-11-21T10:53:56.743
I guess its standard scenario: U have webservice which sell Pizza.
Between 2 and 3 there is so ting going on. Should be another peace of software that will trigger my wallet to create this new address automatically. – Dor Bar – 2018-11-25T10:05:46.380
Step 3 is calling bitcoin-cli getnewaddress to generate new bitcoin address – Boris Ivanov – 2018-11-26T10:22:40.510
Who is running this command? – Dor Bar – 2018-11-26T11:17:51.167