-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiler_config.json
38 lines (38 loc) · 1.27 KB
/
compiler_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"language": "Solidity",
"settings": {
"optimizer": {
"enabled": true,
"runs": 9999
},
"viaIR": true,
"outputSelection": {
"*": {
"": ["ast"],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": [
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"zkBridge-messaging-interfaces/=lib/zkBridge-messaging-interfaces/",
"zkBridge-lightClient/=lib/zkBridge-lightClient/",
"v2-testnet-contracts/=lib/v2-testnet-contracts/",
"optimism-bedrock-contracts/=lib/optimism-bedrock-contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/"
]
}
}