Get Prior Votes
function getPriorVotes(address account, uint blockNumber) returns (uint96)BUL bul = BUL(0x123...); // contract address
uint priorVotes = bul.getPriorVotes(account, blockNumber);const priorVotes = await bul.methods.getPriocrVotes(account, blockNumber).call();Last updated