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