From 45fdb36c22e5d915a7fd8cc27cb6cb8103c99887 Mon Sep 17 00:00:00 2001 From: Andrew Westberg Date: Tue, 27 Aug 2024 17:16:44 +0000 Subject: [PATCH] Add cncli project as reference code for VRF signatures and leaderlog consensus --- .gitignore | 21 +++++++++++++++++++++ README.md | 1 + 2 files changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d317873 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +# Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# RustRover +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +.idea/ diff --git a/README.md b/README.md index aae7eae..486387c 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ At present, most of the work around Amaru is spread across different repositorie | [uplc](https://github.com/aiken-lang/aiken/tree/main/crates/uplc) | An Untyped Plutus Core (UPLC) parser and CEK machine for evaluating Plutus V2 and Plutus V3 on-chain scripts. | | [mithril](https://github.com/input-output-hk/mithril) | A stake-based threshold multi-signatures protocol. | | [cardano-multiplatform-library](https://github.com/dcSpark/cardano-multiplatform-lib) | A Rust implementation of various Cardano data and crypto primitives. | +| [cncli](https://github.com/cardano-community/cncli) | A Rust implementation of Cardano CLI tools including VRF functionality, and some consensus tooling like leaderlogs. |