From 48300b1a8e02dd54e00613827e7450381a339a7a Mon Sep 17 00:00:00 2001 From: Meet Mangukiya Date: Fri, 13 Sep 2024 16:33:53 +0530 Subject: [PATCH] chore: read permissions for contract artifacts --- foundry.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/foundry.toml b/foundry.toml index ef318bbb..c461b994 100644 --- a/foundry.toml +++ b/foundry.toml @@ -14,7 +14,10 @@ deny_warnings = true fs_permissions = [ { access = "read", path = "./balancer"}, { access = "read", path = "./networks.json"}, - { access = "read", path = "./out"} + { access = "read", path = "./out"}, + { access = "read", path = "./node_modules/@0x/contract-artifacts-v2/lib/artifacts"}, + { access = "read", path = "./node_modules/@uniswap/v2-core/build/"}, + { access = "read", path = "./node_modules/@gnosis.pm/safe-contracts/build/artifacts/"}, ] [fmt]