mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-08 23:08:19 -05:00
18 lines
397 B
Solidity
18 lines
397 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.26;
|
|
|
|
import { Script } from "forge-std/Script.sol";
|
|
import { RewardsStreamer } from "../src/RewardsStreamer.sol";
|
|
|
|
contract RewardsStreamerScript is Script {
|
|
RewardsStreamer public rewardsStreamer;
|
|
|
|
function run() public {
|
|
vm.startBroadcast();
|
|
|
|
// stakeManager = new StakeManager();
|
|
|
|
vm.stopBroadcast();
|
|
}
|
|
}
|