Get Current Votes
function getCurrentVotes(address account) returns (uint96)Strk strk = Strk(0x123...); // contract address
uint votes = strk.getCurrentVotes(0xabc...);const account = '0x123...'; // contract address
const votes = await strk.methods.getCurrentVotes(account).call();Last updated
Was this helpful?