This commit is contained in:
Hadrien Croubois
2023-03-09 13:16:35 +01:00
parent 3214f6c256
commit 2d6a89f093
7 changed files with 218 additions and 1 deletions

View File

@ -0,0 +1,11 @@
methods {
// view
getVotes(address) returns (uint256)
getPastVotes(address, uint256) returns (uint256)
getPastTotalSupply(uint256) returns (uint256)
delegates(address) returns (address) envfree
// external
delegate(address)
delegateBySig(address, uint256, uint256, uint8, bytes32, bytes32)
}

View File

@ -0,0 +1,4 @@
methods {
clock() returns (uint48)
CLOCK_MODE() returns (string)
}