@@ -7,7 +7,7 @@ ffi = true
7
7
8
8
solc = ' 0.8.21'
9
9
extra_output = [" devdoc" , " userdoc" , " storagelayout" ]
10
- evm_version = ' istanbul '
10
+ evm_version = ' london '
11
11
use_literal_content = true
12
12
fs_permissions = [{ access = " read-write" , path = " ./" }]
13
13
@@ -30,6 +30,26 @@ runs = 256
30
30
runs = 256
31
31
32
32
[dependencies ]
33
- "@fdk" = { version = " 0.3.0-beta" , url = " https://github.com/axieinfinity/foundry-deployment-kit/archive/refs/tags/v0.3.0-beta.zip" }
34
- "@pythnetwork-pyth-sdk-solidity" = { version = " 2.2.0" }
35
- "@openzeppelin-contracts" = { version = " 4.9.3" }
33
+ "@fdk" = { version = " 0.3.4-beta" , url = " https://github.com/axieinfinity/foundry-deployment-kit/archive/refs/tags/v0.3.4-beta.zip" }
34
+ "@pythnetwork-pyth-sdk-solidity" = { version = " 2.2.0" , url = " https://github.com/pyth-network/pyth-sdk-solidity/archive/refs/tags/v2.2.0.zip" }
35
+ "@openzeppelin-contracts" = { version = " 4.9.3" , url = " https://github.com/OpenZeppelin/openzeppelin-contracts/archive/refs/tags/v4.9.3.zip" }
36
+
37
+ [soldeer ]
38
+ # whether soldeer manages remappings
39
+ remappings_generate = false
40
+
41
+ # whether soldeer re-generates all remappings when installing, updating or uninstalling deps
42
+ remappings_regenerate = false
43
+
44
+ # whether to suffix the remapping with the version: `name-a.b.c`
45
+ remappings_version = true
46
+
47
+ # a prefix to add to the remappings ("@" would give `@name`)
48
+ remappings_prefix = " @"
49
+
50
+ # where to store the remappings ("txt" for `remappings.txt` or "config" for `foundry.toml`)
51
+ # ignored when `soldeer.toml` is used as config (uses `remappings.txt`)
52
+ remappings_location = " txt"
53
+
54
+ # whether to install sub-dependencies or not. If true this wil install the dependencies of dependencies 1 level down.
55
+ recursive_deps = true
0 commit comments