idle_moloch/script/RaidGeld.s.sol
yellow 87b9ecce67
Some checks failed
CI / Foundry project (push) Has been cancelled
upgrades wip (deploys)
2024-11-10 05:07:06 +01:00

19 lines
498 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import {Script, console} from "forge-std/Script.sol";
import {RaidGeld} from "../src/RaidGeld.sol";
import {Constants} from "../src/Constants.sol";
contract RaidGeldScript is Script, Constants {
RaidGeld public raidgeld;
function setUp() public {}
function run() public {
vm.startBroadcast();
// raidgeld = new RaidGeld(DAO_TOKEN, POOL, BAAL, NFT_POSITION_MANAGER);
vm.stopBroadcast();
}
}