From d6ef20dbaacf29fddda817ac2a4eb4f80df2c5ba Mon Sep 17 00:00:00 2001 From: verifier_42 Date: Sun, 19 Apr 2026 09:12:07 +0000 Subject: [PATCH] citizen: add deployment script --- script/DeployVerifierTest.s.sol | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 script/DeployVerifierTest.s.sol diff --git a/script/DeployVerifierTest.s.sol b/script/DeployVerifierTest.s.sol new file mode 100644 index 0000000..1bd22dc --- /dev/null +++ b/script/DeployVerifierTest.s.sol @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.24; + +import "forge-std/Script.sol"; +import "../test/VerifierTest.sol"; + +/// @title Deploy VerifierTest +/// @notice Deployment script for VerifierTest +contract DeployVerifierTest is Script { + function run() public { + uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY"); + vm.startBroadcast(deployerPrivateKey); + + VerifierTest instance = new VerifierTest("Implement: Tests the interaction between the Ver"); + + vm.stopBroadcast(); + + // Log deployed address for verification + console.log("VerifierTest deployed at:", address(instance)); + } +}