HaRoLd

Results 163 comments of HaRoLd
trafficstars

Another use case for a Registry / Factory contract is #23

@Shirikatsu some more background thought There are a handful of options: 1) Trusted / PoA, short proofs (compacted transactions / events in merkle tree) 2) Trusted / PoA, long proofs...

`zonetransfer.me` can be used as a test domain for AXFR. Unfortunately it's not possible to perform AXFR transfers via a third-party nameserver, this means all AXFR queries must be done...

On a per-domain basis dnsbrute needs to first perform an `ANY` query. If it returns data for the `ANY` query, then all further queries can be `ANY` queries. If it...

What are the other user enum scripts? The difference between writing a ticket and writing a note to yourself is that when you look at it you know what the...

Can you not just provide a witness for the points `u` coordinate and verify `is_on_curve(u, v) and v == v_from_hash(...)` ? One problem with that is there may be more...

I feel there may be a cleaner way of doing this, I am open to suggestions.

There is also the 'gadget standard' project by QED-it: https://github.com/QED-it/gadget_standard They use [flatbuffers](https://google.github.io/flatbuffers/) to efficiently pass constraints and variables around. For more information, see the [zkinterface specification](https://github.com/QED-it/gadget_standard/blob/master/zkInterface.pdf). They specify the...

Lets convert this to a flatbuffers spec, roughly based on [zkinterface.fbs](https://github.com/QED-it/gadget_standard/blob/master/zkinterface.fbs): To describe the R1CS and variable assignments is something like: ```protobuf table Assignment { value : [ubyte] ; }...

> while direct access to field in memory is cool, it’s unlikely to be handy for existing libraries. With libsnark you should be able to `memcpy` the `[ubyte]` array into...