Skip to content

Commit

Permalink
feat: add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-manuel committed Oct 8, 2024
1 parent c895c9c commit 3703ec8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
@@ -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';
Expand All @@ -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();
Expand Down

0 comments on commit 3703ec8

Please sign in to comment.