From 1276f3f912989806429f61e0fa47cf4c706ab6e1 Mon Sep 17 00:00:00 2001 From: Utkarsh Bhimte Date: Sat, 16 Nov 2024 13:19:11 +0530 Subject: [PATCH] chore: update .gitignore to include deploy.sh and add remappings for OpenZeppelin contracts --- .gitignore | 2 ++ foundry.toml | 2 +- remappings.txt | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 remappings.txt diff --git a/.gitignore b/.gitignore index 85198aa..cf66990 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ docs/ # Dotenv file .env + +deploy.sh \ No newline at end of file diff --git a/foundry.toml b/foundry.toml index 25b918f..e4ab464 100644 --- a/foundry.toml +++ b/foundry.toml @@ -3,4 +3,4 @@ src = "src" out = "out" libs = ["lib"] -# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options +# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options \ No newline at end of file diff --git a/remappings.txt b/remappings.txt new file mode 100644 index 0000000..5be0b51 --- /dev/null +++ b/remappings.txt @@ -0,0 +1,2 @@ +@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/ +@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/ \ No newline at end of file