Voting Delay
The amount of time that lapses before voting can commence for users to accrue vote weight.
Function Implementation in CHNGovernance
CHNGovernanceFunction Signature
function votingDelay() public view returns (uint)Example Solidity Implementation
CHNGovernance gov = CHNGovernance(0x123...); // Contract address of CHNGovernance
uint blocks = gov.votingDelay();Web3.js Implementation (v1.2.6)
const blocks = await gov.methods.votingDelay().call();Technical Considerations
Last updated
