From 99bbc6ce12f127bc9edbdaa7262da97eb7333c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bene=C5=A1?= Date: Tue, 24 Oct 2023 16:43:30 +0200 Subject: [PATCH] fix: TokenBox (#3003) Token box was broken after unboxing because authwit and safe_math deps were not updated. --- yarn-project/cli/src/unbox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/cli/src/unbox.ts b/yarn-project/cli/src/unbox.ts index 93ca80521dc8..2173fb62ef24 100644 --- a/yarn-project/cli/src/unbox.ts +++ b/yarn-project/cli/src/unbox.ts @@ -165,7 +165,7 @@ async function updatePackagingConfigurations( * @param log - logger */ async function updateNargoToml(tag: string, outputPath: string, log: LogFn): Promise { - const SUPPORTED_DEPS = ['aztec', 'value_note']; + const SUPPORTED_DEPS = ['aztec', 'value_note', 'safe_math', 'authwit']; const nargoTomlPath = path.join(outputPath, 'src', 'contracts', 'Nargo.toml'); const fileContent = await fs.readFile(nargoTomlPath, 'utf-8');