22 lines
706 B
Solidity
22 lines
706 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.24;
|
|
|
|
import "forge-std/Script.sol";
|
|
import "../contracts/interfaces/RepositoryInterface.sol";
|
|
|
|
/// @title Deploy RepositoryInterface
|
|
/// @notice Deployment script for RepositoryInterface
|
|
contract DeployRepositoryInterface is Script {
|
|
function run() public {
|
|
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
|
|
vm.startBroadcast(deployerPrivateKey);
|
|
|
|
RepositoryInterface instance = new RepositoryInterface("Implement: Defines the interface for interacting");
|
|
|
|
vm.stopBroadcast();
|
|
|
|
// Log deployed address for verification
|
|
console.log("RepositoryInterface deployed at:", address(instance));
|
|
}
|
|
}
|