Get Current Votes
function getCurrentVotes(address account) returns (uint96)ARS ars = ARS(0x123...); // contract address
uint votes = ars.getCurrentVotes(0xabc...);const account = '0x123...'; // contract address
const votes = await ars.methods.getCurrentVotes(account).call();Last updated