Skip to content

Commit

Permalink
some better logging
Browse files Browse the repository at this point in the history
  • Loading branch information
--systemdf authored and --systemdf committed Mar 31, 2024
1 parent 6b9adb0 commit b231682
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion per_multicall/script/Vault.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ contract VaultScript is Script {
);
opportunityAdapter.initialize(owner, admin, expressRelay, wethAddress);
vm.stopBroadcast();
console.log(
"deployed OpportunityAdapterUpgradable implementation contract at",
address(_opportunityAdapter)
);
console.log(
"OpportunityAdapterUpgradeable proxy at",
address(opportunityAdapter)
);
return address(opportunityAdapter);
}

Expand Down Expand Up @@ -108,7 +116,11 @@ contract VaultScript is Script {
feeSplitRelayer
);
vm.stopBroadcast();
console.log("deployed ExpressRelay contract at", address(expressRelay));
console.log(
"deployed ExpressRelayUpgradable implementation at",
address(_expressRelayUpgradable)
);
console.log("ExpressRelay ERC1967 proxy at", address(expressRelay));
return address(expressRelay);
}

Expand Down

0 comments on commit b231682

Please sign in to comment.