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