Queue
Queing a proposal for execution on the onchain cool-down period.
Function Implementation in CHNGovernance
CHNGovernanceFunction Signature
function queue(uint proposalId) publicParameters
Example Solidity Implementation
CHNGovernance gov = CHNGovernance(0x123...); // Contract address of CHNGovernance
gov.queue(proposalId);Web3.js Implementation (v1.2.6)
const tx = await gov.methods.queue(proposalId).send({ from: sender });Technical Considerations
Last updated
