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