File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ deploy-token: ## 🚀 Deploy the token contract
3434update_token_proxy :
3535 @NEW_TOKEN_PROXY=$$(jq -r '.tokenProxy' "script-out/deployed_token_addresses.json" ) && \
3636 jq --arg new_proxy " $$ NEW_TOKEN_PROXY" ' .tokenProxy = $$new_proxy' $(CONFIG ) > $(CONFIG ) .tmp \
37- && mv $(CONFIG ) .tmp $(CONFIG ) \
37+ && mv $(CONFIG ) .tmp $(CONFIG )
3838
3939upgrade-token : # # 🚀 Upgrade the token contract
4040 cd script && \
Original file line number Diff line number Diff line change @@ -36,9 +36,7 @@ contract DeployAlignedToken is Script {
3636 );
3737
3838 string memory deployedAddressesJson = "deployedAddressesJson " ;
39- vm.serializeAddress (deployedAddressesJson, "tokenProxy " , address (_tokenProxy));
40- vm.serializeAddress (deployedAddressesJson, "proxyAdmin " , Utils.getAdminAddress (address (_tokenProxy)));
41- string memory finalJson = vm.serializeAddress (deployedAddressesJson, "safe " , address (_safe));
39+ string memory finalJson = vm.serializeAddress (deployedAddressesJson, "tokenProxy " , address (_tokenProxy));
4240
4341 vm.writeJson (finalJson, _getOutputPath ("deployed_token_addresses.json " ));
4442 }
You can’t perform that action at this time.
0 commit comments