From 6332275870660ade8d86d50c725f6c2273ea4fc1 Mon Sep 17 00:00:00 2001 From: wavey Date: Mon, 22 Nov 2021 09:38:40 -0500 Subject: [PATCH] feat: week 76 --- js/src/getMerkleRoots.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/src/getMerkleRoots.ts b/js/src/getMerkleRoots.ts index cae1ef58a..0b70404c3 100644 --- a/js/src/getMerkleRoots.ts +++ b/js/src/getMerkleRoots.ts @@ -36,7 +36,7 @@ networks.forEach((network) => { const roots = {}; reports.forEach(([week, report]) => { - if (week != 75) return; + if (week != 76) return; // Find the latest week of claims here: https://github.com/balancer-labs/bal-mining-scripts/tree/master/reports config['week'] = week; claim_data['config'] = config; claim_data['tokens_data'] = tokens_data; @@ -68,7 +68,7 @@ networks.forEach((network) => { }); const claim_data_string = JSON.stringify(claim_data, null, 4); fs.writeFile( - `../yearn/strategy-ssb/scripts/${network}.json`, + `../strategy-ssb/scripts/${network}.json`, // This is target file where generated proofs will be written claim_data_string, function (err) { if (err) {