From 8d039c6808bd173f4257bb6eb61c8279d3c301b7 Mon Sep 17 00:00:00 2001 From: Savio <72797635+Savio-Sou@users.noreply.github.com> Date: Fri, 7 Jun 2024 02:09:58 +0900 Subject: [PATCH] chore(docs): Update docs homepage (#5198) # Description ## Problem\* Description of Noir on the page is outdated and not fully accurate: - Implies support for SNARK proving systems only - Defines ZKP as Zero-Knowledge _Programs_ ## Summary\* This PR updates the descriptions accordingly. ## Documentation\* Check one: - [x] No documentation needed. - [ ] Documentation included in this PR. - [ ] **[For Experimental Features]** Documentation to be submitted in a separate PR. # PR Checklist\* - [ ] I have tested the changes locally. - [ ] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings. --- docs/docs/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/index.mdx b/docs/docs/index.mdx index 75086ddcdde..a6bd306f91d 100644 --- a/docs/docs/index.mdx +++ b/docs/docs/index.mdx @@ -24,9 +24,9 @@ import TabItem from '@theme/TabItem'; Noir Logo -Noir is a Domain-Specific Language for SNARK proving systems developed by [Aztec Labs](https://aztec.network/). It allows you to generate complex Zero-Knowledge Programs (ZKP) by using simple and flexible syntax, requiring no previous knowledge on the underlying mathematics or cryptography. +Noir is an open-source Domain-Specific Language for safe and seamless construction of privacy-preserving Zero-Knowledge programs, requiring no previous knowledge on the underlying mathematics or cryptography. -ZK programs are programs that can generate short proofs of a certain statement without revealing some details about it. You can read more about ZKPs [here](https://dev.to/spalladino/a-beginners-intro-to-coding-zero-knowledge-proofs-c56). +ZK programs are programs that can generate short proofs of statements without revealing all inputs to the statements. You can read more about Zero-Knowledge Proofs [here](https://dev.to/spalladino/a-beginners-intro-to-coding-zero-knowledge-proofs-c56). ## What's new about Noir?