Skip to content

Commit

Permalink
lib: update forge-std
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Sep 18, 2024
1 parent b946c0c commit c48e2e6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import { Script } from "forge-std/Script.sol";
import { ReservoirPriceOracle, PriceType } from "src/ReservoirPriceOracle.sol";

contract Deploy is Script {
function run() external {
vm.startBroadcast(address(1));
string memory lTestnetRpcUrl = vm.rpcUrl("sepolia");

// uint256 lForkId = vm.createFork(lTestnetRpcUrl);

ReservoirPriceOracle asd = new ReservoirPriceOracle(15 minutes, 200_000, PriceType.CLAMPED_PRICE);

vm.stopBroadcast();
}
}

0 comments on commit c48e2e6

Please sign in to comment.