Voting Period
The time period that a proposal may voted for or against.
Function Implementation in CHNGovernance
CHNGovernanceFunction Signature
function votingPeriod() public view returns (uint)Example Solidity Implementation
CHNGovernance gov = CHNGovernance(0x123...); // Contract address of CHNGovernance
uint blocks = gov.votingPeriod();Web3.js Implementation (v1.2.6)
const blocks = await gov.methods.votingPeriod().call();Technical Considerations
Last updated
