From 3703ec825929dd4a9658261ca4b8c93fc463a338 Mon Sep 17 00:00:00 2001 From: lucas-manuel Date: Tue, 8 Oct 2024 17:02:50 -0400 Subject: [PATCH] feat: add logs --- script/Deploy.s.sol | 5 +++++ 1 file changed, 5 insertions(+) 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();