Skip to content

Commit

Permalink
deploy scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
a17 committed Jan 30, 2025
1 parent e68f5f1 commit 9642670
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions script/deploy-periphery/RebalanceHelper.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

import "forge-std/Script.sol";
import {RebalanceHelper} from "../../src/periphery/RebalanceHelper.sol";

contract DeployRebalanceHelper is Script {
function run() external {
uint deployerPrivateKey = vm.envUint("PRIVATE_KEY");
vm.startBroadcast(deployerPrivateKey);
new RebalanceHelper();
vm.stopBroadcast();
}

function testDeployPeriphery() external {}
}
16 changes: 16 additions & 0 deletions script/deploy-strategy/ASF.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

import "forge-std/Script.sol";
import "../../src/strategies/ALMShadowFarmStrategy.sol";

contract DeployASF is Script {
function run() external {
uint deployerPrivateKey = vm.envUint("PRIVATE_KEY");
vm.startBroadcast(deployerPrivateKey);
new ALMShadowFarmStrategy();
vm.stopBroadcast();
}

function testDeployStrategy() external {}
}

0 comments on commit 9642670

Please sign in to comment.