Skip to content

Commit 5571d73

Browse files
committed
Major refectoring for SmartnodesV2
1 parent 229cf16 commit 5571d73

File tree

7 files changed

+519
-501
lines changed

7 files changed

+519
-501
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
[submodule "lib/foundry-huff"]
88
path = lib/foundry-huff
99
url = https://github.com/huff-language/foundry-huff
10+
[submodule "lib/openzeppelin-contracts-upgradeable"]
11+
path = lib/openzeppelin-contracts-upgradeable
12+
url = https://github.com/Openzeppelin/openzeppelin-contracts-upgradeable

src/SmartnodesCoordinator.sol

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solditiy ^0.8.20
3+
4+
contract SmartnodesCoordinator {
5+
function activeValidator() internal {}
6+
function deactivateValidator() internal {}
7+
function submitProposal() external {}
8+
function executeProposal() external {}
9+
function vote() external {}
10+
}

0 commit comments

Comments
 (0)