Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

recipient The recipient of the transaction. This is an address, which can only be the address of the DAO itself, the Curator or an address on the whitelist allowedRecipients. Any other address will throw an exception, blocking you from creating a new proposal. The whitelist is curated by the Curator, and only they can add/remove addresses to/from that list. There is an exception to this rule. When making a proposal for a new Curator, the recipient is the address of the proposed Curator (typically a multisignature account of trusted people, or in the case a user is splitting to form their own personal DAO, their own account address).
amountThe amount of wei (1 = 10^-18 ether) to be sent from the DAO to the recipient in the proposed transaction.
descriptionA short plain text description of the proposal.
transactionDataThe data of the proposed transaction. This is used to call functions in the case the recipient is a smart contract, and optionally to provide the function parameters of this smart contract to the DAO itself.
debatingPeriod The amount of time (in seconds!) to debate and vote on the proposal. Unless this is a proposal for a new Curator, this has to be at least 2 weeks (= 604800 seconds1,209,600 seconds). For a new Curator proposal the minimum is 1 week. It is suggested to have a longer debating and voting period for controversial proposals or when a high amount of ether is proposed to be transferred. The maximum debating period is 8 weeks. (4,838,400 seconds)
newCuratorThis is a bool which can only be true or false. This is true in the case this is a proposal for a new Curator, false otherwise.
Send ETHER For a regular proposal there is a minimum Proposal Deposit required, which can be read from the contract using the proposalDeposit function and is input using the base units of the DAO token (1 = 10^-16 DAO tokens). The sender of the transaction can choose to pay a higher deposit. The GUI for the DAO (work in progress) will sort the Proposals, ordering them by the Proposal Deposit amount. Therefore increasing the deposit amount can be used to advertise or prioritize certain Proposals. The Proposal Deposit is paid back when the Proposal gets executed and the quorum is met. Depending on the proposed amount of ETH to be transferred, this is between 20% and 53.33% of all tokens (see Eq. (1) in the whitepaper).

...