Skip to content

Commit

Permalink
fix: TokenBox (#3003)
Browse files Browse the repository at this point in the history
Token box was broken after unboxing because authwit and safe_math deps
were not updated.
  • Loading branch information
benesjan authored Oct 24, 2023
1 parent 91813a5 commit 1ad6647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/cli/src/unbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async function updatePackagingConfigurations(
* @param log - logger
*/
async function updateNargoToml(tag: string, outputPath: string, log: LogFn): Promise<void> {
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');
Expand Down

0 comments on commit 1ad6647

Please sign in to comment.