Cast Vote By Sig
const aquarius = new Aquarius(window.ethereum);
(async function() {
const castVoteTx = await aquarius.castVoteBySig(
12,
1,
{
v: '0x1b',
r: '0x130dbcd2faca07424c033b4479687cc1deeb65f08509e3ab397988cc4c6f2e78',
s: '0x1debcb8250262f23906b1177161f0c7c9aa3641e6bff5b6f5c88a6bb78d5d8cd'
}
);
console.log('Ethers.js transaction object', castVoteTx);
})().catch(console.error);Last updated