File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,15 @@ contract DeployAlignedToken is Script {
1818 bytes32 _salt = stdJson.readBytes32 (config_json, ".salt " );
1919 address _deployer = stdJson.readAddress (config_json, ".deployer " );
2020 address _foundation = stdJson.readAddress (config_json, ".foundation " );
21- address _claim = stdJson.readAddress (config_json, ".claim " );
21+ address _claimSupplier = stdJson.readAddress (
22+ config_json,
23+ ".claimSupplier "
24+ );
2225
2326 ProxyAdmin _proxyAdmin = deployProxyAdmin (_safe, _salt, _deployer);
2427
2528 console.log (
26- "Proxy Admin deployed at address : " ,
29+ "Proxy Admin deployed at address: " ,
2730 address (_proxyAdmin),
2831 "with owner: " ,
2932 _safe
@@ -35,12 +38,12 @@ contract DeployAlignedToken is Script {
3538 _deployer,
3639 _safe,
3740 _foundation,
38- _claim
41+ _claimSupplier
3942 );
4043
4144 console.log (
4245 string .concat (
43- "Aligned Token Proxy deployed at address : " ,
46+ "Aligned Token Proxy deployed at address: " ,
4447 vm.toString (address (_tokenProxy)),
4548 "with proxy admin: " ,
4649 vm.toString (address (_proxyAdmin)),
You can’t perform that action at this time.
0 commit comments