<div dir="ltr">Hey Jonas,<div><br></div><div>I think your analysis of what (some) users need is a good one.</div><div><br></div><div>We&#39;ve discussed this before so I know you prefer your current approach, but I personally would take a slightly different path to reach the same end:</div><div><ol><li>Support serving of SPV wallets from pruned storage. This means some protocol upgrades, BIPs, etc. It helps all SPV wallets, including on phones.</li><li>Then make a bitcoinj based desktop wallet app, that contains a bundled bitcoind.</li><li>Make the app sync TWO wallets simultaneously, one from the P2P network as today, and another from the local bitcoind via a local socket (or even just passing buffers around internally)</li><li>The app should then switch from using the wallet synced to P2P to the wallet synced to localhost when the latter is fully caught up, and back again when the local node is behind.</li><li>If there&#39;s a discrepancy, alert the user.</li></ol><div>There are big advantages of taking this path! They are:</div></div><div><ul><li>The switching back and forth between local full-security mode (which may be behind) and remote SPV security (fully synced) is instant and transparent to the user. This is important for laptop users who don&#39;t run a local node all the time. The different audit levels can be reflected in the UI in some way.<br><br></li><li>The bitcoinj wallet code already has support for things like multi-sig, BIP32, seed words, micropayment channels, etc. You can disable Bloom filtering if you like (download full blocks).<br><br></li><li>You can do a local RPC or JNI/JNA call to get fee estimates, if wanted.<br><br></li><li>The modern JVM tools and languages are much, much more productive than working with C++.</li></ul><div><br></div></div><div>If you want a thing that runs a home server, then the best way to do that IMO would be to bundle Tor and make it auto-register a Tor hidden service. Then you can just define a QR code standard for &#39;pairing&#39; a wallet to a .onion address. Any bitcoinj based wallet can sync to it, and as it&#39;s your own node, you can use a Bloom filter sized to give virtually no false positives. No additional indexing is then required.</div></div>