You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
217 lines
6.1 KiB
217 lines
6.1 KiB
const { ethers } = require('hardhat');
|
|
const { ProposalState } = require('./enums');
|
|
const { unique } = require('./iterate');
|
|
const time = require('./time');
|
|
|
|
const timelockSalt = (address, descriptionHash) =>
|
|
ethers.toBeHex((ethers.toBigInt(address) << 96n) ^ ethers.toBigInt(descriptionHash), 32);
|
|
|
|
class GovernorHelper {
|
|
constructor(governor, mode = 'blocknumber') {
|
|
this.governor = governor;
|
|
this.mode = mode;
|
|
}
|
|
|
|
connect(account) {
|
|
this.governor = this.governor.connect(account);
|
|
return this;
|
|
}
|
|
|
|
/// Setter and getters
|
|
/**
|
|
* Specify a proposal either as
|
|
* 1) an array of objects [{ target, value, data }]
|
|
* 2) an object of arrays { targets: [], values: [], data: [] }
|
|
*/
|
|
setProposal(actions, description) {
|
|
if (Array.isArray(actions)) {
|
|
this.targets = actions.map(a => a.target);
|
|
this.values = actions.map(a => a.value || 0n);
|
|
this.data = actions.map(a => a.data || '0x');
|
|
} else {
|
|
({ targets: this.targets, values: this.values, data: this.data } = actions);
|
|
}
|
|
this.description = description;
|
|
return this;
|
|
}
|
|
|
|
get hash() {
|
|
return ethers.keccak256(
|
|
ethers.AbiCoder.defaultAbiCoder().encode(['address[]', 'uint256[]', 'bytes[]', 'bytes32'], this.shortProposal),
|
|
);
|
|
}
|
|
|
|
get id() {
|
|
return this.governor.latestProposalId ? this.governor.getProposalId(...this.shortProposal) : this.hash;
|
|
}
|
|
|
|
// used for checking events
|
|
get signatures() {
|
|
return this.data.map(() => '');
|
|
}
|
|
|
|
get descriptionHash() {
|
|
return ethers.id(this.description);
|
|
}
|
|
|
|
// condensed version for queueing end executing
|
|
get shortProposal() {
|
|
return [this.targets, this.values, this.data, this.descriptionHash];
|
|
}
|
|
|
|
// full version for proposing
|
|
get fullProposal() {
|
|
return [this.targets, this.values, this.data, this.description];
|
|
}
|
|
|
|
get currentProposal() {
|
|
return this;
|
|
}
|
|
|
|
/// Proposal lifecycle
|
|
delegate(delegation) {
|
|
return Promise.all([
|
|
delegation.token.connect(delegation.to).delegate(delegation.to),
|
|
delegation.value === undefined ||
|
|
delegation.token.connect(this.governor.runner).transfer(delegation.to, delegation.value),
|
|
delegation.tokenId === undefined ||
|
|
delegation.token
|
|
.ownerOf(delegation.tokenId)
|
|
.then(owner =>
|
|
delegation.token.connect(this.governor.runner).transferFrom(owner, delegation.to, delegation.tokenId),
|
|
),
|
|
]);
|
|
}
|
|
|
|
propose() {
|
|
return this.governor.propose(...this.fullProposal);
|
|
}
|
|
|
|
queue() {
|
|
return this.governor.queue(...this.shortProposal);
|
|
}
|
|
|
|
execute() {
|
|
return this.governor.execute(...this.shortProposal);
|
|
}
|
|
|
|
cancel(visibility = 'external') {
|
|
switch (visibility) {
|
|
case 'external':
|
|
return this.governor.cancel(...this.shortProposal);
|
|
|
|
case 'internal':
|
|
return this.governor.$_cancel(...this.shortProposal);
|
|
|
|
default:
|
|
throw new Error(`unsupported visibility "${visibility}"`);
|
|
}
|
|
}
|
|
|
|
async vote(vote = {}) {
|
|
let method = 'castVote'; // default
|
|
let args = [await this.id, vote.support]; // base
|
|
|
|
if (vote.signature) {
|
|
const sign = await this.forgeMessage(vote).then(msg => vote.signature(this.governor, msg));
|
|
if (vote.params || vote.reason) {
|
|
method = 'castVoteWithReasonAndParamsBySig';
|
|
args.push(vote.voter, vote.reason ?? '', vote.params ?? '0x', sign);
|
|
} else {
|
|
method = 'castVoteBySig';
|
|
args.push(vote.voter, sign);
|
|
}
|
|
} else if (vote.params) {
|
|
method = 'castVoteWithReasonAndParams';
|
|
args.push(vote.reason ?? '', vote.params);
|
|
} else if (vote.reason) {
|
|
method = 'castVoteWithReason';
|
|
args.push(vote.reason);
|
|
}
|
|
|
|
return await this.governor[method](...args);
|
|
}
|
|
|
|
async overrideVote(vote = {}) {
|
|
let method = 'castOverrideVote';
|
|
let args = [await this.id, vote.support];
|
|
|
|
vote.reason = vote.reason ?? '';
|
|
|
|
if (vote.signature) {
|
|
const sign = await this.forgeMessage(vote).then(msg => vote.signature(this.governor, { reason: '', ...msg }));
|
|
method = 'castOverrideVoteBySig';
|
|
args.push(vote.voter, vote.reason ?? '', sign);
|
|
}
|
|
|
|
return await this.governor[method](...args);
|
|
}
|
|
|
|
/// Clock helpers
|
|
async waitForSnapshot(offset = 0n) {
|
|
const timepoint = await this.governor.proposalSnapshot(await this.id);
|
|
return time.increaseTo[this.mode](timepoint + offset);
|
|
}
|
|
|
|
async waitForDeadline(offset = 0n) {
|
|
const timepoint = await this.governor.proposalDeadline(await this.id);
|
|
return time.increaseTo[this.mode](timepoint + offset);
|
|
}
|
|
|
|
async waitForEta(offset = 0n) {
|
|
const timestamp = await this.governor.proposalEta(await this.id);
|
|
return time.increaseTo.timestamp(timestamp + offset);
|
|
}
|
|
|
|
/// Other helpers
|
|
async forgeMessage(vote = {}) {
|
|
const message = { proposalId: await this.id, support: vote.support, voter: vote.voter, nonce: vote.nonce };
|
|
|
|
if (vote.params || vote.reason) {
|
|
message.reason = vote.reason ?? '';
|
|
message.params = vote.params ?? '0x';
|
|
}
|
|
|
|
return message;
|
|
}
|
|
|
|
/**
|
|
* Encodes a list ProposalStates into a bytes32 representation where each bit enabled corresponds to
|
|
* the underlying position in the `ProposalState` enum. For example:
|
|
*
|
|
* 0x000...10000
|
|
* ^^^^^^------ ...
|
|
* ^----- Succeeded
|
|
* ^---- Defeated
|
|
* ^--- Canceled
|
|
* ^-- Active
|
|
* ^- Pending
|
|
*/
|
|
static proposalStatesToBitMap(proposalStates, options = {}) {
|
|
if (!Array.isArray(proposalStates)) {
|
|
proposalStates = [proposalStates];
|
|
}
|
|
const statesCount = ethers.toBigInt(Object.keys(ProposalState).length);
|
|
let result = 0n;
|
|
|
|
for (const state of unique(proposalStates)) {
|
|
if (state < 0n || state >= statesCount) {
|
|
expect.fail(`ProposalState ${state} out of possible states (0...${statesCount}-1)`);
|
|
} else {
|
|
result |= 1n << state;
|
|
}
|
|
}
|
|
|
|
if (options.inverted) {
|
|
const mask = 2n ** statesCount - 1n;
|
|
result = result ^ mask;
|
|
}
|
|
|
|
return ethers.toBeHex(result, 32);
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
GovernorHelper,
|
|
timelockSalt,
|
|
};
|
|
|