vbuterin
vbuterin
Thanks for these! Have not seen the Card Tec adapter before! My main issue with the packable jackets is: how well do they retain their warmth after many rounds of...
This is a good question, and I actually think it ties in well with the ideas in the post. This is because the thing that you are measuring (for "wealth")...
Just use publish.py without the --sync command.
I don't think any of us are under the illusion that a strict 1:1 mapping between gas and microseconds is feasible. All I personally care about is gas counting being...
Elliptic curve pairings in general: https://medium.com/@VitalikButerin/exploring-elliptic-curve-pairings-c73c1864e627 BN128: https://github.com/ethereum/EIPs/issues/197 BLS-12-381: https://z.cash/blog/new-snark-curve/ https://github.com/zkcrypto/pairing/tree/master/src/bls12_381
> @vbuterin in the twist function of bn128 and optimized_bn128, we are multiplying x by w^2 and y by w^3, whereas we should actually be dividing right? I think this...
> bls, optimized_bls I'd say keep the names as `bls12_381`. "BLS" by itself seems like it would refer to Boneh-Lynn-Shacham signatures, which can be done over any pairing-equipped elliptic curve...
OK, I think I figured it out. In the `bn128` curve, `b2 = b / w**6`. In the `bls_12_381` curve, `b2 = b * w**6`. That's why it's different in...
I guess if the goal is to ensure all points are of the same "format", then just use (0, 0) in the "basic" code and (0, 0, 0) in the...