Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
JoscelynFarr committed Jul 25, 2024
1 parent d2962c1 commit 66fb37f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions script/deployEarnOracle.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
Copyright 2022 JOJO Exchange
SPDX-License-Identifier: Apache-2.0
*/

pragma solidity ^0.8.9;

import "forge-std/Script.sol";
import "../src/oracle/EarnOracle.sol";

contract EarnOracleScript is Script {
// add this to be excluded from coverage report
function test() public { }

function run() public {
uint256 deployerPrivateKey = vm.envUint("JOJO_BASE_DEPLOYER_PK");
vm.startBroadcast(deployerPrivateKey);
new EarnOracle(
//fundingRateHedging
0x8B7e1924fF57EEc8EbD87254E4de6Ff397f039D3
);
console2.log("deploy HelperContract");
vm.stopBroadcast();
}
}

0 comments on commit 66fb37f

Please sign in to comment.