Sylvain Bellemare
Sylvain Bellemare
Carrying this over from https://github.com/bigchaindb/bigchaindb-driver/issues/140, copying here for convenience: Some questions: * Can we detect the missing header file via `setup.py`? * Can we package the header file as part...
Being able to pass multiple fulfillments at once would be convenient. E.g., given: ```python alice_ed25519 = Ed25519Fulfillment(public_key=alice.verifying_key) bob_ed25519 = Ed25519Fulfillment(public_key=bob.verifying_key) threshold_sha256 = ThresholdSha256Fulfillment(threshold=2) ``` currently: ```python threshold_sha256.add_subfulfillment(alice_ed25519) threshold_sha256.add_subfulfillment(bob_ed25519) ``` proposal:...
Support for strings would be convenient.
Currently, the `'type'` field only shows either `'condition'` or `'fulfillment'`, whereas the `'type_id'` is set according to the rfc. Example: ```python >>> Condition.from_uri('cc:2:2b:mJUaGKCuF5n-3tfXM2U81VYtHbX-N8MP6kz8R-ASwNQ:146').to_dict() {'bitmask': 43, 'hash': 'BGcqXDoe5DeQB87es8AQEDWr3A6Dvjuq3egZF5sZ1qfy', 'max_fulfillment_length': 146, 'type':...
On a related note, why not provide an `__init__` to `Condition`? Such that instead of the following ```python condition = Condition() condition.type_id = type_id condition.bitmask = bitmask condition.hash = _hash...
Empty docstrings were added to simplify the work of pulling the docstrings via `automodule`. See https://github.com/bigchaindb/cryptoconditions/pull/33#issuecomment-257911725 Now, we can document those classes.
Opening this issue as an entry point to discuss the implementation of whatever is necessary to provide reproducible builds for enclave binaries (`librust_cosmwasm_enclave.signed.so and `tendermint_enclave.signed.so`). The underlying assumption is that...
See https://github.com/interledgerjs/five-bells-condition/blob/master/src/types/threshold-sha256.js#L246 for instance.