Mithril v2403.1
Highlights:
- Public release of Mithril client library in WASM available for developers on npmjs.com.
- Rollout of new
pallas
based chain observer in signer and aggregator. - Support for Cardano
8.7.3
in the signer and the aggregator.
What's Changed
- Deploy P2P network infrastructure by @jpraynaud in #1363
- Add goodbye message for signer node by @dlachaumepalo in #1362
- Fix
dev-preview
network protocol parameters by @jpraynaud in #1369 - Update current documentation for
2347
distribution by @jpraynaud in #1367 - Fix crates.io release credentials by @jpraynaud in #1370
- Announce Mithril client library is released by @jpraynaud in #1371
- Fix
mithril-common
publication on crates.io by @jpraynaud in #1372 - enhance mithril/cardano node communication by @falcucci in #1348
- Fix verbosity log levels by @dlachaumepalo in #1373
- Add timeout on signer node HTTP requests by @dlachaumepalo in #1374
- HTTP message service handles signed entities by @ghubertpalo in #1366
- Upgrade dependencies by @jpraynaud in #1376
- Fix explorer switch aggregator infinite loop by @jpraynaud in #1378
- Implement manual crates publication workflow by @jpraynaud in #1382
- Add
full
feature tomithril-common
by @jpraynaud in #1383 - Adapt
mithril-client
andmithril-common
to compile in WASM by @jpraynaud in #1368 - Make mithril-client examples full crates by @dlachaumepalo in #1379
- Create dummies for SignedEntities by @dlachaumepalo in #1386
- Fix
mithril-client
dependencies by @jpraynaud in #1391 - Greg/1357/upgrade sqlite by @ghubertpalo in #1392
- Fix broken links in documentation by @sfauvel in #1394
- Implement Mithril client WASM API by @jpraynaud in #1389
- Refactor
mithril-client-cli
usingmithril-client
library by @dlachaumepalo in #1395 - Fix breaking change introduced with
mithril-client-cli
usingmithril-client
library by @dlachaumepalo in #1398 - Upgrade dependencies by @jpraynaud in #1399
- Add toggle for network deployment in CI by @jpraynaud in #1402
- Implement
open_message
timeout in aggregator by @jpraynaud in #1401 - Enhance machine readable logs in client by @dlachaumepalo in #1400
- Support for configurable signed entity types in aggregator by @jpraynaud in #1412
- Add toggle for unstable release publication in CI by @jpraynaud in #1415
- Implement manual
npm
publication workflow by @jpraynaud in #1414 - Fix toggle for unstable release publication in CI by @jpraynaud in #1416
- Simplify
mithril-client
CLI by @dlachaumepalo in #1413 - Rust version 1.75.0: fix cargo clippy warning & update dependencies by @dlachaumepalo in #1420
- Activate Cardano node P2P mode in infrastructure by @jpraynaud in #1417
- Fix signer service recommended configuration by @dlachaumepalo in #1419
- Implement tests for WASM library by @dlachaumepalo in #1418
- Update new signer configuration blog post by @dlachaumepalo in #1421
- Implement configurable Chain Observer in aggregator by @jpraynaud in #1423
- Implement mithril client wasm in explorer by @dlachaumepalo in #1426
- Activate
babbage
/conway
eras indevnet
by @jpraynaud in #1427 - Upgrade
testing-preview
VM in infra by @jpraynaud in #1429 - Update
ci.yml
after the deletion ofdoc.yml
by @dlachaumepalo in #1432 - Upgrade Cardano node to
8.7.3
by @jpraynaud in #1430 - Fix
devnet
to run consistently on mac OS by @jpraynaud in #1433 - Use
CardanoChain
era reader in end to end test by @jpraynaud in #1431 - Fix Docker registry for Cardano node by @jpraynaud in #1440
- Fix Cardano configuration in infrastructure by @jpraynaud in #1442
- Fix path on command by @albertodvp in #1438
- Remove contact form in the documentation website by @jpraynaud in #1443
- Support
CardanoTransactions
signed entity type by @jpraynaud in #1437 - Warn missing docs directive missing in Mithril Client Cli by @Alenar in #1444
- Greg/1397/fake aggregator by @ghubertpalo in #1422
- Upgrade dependencies by @jpraynaud in #1445
- Implement fake aggregator in wasm tests by @dlachaumepalo in #1441
- Fix
2803
pre-release distribution by @jpraynaud in #1447
New Contributors
- @falcucci made their first contribution in #1348
- @sfauvel made their first contribution in #1394
- @albertodvp made their first contribution in #1438
Full Changelog: 2347.0...2403.1
Crates Versions
Crate | Version |
---|---|
mithril-aggregator | 0.4.27 |
mithril-aggregator-fake | 0.1.1 |
mithril-client | 0.5.17 |
mithril-client-cli | 0.5.17 |
mithril-client-wasm | 0.1.6 |
mithril-common | 0.2.152 |
mithril-signer | 0.2.103 |
mithril-stm | 0.3.14 |
Networks Compatibility ⚠️
Network | Compatible |
---|---|
release-mainnet | ✔ |
release-preprod | ✔ |
pre-release-preview | ✔ |
testing-preview | ✔ |
Linux Requirements
The Linux binaries target glibc
: to run them or install the .deb
packages you must have glibc
version 2.31+
installed.
Compatible systems include, but are not limited to, Ubuntu 20.04+
or Debian 11+
(Bullseye)).
Verify the authenticity of a downloaded asset
Detailed procedure to verify an asset
- Step 1: Identify the downloaded asset on your computer YOUR_ASSET_FILE
- Step 2: Download the signed checksum file from this link CHECKSUM.asc and save it in the same folder as the asset
- Step 3: In your terminal, go to the asset folder by running:
cd ***YOUR_ASSET_FOLDER***
- Step 4: Then verify the checksum of the asset by running:
sha256sum -c ./CHECKSUM.asc 2>/dev/null | grep ***YOUR_ASSET_FILE***
You must see:
./***YOUR_ASSET_FILE***: OK
- Step 5: Download the public key file from this link public-key.gpg and save it in the same folder as the asset
- Step 6: Then import the GPG public key:
gpg --import ./public-key.gpg
You must see something like:
gpg: key : public key "Input Output / Mithril <mithril@iohk.io>" imported
gpg: Total number processed: 1
gpg: imported: 1
- Step 7: Then verify the GPG signature of the checksum file:
gpg --verify ./public-key.gpg ./CHECKSUM.asc
You must see something like:
gpg: Signature made Mon 05 Dec 2022 04:53:54 PM CET
gpg: using RSA key 35EDE9D47BBA62A2F388E655899ACD26B8BCA0D2
gpg: Good signature from "Input Output / Mithril <mithril@iohk.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: 35ED E9D4 7BBA 62A2 F388 E655 899A CD26 B8BC A0D2
The signature is valid if and only if:
- there is a line with
gpg: Good signature from "Input Output / Mithril <mithril@iohk.io>"
- there is a line with
Primary key fingerprint: 2AC0 7B11 8B23 1443 F544 2D0C 6E2C 1160 3E79 0021
- Step 8:
If you successfully validated all the steps of this process, then you have successfully verified the authenticity of the asset ✔️
If not, contact us at [mithril@iohk.io] and let us know of the outcome of your run of this process⚠️