Matan Tsuberi

Results 18 comments of Matan Tsuberi

Something like [this](https://daostack.github.io/arc/contracts/globalConstraints/README/) I guess but more detailed and comprehensive?

Also, I think, it may be better to unify Arc & Arc.js docs in the `docs` repo and explain things in an "end-to-end" approach using the whole stack, instead of...

![](https://github.trello.services/images/mini-trello-icon.png) [The docs should have an example of how to create/use custom contracts](https://trello.com/c/vIirdto0/148-the-docs-should-have-an-example-of-how-to-create-use-custom-contracts)

Enums are implemented in solidity as `uint`. So you could easily add more without breaking anything (as long as you don't remove previous ones and keep them in the same...

@orenyodfat didn't say it saves gas (though it may)

@orenyodfat I don't think there's a difference because they are both `bytes32` underneath.

@dkent600 I've included a simple usage example in the [linked file](https://github.com/daostack/arc/blob/protected/contracts/controller/Protected.sol) Re: use cases, it's very general, it can be anything really: - Our current permission system in `Controller`. -...

@leviadam Thanks! Sure we can integrate it. Of course this is currently only a POC, so it's not perfect. And there's a [little concern](https://github.com/daostack/arc/blob/protected/contracts/controller/Protected.sol#L111) to think about (decide if it's...

@leviadam Re: gas costs, I think gas costs are not any different from a hand-crafted solution since its not storing anything more or doing any more logic than absolutely required....