Co-authored-by: Francisco <fg@frang.io> Co-authored-by: Ernesto García <ernestognw@gmail.com>
12 lines
404 B
JavaScript
12 lines
404 B
JavaScript
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', 'Waiting', 'Ready', 'Done'),
|
|
};
|