mirror of
https://github.com/logos-messaging/bootstrap-enr-incentivization.git
synced 2026-01-02 12:53:11 +00:00
13 lines
224 B
Solidity
13 lines
224 B
Solidity
|
|
// SPDX-License-Identifier: UNLICENSED
|
||
|
|
pragma solidity ^0.8.13;
|
||
|
|
|
||
|
|
import "forge-std/Script.sol";
|
||
|
|
|
||
|
|
contract CounterScript is Script {
|
||
|
|
function setUp() public {}
|
||
|
|
|
||
|
|
function run() public {
|
||
|
|
vm.broadcast();
|
||
|
|
}
|
||
|
|
}
|