type ProposalState =
| 'PENDING' // 0 - Proposal created, voting not started
| 'ACTIVE' // 1 - Voting in progress
| 'CANCELED' // 2 - Proposal canceled
| 'DEFEATED' // 3 - Voting ended, did not pass
| 'SUCCEEDED' // 4 - Voting ended, passed
| 'QUEUED' // 5 - In timelock queue
| 'EXPIRED' // 6 - Timelock expired
| 'EXECUTED'; // 7 - Proposal executed