From 1c0e89d75c397d95f5ad80c809d2e55d7dc35a24 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 7 Feb 2022 15:45:30 +0000 Subject: [PATCH] Add a Halo2-focused DAG --- index.html | 1 + zcash-issue-dag.py | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/index.html b/index.html index 9b8775f6..74173635 100644 --- a/index.html +++ b/index.html @@ -10,5 +10,6 @@

ECC core team DAG

ECC wallet team DAG

ZF DAG

+

Halo2-focused DAG

diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index 3f204f09..35626882 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -33,6 +33,11 @@ CORE_REPOS = { 344239327: ('zcash', 'pasta_curves'), } +HALO2_REPOS = { + 290019239: ('zcash', 'halo2'), + 344239327: ('zcash', 'pasta_curves'), +} + WALLET_REPOS = { 85334928: ('zcash', 'librustzcash'), 151763639: ('zcash', 'zcash-android-wallet-sdk'), @@ -50,6 +55,7 @@ ZF_REPOS = { REPO_SETS = { 'core': CORE_REPOS, + 'halo2': HALO2_REPOS, 'wallet': WALLET_REPOS, 'zf': ZF_REPOS, }