Strike Docs
Search…
Strike Docs
Strike Documentation
Getting Started
STokens
Comptroller
Governance
Delegate
Delegate By Signature
Get Current Votes
Get Prior Votes
Key Events
Governor Alpha
Quorum Votes
Proposal Threshold
Proposal Max Operations
Voting Delay
Voting Period
Propose
Queue
Execute
Cancel
Get Actions
Get Receipt
State
Cast Vote
Cast Vote By Signature
Timelock
Pause Guardian
API
Strike.js
Security
Powered By
GitBook
Queue
After a proposal has succeeded, any address can call the queue method to move the proposal into the Timelock queue. A proposal can only be queued if it has succeeded.
Governor Alpha
1
function queue(uint proposalId)
Copied!
proposalId
: ID of a proposal that has succeeded.
RETURN
: No return, reverts on error.
Solidity
1
GovernorAlpha gov = GovernorAlpha(0x123...); // contract address
2
gov.queue(proposalId);
Copied!
Web3 1.2.6
1
const
tx
=
gov
.
methods
.
queue
(
proposalId
).
send
({
from
:
sender
});
Copied!
Previous
Propose
Next
Execute
Last modified
1yr ago
Copy link