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.
11 lines
404 B
11 lines
404 B
function Enum(...options) {
|
|
return Object.fromEntries(options.map((key, i) => [key, web3.utils.toBN(i)]));
|
|
}
|
|
|
|
module.exports = {
|
|
Enum,
|
|
ProposalState: Enum('Pending', 'Active', 'Canceled', 'Defeated', 'Succeeded', 'Queued', 'Expired', 'Executed'),
|
|
VoteType: Enum('Against', 'For', 'Abstain'),
|
|
Rounding: Enum('Down', 'Up', 'Zero'),
|
|
OperationState: Enum('Unset', 'Pending', 'Ready', 'Done'),
|
|
};
|
|
|