Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: deployment info for v21 implementation contract #434

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
166 changes: 0 additions & 166 deletions v2/broadcast/DeployERC20Custody.s.sol/1/dry-run/run-1730753291.json

This file was deleted.

166 changes: 0 additions & 166 deletions v2/broadcast/DeployERC20Custody.s.sol/1/dry-run/run-latest.json

This file was deleted.

This file was deleted.

166 changes: 0 additions & 166 deletions v2/broadcast/DeployERC20Custody.s.sol/137/dry-run/run-latest.json

This file was deleted.

166 changes: 0 additions & 166 deletions v2/broadcast/DeployERC20Custody.s.sol/56/dry-run/run-1730752569.json

This file was deleted.

166 changes: 0 additions & 166 deletions v2/broadcast/DeployERC20Custody.s.sol/56/dry-run/run-latest.json

This file was deleted.

This file was deleted.

166 changes: 0 additions & 166 deletions v2/broadcast/DeployERC20Custody.s.sol/8453/dry-run/run-latest.json

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/1/dry-run/run-1730753279.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/1/dry-run/run-latest.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/137/dry-run/run-1730751719.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/137/dry-run/run-latest.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/56/dry-run/run-1730752556.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/56/dry-run/run-latest.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/8453/dry-run/run-1730737910.json

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayEVM.s.sol/8453/dry-run/run-latest.json

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

This file was deleted.

128 changes: 0 additions & 128 deletions v2/broadcast/DeployGatewayZEVM.s.sol/7000/dry-run/run-latest.json

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions v2/scripts/upgrade/SimulateERC20CustodyUpgrade.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract UpgradeSimulation is Script {
ERC20Custody proxy = ERC20Custody(proxyAddress);

// Get the current state
address gateway = proxy.gateway();
address gateway = address(proxy.gateway());
address tssAddress = proxy.tssAddress();
bool supportsLegacy = proxy.supportsLegacy();

Expand All @@ -27,7 +27,7 @@ contract UpgradeSimulation is Script {
proxy.upgradeToAndCall(erc20CustodyImpl, "");

// After upgrade, verify that the state is intact
require(gateway == proxy.gateway(), "gateway address mismatch");
require(gateway == address(proxy.gateway()), "gateway address mismatch");
require(tssAddress == proxy.tssAddress(), "tss address mismatch");
require(supportsLegacy == proxy.supportsLegacy(), "supportsLegacy mismatch");

Expand Down
Loading