[api] fix: add forge-std submodule [LIT-890] (#85)

This commit is contained in:
Savarn Dontamsetti (Sav)
2023-03-03 16:06:53 -05:00
committed by GitHub
parent 80b90d25d1
commit 76521f7fc7
4 changed files with 14 additions and 9 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "apps-node/api/contracts/lib/forge-std"]
path = apps-node/api/contracts/lib/forge-std
url = https://github.com/foundry-rs/forge-std

View File

@@ -7,3 +7,4 @@ generated-artifacts
generated-wrappers
foundry-artifacts
foundry-cache
forge-std

View File

@@ -5,16 +5,16 @@ test = 'test'
path_pattern = '*.t.sol'
libs = ["lib"]
remappings = [
'@0x/contracts-utils/=../node_modules/@0x/contracts-utils/',
'@0x/contracts-erc20/=../node_modules/@0x/contracts-erc20/',
'@0x/contracts-zero-ex/=../node_modules/@0x/contracts-zero-ex/',
'@uniswap/v3-core/=../node_modules/@uniswap/v3-core/',
'@uniswap/v3-periphery/=../node_modules/@uniswap/v3-periphery/',
'@kybernetwork/=../node_modules/@kybernetwork/',
'@cryptoalgebra/core/=../node_modules/@cryptoalgebra/core/',
'@cryptoalgebra/periphery/=../node_modules/@cryptoalgebra/periphery/'
'@0x/contracts-utils/=../../../node_modules/@0x/contracts-utils/',
'@0x/contracts-erc20/=../../../node_modules/@0x/contracts-erc20/',
'@0x/contracts-zero-ex/=../../../node_modules/@0x/contracts-zero-ex/',
'@uniswap/v3-core/=../../../node_modules/@uniswap/v3-core/',
'@uniswap/v3-periphery/=../../../node_modules/@uniswap/v3-periphery/',
'@kybernetwork/=../../../node_modules/@kybernetwork/',
'@cryptoalgebra/core/=../../../node_modules/@cryptoalgebra/core/',
'@cryptoalgebra/periphery/=../../../node_modules/@cryptoalgebra/periphery/'
]
allow_paths = ["../node_modules"]
allow_paths = ["../../../node_modules"]
cache_path = 'foundry-cache'
optimizer_runs = 1000000
fs_permissions = [{ access = "read-write", path = "./"}]