drewstone

Results 123 comments of drewstone

The checklist here @tbraun96 should be more thorough, it should contain amongst other things all todo items for each section. Such as **Yarn tests** - [ ] Add a test...

If we convert these into tasks (make this a proper checklist) and then assign deadlines to them. We want to get this into the Universe board.

Yea but it's important @akorchyn to ensure that it adds functionality and not removes any so that one can still use it for ECDSA if one pleases. We have been...

Currently, misbehaviour reports never touch the chain until we have `t+1` signed reports. Then we consider this a full report which we submit to the chain. Therefore, it is still...

Possible useful tool: https://docs.rs/cargo-readme/latest/cargo_readme/

Perhaps along different lines, would this be useful? https://www.bazel.build/

If we had a `keccak256` gadget, then computing intermediate hashes along the merkle tree would be cheaper AFAIK, as long as the source isn't completely outdated. Source: https://ethereum.stackexchange.com/questions/3184/what-is-the-cheapest-hash-function-available-in-solidity

Why does updating hashes cost 20k gas? Shouldn't it be much cheaper since you can do an insertion and update within the same transaction? The SHA256 gas cost is given...

@HarryR looking around, it seems storage updates are only 5000 gas when you change a non-zero value to another non-zero value. You can update [this](https://github.com/HarryR/ethsnarks/blob/ca40b9200ac1cbf2b8d8e8d5606f304e72141afa/appendix/immr.py#L14) to maybe the following: ```...

Do you have any style guidelines/links that you are currently following? As I'm learning c++, I'm interested in starting to familiarize myself with proper standards. Here are some below if...