CyberOrange
CyberOrange
Muta has not been updated much now, but it should be feasible to use the code in the reference, or update the dependencies of muta by yourself. [Axon](https://github.com/nervosnetwork/axon) is developed...
This problem is because zeroize v0.9.3 has been cleared in crate. You can manually download zeroize v0.9.3 and put it under `~/.cargo/registry/.../zeroize-0.9.3`, such as `~/.cargo/registry/src/mirrors.tuna.tsinghua.edu.cn-df7c3c540f42cdbd/zeroize-0.9.3`,and zeroize_derive `~/.cargo/registry/src/mirrors.tuna.tsinghua.edu.cn-df7c3c540f42cdbd/zeroize_derive-0.9.3`,link is here [zeroize-0.9.3](https://github.com/iqlusioninc/crates/releases/tag/zeroize%2Fv0.9.3).
> > This problem is because zeroize v0.9.3 has been cleared in crate. You can manually download zeroize v0.9.3 and put it under `~/.cargo/registry/.../zeroize-0.9.3`, such as `~/.cargo/registry/src/mirrors.tuna.tsinghua.edu.cn-df7c3c540f42cdbd/zeroize-0.9.3`,and zeroize_derive `~/.cargo/registry/src/mirrors.tuna.tsinghua.edu.cn-df7c3c540f42cdbd/zeroize_derive-0.9.3`,link is...
https://github.com/nervosnetwork/ckb-sdk-js/blob/develop/packages/ckb-sdk-core/examples/sendSimpleTransaction.js , Does this help?
Why use MMR to record the commitment of all cells instead of using an SMT to record the commitment of the current live cells (like a state-tree)? Since we already...
> Due to algorithmic differences, SMT requires more storage space than MMR (around 2.2x) and has poorer performance in updating commitments (around 3x) but why not just keep current live...
> I didn't quite understand this optimization suggestion, could you elaborate a bit more? Essentially there is no big difference between SMT and MMR, they are both merkle trees, except...
> Sorry, I misunderstood your original comment, there is a question: a cell was created in block `N`, current tip is `N + M`, and this cell is live, how...
> If I understand correctly, we also need to provide non-membership proof of all the blocks between N + 1 and N + M, to prove that the cell has...
> 1. created time: use a blockHash proof + a transaction proof or a non-membership proof at height n-1 and a membership proof at height n. I need to add...