Voting Tokens
What is a Voting Token?
interface IHasVotes {
function getCurrentVotes(address account) external view returns (uint96);
function getPriorVotes(address account, uint256 blockNumber)
external
view
returns (uint96);
}How can I create a voting token?
Last updated