Submitted by Chom
Governor.sol#L465-L477
Precision is not enough for proposalThreshold and quorum. Collections with at least 20000 NFTs in total supply may have some trouble. These collections cant be set proposalThreshold = 1 or quorum = 1.
If totalSupply = 20000, with the lowest settings (settings.proposalThresholdBps, settings.quorumThresholdBps = 1), it would returns (20000 * 1) / 10000 = 2. And it cant be lowered more.
Increase division to a more precise value such as 1e18 to allow high total supply NFT to always set threshold as 1
Alex the Entreprenerd (judge) commented:
kulkarohan (Nouns Builder) acknowledged
