idle_moloch/script/RaidGeld.s.sol
Mitja Belak aaf1c0fd46
Some checks failed
CI / Foundry project (push) Waiting to run
CI / Foundry project (pull_request) Has been cancelled
Swapping WETH -> RGCVII
2024-10-27 21:20:38 +01:00

19 lines
467 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);
vm.stopBroadcast();
}
}