mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-06 22:14:05 -05:00
We put `cancun` as evm version into the foundry toml by mistake and ended up building on top of it with certain assumptions. Turns out that the network we're deploying to does not support that version so we have to compile with `paris`. This however, also requires a downgrade of the open zeppelin libraries, which in turn requires changes in our code base. Primarily related to initialization of `OwnableUpgradeable` and upgrades via UUPSUpgradeable. This commit makes all the necessary changes.
12 lines
449 B
Plaintext
12 lines
449 B
Plaintext
[submodule "lib/forge-std"]
|
|
path = lib/forge-std
|
|
url = https://github.com/foundry-rs/forge-std
|
|
[submodule "lib/openzeppelin-contracts"]
|
|
path = lib/openzeppelin-contracts
|
|
url = https://github.com/OpenZeppelin/openzeppelin-contracts
|
|
branch = v4.8.3
|
|
[submodule "lib/openzeppelin-contracts-upgradeable"]
|
|
path = lib/openzeppelin-contracts-upgradeable
|
|
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
|
|
branch = v4.8.3
|