Get Current Votes
Gets the balance of votes for an account as of the current block.
function getCurrentVotes(address account) returns (uint96)
- account: Address of the account in which to retrieve the number of votes.
- RETURN: The number of votes (integer).
FTS fts = FTS(0x123...); // contract address
fts.getCurrentVotes(0xabc...);
const account = '0x123...'; // contract address
const votes = await fts.methods.getCurrentVotes(account).call();
Last modified 2yr ago