mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
GITBOOK-424: Updated roles page
This commit is contained in:
parent
2f6957192d
commit
033af362ed
@ -39,15 +39,35 @@ If you prefer a simple method for adding or removing roles and permissions(eg. a
|
||||
|
||||
The ability to add or remove Managers is exclusive to the NFT Owner. If you are the NFT Owner and wish to add/remove a new manager, simply call the [addManager](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC721Template.sol#L426)/[removeManager](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC721Template.sol#L438) function within the ERC721Template contract. This function enables you to grant managerial permissions to the designated individual.
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Add/Remove Manager Contract functions</summary>
|
||||
|
||||
```solidity
|
||||
/**
|
||||
* @dev addManager
|
||||
* Only NFT Owner can add a new manager (Roles admin)
|
||||
* There can be multiple minters
|
||||
* @param _managerAddress new manager address
|
||||
*/
|
||||
|
||||
function addManager(address _managerAddress) external onlyNFTOwner {
|
||||
_addManager(_managerAddress);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev removeManager
|
||||
* Only NFT Owner can remove a manager (Roles admin)
|
||||
* There can be multiple minters
|
||||
* @param _managerAddress new manager address
|
||||
*/
|
||||
function removeManager(address _managerAddress) external onlyNFTOwner {
|
||||
_removeManager(_managerAddress);
|
||||
}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
The **manager** can assign or revoke three main roles (**deployer, metadata updater, store updater**). The manager is also able to interact with the ERC725 data.
|
||||
|
||||
### ERC20 Deployer
|
||||
@ -56,87 +76,220 @@ The Deployer has a bunch of privileges at the ERC20 datatoken level. They can de
|
||||
|
||||
To add/remove an ERC20 deployer, the manager can use the [addToCreateERC20List](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L111)/[removeFromCreateERC20List](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L129) functions from the ERC721RolesAddress.
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Add/Remove ERC20 Deployer Contract functions</summary>
|
||||
|
||||
```solidity
|
||||
/**
|
||||
* @dev addToCreateERC20List
|
||||
* Adds deployERC20 role to an user.
|
||||
* It can be called only by a manager
|
||||
* @param _allowedAddress user address
|
||||
*/
|
||||
function addToCreateERC20List(address _allowedAddress) public onlyManager {
|
||||
_addToCreateERC20List(_allowedAddress);
|
||||
}
|
||||
|
||||
function removeFromCreateERC20List(address _allowedAddress)
|
||||
public
|
||||
{
|
||||
/**
|
||||
* @dev removeFromCreateERC20List
|
||||
* Removes deployERC20 role from an user.
|
||||
* It can be called by a manager or by the same user, if he already has deployERC20 role
|
||||
* @param _allowedAddress user address
|
||||
*/
|
||||
function removeFromCreateERC20List(address _allowedAddress) public {
|
||||
if(permissions[msg.sender].manager == true ||
|
||||
(msg.sender == _allowedAddress && permissions[msg.sender].deployERC20 == true)
|
||||
)......
|
||||
){
|
||||
Roles storage user = permissions[_allowedAddress];
|
||||
user.deployERC20 = false;
|
||||
emit RemovedFromCreateERC20List(_allowedAddress,msg.sender,block.timestamp,block.number);
|
||||
_SafeRemoveFromAuth(_allowedAddress);
|
||||
}
|
||||
else{
|
||||
revert("ERC721RolesAddress: Not enough permissions to remove from ERC20List");
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### Metadata Updater
|
||||
|
||||
There is also a specific role for updating the metadata. The [Metadata](metadata.md) updater has the ability to update the information about the data asset (title, description, sample data etc) that is displayed to the user on the asset detail page within the market.
|
||||
|
||||
To add/remove a metadata updater, the manager can use the [addToMetadataList](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L164)/[removeFromMetadataList](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L183) functions from the ERC721RolesAddress.
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Add/Remove Metadata Updater Contract functions</summary>
|
||||
|
||||
```solidity
|
||||
/**
|
||||
* @dev addToMetadataList
|
||||
* Adds metadata role to an user.
|
||||
* It can be called only by a manager
|
||||
* @param _allowedAddress user address
|
||||
*/
|
||||
function addToMetadataList(address _allowedAddress) public onlyManager {
|
||||
_addToMetadataList(_allowedAddress);
|
||||
}
|
||||
function removeFromMetadataList(address _allowedAddress)
|
||||
public
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @dev removeFromMetadataList
|
||||
* Removes metadata role from an user.
|
||||
* It can be called by a manager or by the same user, if he already has metadata role
|
||||
* @param _allowedAddress user address
|
||||
*/
|
||||
function removeFromMetadataList(address _allowedAddress) public {
|
||||
if(permissions[msg.sender].manager == true ||
|
||||
(msg.sender == _allowedAddress && permissions[msg.sender].updateMetadata == true)
|
||||
)
|
||||
.....
|
||||
){
|
||||
Roles storage user = permissions[_allowedAddress];
|
||||
user.updateMetadata = false;
|
||||
emit RemovedFromMetadataList(_allowedAddress,msg.sender,block.timestamp,block.number);
|
||||
_SafeRemoveFromAuth(_allowedAddress);
|
||||
}
|
||||
else{
|
||||
revert("ERC721RolesAddress: Not enough permissions to remove from metadata list");
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### Store Updater
|
||||
|
||||
The store updater can store, remove or update any arbitrary key value using the ERC725Y implementation (at the ERC721 level). The use case for this role depends a lot on what data is being stored in the ERC725Y key-value pair — as mentioned above, this is highly flexible.
|
||||
|
||||
To add/remove a store updater, the manager can use the [addTo725StoreList](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L61)/[removeFrom725StoreList](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L76) functions from the ERC721RolesAddress.
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Add/Remove Store Updater Contract functions</summary>
|
||||
|
||||
```solidity
|
||||
/**
|
||||
* @dev addTo725StoreList
|
||||
* Adds store role to an user.
|
||||
* It can be called only by a manager
|
||||
* @param _allowedAddress user address
|
||||
*/
|
||||
function addTo725StoreList(address _allowedAddress) public onlyManager {
|
||||
if(_allowedAddress != address(0)){
|
||||
...
|
||||
Roles storage user = permissions[_allowedAddress];
|
||||
user.store = true;
|
||||
_pushToAuth(_allowedAddress);
|
||||
emit AddedTo725StoreList(_allowedAddress,msg.sender,block.timestamp,block.number);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev removeFrom725StoreList
|
||||
* Removes store role from an user.
|
||||
* It can be called by a manager or by the same user, if he already has store role
|
||||
* @param _allowedAddress user address
|
||||
*/
|
||||
function removeFrom725StoreList(address _allowedAddress) public {
|
||||
if(permissions[msg.sender].manager == true ||
|
||||
(msg.sender == _allowedAddress && permissions[msg.sender].store == true)
|
||||
)
|
||||
...
|
||||
){
|
||||
Roles storage user = permissions[_allowedAddress];
|
||||
user.store = false;
|
||||
emit RemovedFrom725StoreList(_allowedAddress,msg.sender,block.timestamp,block.number);
|
||||
_SafeRemoveFromAuth(_allowedAddress);
|
||||
}
|
||||
else{
|
||||
revert("ERC721RolesAddress: Not enough permissions to remove from 725StoreList");
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
|
||||
|
||||
To assign/remove all the above roles(ERC20 Deployer, Metadata Updater or Store Updater), the manager can use the [**addMultipleUsersToRoles**](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/utils/ERC721RolesAddress.sol#L268) function from the ERC721RolesAddress:
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Assign multiple roles at once Contract function</summary>
|
||||
|
||||
```solidity
|
||||
/**
|
||||
* @dev addMultipleUsersToRoles
|
||||
* Add multiple users to multiple roles
|
||||
* @param addresses Array of addresses
|
||||
* @param roles Array of coresponding roles
|
||||
*/
|
||||
function addMultipleUsersToRoles(address[] memory addresses, RolesType[] memory roles) external onlyManager {
|
||||
require(addresses.length == roles.length && roles.length>0 && roles.length<50, "Invalid array size");
|
||||
...
|
||||
uint256 i;
|
||||
for(i=0; i<roles.length; i++){
|
||||
if(addresses[i] != address(0)){
|
||||
Roles storage user = permissions[addresses[i]];
|
||||
if(roles[i] == RolesType.Manager) {
|
||||
user.manager = true;
|
||||
emit AddedManager(addresses[i],msg.sender,block.timestamp,block.number);
|
||||
}
|
||||
if(roles[i] == RolesType.DeployERC20) {
|
||||
user.deployERC20 = true;
|
||||
emit AddedToCreateERC20List(addresses[i],msg.sender,block.timestamp,block.number);
|
||||
}
|
||||
if(roles[i] == RolesType.UpdateMetadata) {
|
||||
user.updateMetadata = true;
|
||||
emit AddedToMetadataList(addresses[i],msg.sender,block.timestamp,block.number);
|
||||
}
|
||||
if(roles[i] == RolesType.Store) {
|
||||
user.store = true;
|
||||
emit AddedTo725StoreList(addresses[i],msg.sender,block.timestamp,block.number);
|
||||
}
|
||||
_pushToAuth(addresses[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### Minter
|
||||
|
||||
The Minter has the ability to mint new datatokens, provided the limit has not been exceeded. 
|
||||
|
||||
To add/remove a minter, the ERC20 deployer can use the [addMinter](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC20Template.sol#L617)/[removeMinter](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC20Template.sol#L628) functions from the ERC20Template.
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Add/Remove Minter Contract functions</summary>
|
||||
|
||||
```solidity
|
||||
/**
|
||||
* @dev addMinter
|
||||
* Only ERC20Deployer (at 721 level) can update.
|
||||
* There can be multiple minters
|
||||
* @param _minter new minter address
|
||||
*/
|
||||
|
||||
function addMinter(address _minter) external onlyERC20Deployer {
|
||||
_addMinter(_minter);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev removeMinter
|
||||
* Only ERC20Deployer (at 721 level) can update.
|
||||
* There can be multiple minters
|
||||
* @param _minter minter address to remove
|
||||
*/
|
||||
|
||||
function removeMinter(address _minter) external onlyERC20Deployer {
|
||||
_removeMinter(_minter);
|
||||
}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### Fee Manager
|
||||
|
||||
Finally, we also have a fee manager which has the ability to set a new fee collector — this is the account that will receive the datatokens when a data asset is consumed. If no fee collector account has been set, the **datatokens will be sent by default to the NFT Owner**. 
|
||||
@ -147,22 +300,37 @@ The applicable fees (market and community fees) are automatically deducted from
|
||||
|
||||
To add/remove a fee manager, the ERC20 deployer can use the [addPaymentManager](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC20Template.sol#L639)/[removePaymentManager](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC20Template.sol#L653) functions from the ERC20Template.
|
||||
|
||||
<details>
|
||||
|
||||
<summary>Add/Remove Fee Manager Contract functions</summary>
|
||||
|
||||
```solidity
|
||||
function addPaymentManager(address _paymentManager)
|
||||
external
|
||||
onlyERC20Deployer
|
||||
/**
|
||||
* @dev addPaymentManager (can set who's going to collect fee when consuming orders)
|
||||
* Only ERC20Deployer (at 721 level) can update.
|
||||
* There can be multiple paymentCollectors
|
||||
* @param _paymentManager new minter address
|
||||
*/
|
||||
function addPaymentManager(address _paymentManager) external onlyERC20Deployer
|
||||
{
|
||||
_addPaymentManager(_paymentManager);
|
||||
}
|
||||
|
||||
function removePaymentManager(address _paymentManager)
|
||||
external
|
||||
onlyERC20Deployer
|
||||
/**
|
||||
* @dev removePaymentManager
|
||||
* Only ERC20Deployer (at 721 level) can update.
|
||||
* There can be multiple paymentManagers
|
||||
* @param _paymentManager _paymentManager address to remove
|
||||
*/
|
||||
|
||||
function removePaymentManager(address _paymentManager) external onlyERC20Deployer
|
||||
{
|
||||
_removePaymentManager(_paymentManager);
|
||||
}
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
{% hint style="info" %}
|
||||
When the NFT ownership is transferred to another wallet address, all the roles and permissions and [cleared](https://github.com/oceanprotocol/contracts/blob/9e29194d910f28a4f0ef17ce6dc8a70741f63309/contracts/templates/ERC721Template.sol#L511).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user