diff --git a/script/Deploy.s.sol b/script/Deploy.s.sol index e19a2c7..78806f9 100644 --- a/script/Deploy.s.sol +++ b/script/Deploy.s.sol @@ -1,6 +1,8 @@ // SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; +import { console } from "forge-std/console.sol"; + import { Ethereum } from "lib/spark-address-registry/src/Ethereum.sol"; import { Script } from 'forge-std/Script.sol'; @@ -17,6 +19,9 @@ contract DeployBaseExecutor is Script { address executor = Deploy.deployExecutor(100, 1000); address receiver = Deploy.deployOptimismReceiver(Ethereum.SPARK_PROXY, executor); + console.log("executor deployed at:", executor); + console.log("receiver deployed at:", receiver); + Deploy.setUpExecutorPermissions(executor, receiver, msg.sender); vm.stopBroadcast();