Skip to content

Commit fe26d8f

Browse files
committed
remove fields
1 parent 64c61b7 commit fe26d8f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

claim_contracts/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ deploy-token: ## 🚀 Deploy the token contract
3434
update_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

3939
upgrade-token: ## 🚀 Upgrade the token contract
4040
cd script && \

claim_contracts/script/DeployAlignedToken.s.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)