Bitcoin Stack Exchange is a question and answer site for Bitcoin crypto-currency enthusiasts. It only takes a minute to sign up.
Sign up to join this communityAnybody can ask a question
Anybody can answer
The best answers are voted up and rise to the top
Since some time bitcoind can have more wallets, there are commands: https://bitcoincore.org/en/doc/22.0.0/rpc/wallet/loadwallet/ and https://bitcoincore.org/en/doc/22.0.0/rpc/wallet/listwallets/
Does it mean that it is possible to run multiple wallets in parallel with single blockchain?
If so how do I send coins from particular wallet then? Eventually how do I list transactions from particular wallet?
Does it mean that it is possible to run multiple wallets in parallel with single blockchain?
Yes.
If so how do I send coins from particular wallet then? Eventually how do I list transactions from particular wallet?
Depending on the context:
- With
bitcoin-cli
, you have to add the-rpcwallet=WALLETNAME
command line argument if there is more than 1 wallet loaded. - With
bitcoin-qt
(the GUI), there is a dropdown UI element for selecting the wallet. - With the JSON-RPC protocol exposed by
bitcoind
(and used bybitcoin-cli
), there is a different HTTP endpoint for every wallet (http://localhost:8332/wallet/WALLETNAME
instead of justhttp://localhost:8332
).
When only one wallet is loaded, none of this is needed, and every request will be directed to the one loaded wallet.
You can get bonuses upto $100 FREE BONUS when you:
π° Install these recommended apps:
π² SocialGood - 100% Crypto Back on Everyday Shopping
π² xPortal - The DeFi For The Next Billion
π² CryptoTab Browser - Lightweight, fast, and ready to mine!
π° Register on these recommended exchanges:
π‘ Binanceπ‘ Bitfinexπ‘ Bitmartπ‘ Bittrexπ‘ Bitget
π‘ CoinExπ‘ Crypto.comπ‘ Gate.ioπ‘ Huobiπ‘ Kucoin.
Comments