arc
arc copied to clipboard
Arc is an operating system for DAOs.
address #671
https://github.com/trufflesuite/ganache-cli/releases/tag/v6.8.0-istanbul.0
1. You should provide Merkle Root to user offchain 2. User will discover event by this root based on indexed `_root` argument 3. User will retrieve the array of `_beneficiaries`...
to enable voting machine execution even the scheme execution itself will revert. see https://github.com/daostack/alchemy/issues/918 for example. might also consider to add permission check (>=2) on the proposal function .
From Telegram chat. I think this would be useful: Eric Arsenault: is it possible to create a DAO which can only ask 1 proposal? (pre selected)... What I'm thinking of...
to prevent ui mistakes
On creating a new proposal, the schemeregistrar and contributionreward throw events that include a reference to the votingmachien address (these are the events `NewSchemeProposal`, `RemoveSchemeProposal`, `NewContributionProposal`) The `NewCallProposal` event does...
Currently all DAO controllers have their own native token (DAOToken) that they can mint from. It seems like an unnecessary requirement for each DAO to have its own token when...
This line: https://github.com/daostack/arc/blob/c0baf5921a1d68d377b272ebc54781de3addb66f/contracts/schemes/Auction4Reputation.sol#L146 Should be: ``` require(now >= auctionsEndTime, "now >= auctionsEndTime"); ``` Because `auctionsEndTime` is exclusive of the auction period. This line: https://github.com/daostack/arc/blob/c0baf5921a1d68d377b272ebc54781de3addb66f/contracts/schemes/Locking4Reputation.sol#L152 Should be: ``` require(_redeemEnableTime > _lockingEndTime,...