Hi, do 1-block reorgs exist by protocol rules?
In bitcoin reorgs happen when the server sees a chain that has more POW, aka longer. Therefore it needs to be at least 2 blocks. A fork that differs by 1 block would have the same POW.
I think it is the same with zcash.
Hi, apologies if this has been answered already (quickly skimmed through the discussion here). I was wondering whether the possibility of using react-native-macos and react-native-windows instead of Electron has been looked into, allowing for more code reuse between zecwallet-mobile and zecwallet-lite.
Iām not very knowledgable on the specifics of performance/security between react-native-macos/windows compared to Electron, but this could be an interesting area to explore if working on the stack anyway, and could be a nicer system for Rust bindings; react-native-desktop-qt appears to have been abandoned though, so Electron would likely still be needed for Linux.
This has an effect on reliability and privacy. Any shielded transaction spending a note in a once-confirmed transaction that gets reorged away will become invalid (because the anchor changes), so thereās some additional probability that these transactions will fail. When that happens, the spent noteās nullifier will be exposed twice, first in the first attempt to spend and then again once the transaction is repeated, making it possible to link the two transactions together.
Will the wallet use the latest blockās anchor to generate all transactions? If not, an attacker can easily tell when the wallet is spending a note in the latest block since they will be distinguished by using the latest blockās anchor vs. an anchor further back. If yes, then all of the walletās transactions will suffer from the unreliability described above, not just 1-confirmation spends.
@adityapk00 It seems as though there are some open questions regarding privacy and security about this recent change.
Iām curious how you came to the decision to implement it and if you consulted any experts in the field prior to doing so. And if not, if you would be willing to roll back the change until itās been reviewed more thoroughly.
I did consult with the ECCās wallet team before making this change. Additionally, I think this is also the behaviour of the official zcashd wallet. It allows you to spend funds from the previous block (i.e., 1 conf), and seems to pick the latest witness (i.e, witness from the previous block). I modeled ZecWalletās behaviour to be the same as zcashdās.
With the latest updates, the lightclients are subject to approx. the same reorg risk as the zcashd wallet.
Isnāt zcashd subject to the same privacy/reliability problems?
I believe this behavior is possible with any wallet, inheriting from Bitcoin. My concern was not that it could, but if it should.
If @earthrise (a ECC core dev) and other community members claim it can have a negative impact on reliability or privacy of transactions, and with ZecWallet being such a prominent wallet, I think itās at least worth taking the time to discuss further.
Iām not a core dev, or on the ECC wallet team. Iām simply trying to understand the benefit vs tradeoffs of this approach.
@adityapk00, itās true that zcashd
uses minconf = 1 by default.
However, the recommendations are to use 15.
I think you could simply offer the user the option to set the value. Thatās what I do in ZWallet.
Btw, I was commenting on this part ealier. 1-block reorg cannot be detected because they are not reorgs but valid forks. Letās say, there is block A and then both miner B & C build on top of it.
There would be 2 forks: A-B and A-C. Both of them have the same POW and are equally valid. The network is split. Some servers will follow A-B, others A-C. It depends on which block they received first. Itās by design and entirely expected. In the original bitcoin paper, Satoshi talks about the gap between honest and attacker. There is no gap when the length is the same.
The race between the honest chain and an attacker chain can be characterized as a Binomial Random Walk. The success event is the honest chain being extended by one block, increasing its lead by +1, and the failure event is the attackerās chain being extended by one block, reducing the
gap by -1.
Now, even if you could detect potential reorgs, i.e. you see that zcashd has both chaintips, it could be too late to do anything. Your transaction is already out.
Scenario:
- zcashd has A-B,
- user posts tx based on anchor B
- zcashd now sees A-C
- zecwallet detects A-C (hypothetically)
- ā¦ ouch too late.
This is not correct.The 2 blocks B
and C
do not have the same PoW, they have the same difficulty target. One of them will have slightly more PoW, and zcashd will deterministically reorg to that block.
Please see Get latest block from zcashd by adityapk00 Ā· Pull Request #348 Ā· zcash/lightwalletd Ā· GitHub
For eg, this block on the zcash mainnet was reorgād at the same height:
{
"hash":"0000000000adca687b62d4915836fc8fd5d5dea6b3923942bef3b81b071f8d0f",
"height":1344662,"level":"warning","msg":"REORG/Current Block",
"reorg":0,"time":"2021-08-05T13:51:37-07:00"}
If they have the same difficulty target, they have the same POW. A block earns POW by passing the hash threshold criteria. It doesnāt matter whether it is just barely or by a lot.
The reason for that is to avoid miners continuing work secretly after a block is mined and later introducing a block that rolls back the blockchain.
I remember this because when I implemented a full validating bitcoin server the formula came up.
This is covered by a regression test in bitcoin core.
For clarification, the ECC wallet team was informed of the change but didnāt advise on the one-confirmation setting. Our apologies @adityapk00 if you were looking for more input than we provided.
The default behavior of zcashd is minconf=1 but as @hanh indicated our recommendation is 15. We had intended to set a default of 10 but have not made the change as of yet.
Yes, and that is a long-standing bug: choose less recent JoinSplit, Spend, and Action anchors Ā· Issue #1614 Ā· zcash/zcash Ā· GitHub
Itās always been the case that we recommend choosing anchors several blocks back. Iām sorry if there was a miscommunication about that.
I completely forgot zcashd let you do that (even though Iāve used that bug many times! itās convenient!). Unfortunately because of that bug there will probably be a lot of recent-anchor transactions on the chain that you can tell didnāt from the mobile wallets because of the recent anchor, so we should plug that privacy leak in zcashd. It doesnāt necessarily have to be 10-15 confirmations if users are understanding and accepting of a speed-privacy trade-off, but we should look into how frequent N-block reorgs are. Thereās some more discussion on the zcashd ticket about the privacy leaks.
Can Zcash move to account based model for shielded transactions like ethereum? Whatās the technical limitation
Is there any reason why the ticket isnāt prioritized in ECC sprint? Wondering if we can for all the benefits. I was thinking before ECC looks into scalability & PoS, maybe ECC can dedicate some resources to closing some of the tickets that improves privacy & usability.
Project Milestone 3
Zecwallet is now about 2/3rd of the way through the this grant. Over the past 2 months, several features have been added to Zecwalletās family of apps (See upstream in this thread for updates)
- Mempool support for instant notifications
- Much improved test coverage and build infra
- LightwalletD compatibility and improvements like price API, Mempool streaming
- Improved perf, including support for large wallets
Hereās the full list of milestones and their status
Whatās next
For the last milestone (Milestone 4), weāll focus on getting Orchard/Halo2 done and shipped in the wallet, including all the orchard features like unified addresses.
Thanks @adityapk00. Are you planning to support Shielded by Default - using auto shielding in addition to UAs?
(I saw that blog post earlier, havenāt had a chance to read it yet)
Yes, very much so.
Final Milestone Change
Originally, the final milestone for this grant was the Halo2/Orchard update in Zecwallet, including unified addresses and auto shielding, which was scheduled to be completed by Oct 17th. However, due to the Halo2 timeline getting delayed to Jan 2022, weāre in a bit of a spot.
We didnāt want to delay this grant for 3 months, and have the team idle, nor would it make sense to mark this grant as ādoneā with only testnet support for Halo2.
So, Zecwallet consulted with the @ZcashGrants , and weāve together agreed to to swap out the deliverables for the final milestone for this grant. The Halo 2/Orchard features will be done as a part of a new grant next year, and weāll pull in some work we were planning on doing from next year into the current grant.
More specifically: Weāll replace the following deliverables in the final milestone:
- Unified Addresses in wallet
- Halo 2 / Orchard support
with the following:
- Foundational work for Halo2/ Orchard
- Multiple z and t address support in mobile wallets
- Import / Export private / viewing keys directly (Including restore from private key instead of seed phrase for zcashd/Zecwallet Fullnode compatibility)
- New Privacy options in mobile wallet:
- Download None / Wallet / All memos
- Use different lightwalletd servers to download blocks / download memos / sending txns, so no one server has all your info.
- Manual control over t-address shielding.
The timeline (deliver by Oct 17th) and the budget will remain the same