proposalThreshold()
) as of the immediately previous block. If the threshold is 100,000 ANN, the sender must have been delegated more than 1% of all ANN in order to create a proposal. The proposal can have up to 10 actions (based on proposalMaxOperations()
).targets
: The ordered list of target addresses for calls to be made during proposal execution. This array must be the same length as all other array parameters in this function.values
: The ordered list of values (i.e. msg.value) to be passed to the calls made during proposal execution. This array must be the same length as all other array parameters in this function.signatures
: The ordered list of function signatures to be passed during execution. This array must be the same length as all other array parameters in this function.calldatas
: The ordered list of data to be passed to each individual function call during proposal execution. This array must be the same length as all other array parameters in this function.description
: A human readable description of the proposal and the changes it will enact.RETURN
: The ID of the newly created proposal.