Skip to content

Commit 2daea34

Browse files
author
ilitteri
committed
Merge branch 'fix-script' of https://github.com/yetanotherco/aligned_layer into fix-script
2 parents 0f80d0a + 483baaa commit 2daea34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

claim_contracts/script/DeployAll.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

claim_contracts/script/Utils.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)