Is there a similar server like Bitcoin core that truly supports accounts?

0

1

Is there a similar server like Bitcoin core that truly supports accounts (and also RPC)?

I was hoping for something like the ethereum geth node. where each account has it's address and individually password protected.

kobik

Posted 2018-02-06T16:49:45.700

Reputation: 169

Answers

4

Bitcoin Core since 0.15 supports multiwallet.

That is probably much closer to what people expected the accounts feature to be (and confusion about it is one of the reasons for deprecating it).

Using multiwallet, one Bitcoin Core instance can maintain multiple entirely separated wallets simultaneously. They all have their own addresses, own keys, own transactions, own coins, own labels.

This is in contrast to the older accounts feature, where the keys, coins, and labels are shared across all accounts - only a balance was maintained per account.

Pieter Wuille

Posted 2018-02-06T16:49:45.700

Reputation: 54 032

This is very new and suprising to me! I was lead to think every instance can handle a single wallet with the '-wallet' switch. Can you please give RPC exaple on how to query a specific wallet for getbalance for example or other commands without restarting the deamon? Im on 0.15.1kobik 2018-02-06T19:24:16.020

Thanks, the big problem with this new feature is that I can't create new wallets via RPC. seems like I need some hack/workaround to (somehow) create a new empty wallet-xxx.dat, write a new wallet entry in the bitcoin.conf file, and restart Bitcoin Core. Am I right?kobik 2018-02-07T11:30:40.913

please see my related question: RPC call to re-read config file?

kobik 2018-02-07T14:26:38.320

That doesn't exist. For now, you'll need to restart if you want to add or remove wallets. The ability to change the wallets at runtime is being worked on for a later release.Pieter Wuille 2018-02-07T18:53:20.373

Is there currently a limit to how many wallets I can load?kobik 2018-02-09T10:42:54.983