File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ contract DeployAll is Script {
1919 );
2020 string memory config_json = vm.readFile (path);
2121
22- address _safe = stdJson.readAddress (config_json, ".safe " );
2322 bytes32 _salt = stdJson.readBytes32 (config_json, ".salt " );
2423 address _deployer = stdJson.readAddress (config_json, ".deployer " );
2524 address _foundation = stdJson.readAddress (config_json, ".foundation " );
25+ address _safe = _foundation;
2626 address _claim = stdJson.readAddress (config_json, ".claimSupplier " );
2727 uint256 _claimPrivateKey = stdJson.readUint (
2828 config_json,
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ library Utils {
125125 }
126126
127127 function claimableAirdropProxyDeploymentData (
128- address _proxyAdmin ,
128+ address _proxyAdminOwner ,
129129 address _implementation ,
130130 address _owner ,
131131 address _tokenContractAddress ,
@@ -138,7 +138,7 @@ library Utils {
138138 type (TransparentUpgradeableProxy).creationCode,
139139 abi.encode (
140140 _implementation,
141- _proxyAdmin ,
141+ _proxyAdminOwner ,
142142 claimableAirdropInitData (
143143 _implementation,
144144 _owner,
You can’t perform that action at this time.
0 commit comments