mithril
mithril copied to clipboard
Stake-based threshold multi-signatures protocol
## Issue When a Client restores a snapshot of the Cardano node database, we need to be able t: * Provide a path where the `validated` unpacked files will be...
## Issue We need to display a `Security Indicator` for the Certificate in the [Mithril Explorer](https://mithril.network/explorer/) and the formulas used to compute it (displayed when hovering the protocol parameters). Our...
## Issue We need to optimize the computation of the `Snapshot Digest` that takes place on the Signer and Aggregator. To do so, we can make use of memoization so...
## Issue The Aggregator and Signers need to be able to produce a valid `Certificate Chain` when an `Epoch gap` occurs (i.e. when no certificate has been produced for an...
## Why Following the discussion #1606, we want to advertise the supported Cardano node versions for the Mithril signer. ## What Add a `cardano-min-versions.json` file at the root of the...
## Why Following the PoC for Light Wallet use case implementation #1313, we want to make the signature of the Cardano Transactions type of data signed by Mithril network is...
## Content This PR includes a new file `cardano-min-versions.json` at the root of the repository. It contains the list of the minimum supported Cardano node versions for each network. ##...
## Content This PR includes fixes for: - `get_current_non_certified_open_message`: the `open_message.is_expired` condition was never verified. - `list_allowed_signed_entity_types_discriminants`: if the same valid `signed_entity_types` was provided several times in the configuration, it...
## Why We want to retrieve blocks from the Cardano node by using the `chainsync` mini protocol instead of reading the immutable files: this will allow us to get data...
## Why In order to provide faster proof generation for the Cardano transactions, we need to use Block range Merkle trees roots stored in the databases of the aggregator. ##...