Antoine Rondelet
Antoine Rondelet
Note that, another approach to expose the field extension degree is to refactor the way polynomial coefficients are handled (see here for instance: https://github.com/scipr-lab/libff/blob/master/libff/algebra/fields/fp3.hpp#L50). In fact, switching from individual attributes...
> Is building on Windows something you've had to look into @AntoineRondelet ? No, unfortunately I haven't looked into that, and am not knowledgeable (at all) about Windows. ----------- Thanks...
Ah yes good catch @dark64 thanks for this. I actually updated it on https://github.com/clearmatics/libsnark/pull/37 but forgot to propagate here...
@ValarDragon is there any plan to release a new version of libsnark at some point in the near future? If so, I think this PR should probably target `staging` for...
Great, thanks @yelhousni for your PR (#71)! > Is there any plans to support other curves like: BLS12-381, BLS12-377/BW6-761? Yes, that's something I meant to do (been side tracked by...
To add to this, here's basically what I'm doing: ```python class Thing(PolymorphicModel): id = models.UUIDField( default=uuid.uuid4, unique=True, primary_key=True, editable=False ) created = models.DateTimeField(auto_now_add=True) class Meta: ordering = ["-created"] ``` I...
May be related to https://github.com/typeddjango/django-stubs/issues/1023
+1 That would be great!
Current implementation for the Transaction Relay contract: https://github.com/AntoineRondelet/blockchain-privacy/blob/master/contracts/TransactionRelay.sol
When the event is added to the Mixer contract, it can be useful to implement a python script in charge of listening of all the Broadcast events. We can imagine...