Allow Contributors management by core contirbutors #17
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "refactor/authentication"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
So far we only allowed calls to the Contributors contract from the
Operator. With the new registry concept we can call functions again
directly on the Contributors contract (without the need to call it through
the operator).
This changes the authentication for the contributor management functions
to allow either core contributors or the operator to call them.
In the future I envision a bit more flexible and configurable
authentication concept that can more easily evolve over time.
This basically also deprecates these functions: https://github.com/67P/truffle-kredits/blob/master/contracts/Operator.sol#L56-L70
Which I will remove in favor of calling the contract directly.
As mentioned the registry makes it trivial to discover the contract address. The contracts are still kept small and specific but should also have some autonomy.
The upgradable proxy concept allows us to make some modifications to the contract. (hopefully)
Much better!