-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ExpertCommitteeArbitrator #587
Open
ben-kaufman
wants to merge
3
commits into
develop
Choose a base branch
from
simple-arbitrator
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Disclaimer https://github.com/hats-finance/hats-contracts/blob/main/DISCLAIMER.md | ||
|
||
pragma solidity 0.8.16; | ||
|
||
import "@openzeppelin/contracts/access/Ownable.sol"; | ||
import "./interfaces/IHATClaimsManager.sol"; | ||
|
||
contract ExpertCommitteeArbitrator is Ownable { | ||
address public expertCommittee; | ||
|
||
error OnlyExpertCommittee(); | ||
|
||
modifier onlyExpertCommittee() { | ||
if (msg.sender != expertCommittee) { | ||
revert OnlyExpertCommittee(); | ||
} | ||
_; | ||
} | ||
|
||
constructor(address _expertCommittee) { | ||
expertCommittee = _expertCommittee; | ||
} | ||
|
||
function setExpertCommittee(address _expertCommittee) external onlyOwner { | ||
expertCommittee = _expertCommittee; | ||
} | ||
|
||
function challengeClaim(IHATClaimsManager _vault, bytes32 _claimId, uint16 _bountyPercentage, address _beneficiary) external onlyExpertCommittee { | ||
_vault.challengeClaim(_claimId, _bountyPercentage, _beneficiary); | ||
} | ||
|
||
function approveClaim(IHATClaimsManager _vault, bytes32 _claimId) external onlyOwner { | ||
_vault.approveClaim(_claimId, 0, address(0)); | ||
} | ||
|
||
function dismissClaim(IHATClaimsManager _vault, bytes32 _claimId) external onlyOwner { | ||
_vault.dismissClaim(_claimId); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
# ExpertCommitteeArbitrator | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
## Methods | ||
|
||
### approveClaim | ||
|
||
```solidity | ||
function approveClaim(contract IHATClaimsManager _vault, bytes32 _claimId) external nonpayable | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| _vault | contract IHATClaimsManager | undefined | | ||
| _claimId | bytes32 | undefined | | ||
|
||
### challengeClaim | ||
|
||
```solidity | ||
function challengeClaim(contract IHATClaimsManager _vault, bytes32 _claimId, uint16 _bountyPercentage, address _beneficiary) external nonpayable | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| _vault | contract IHATClaimsManager | undefined | | ||
| _claimId | bytes32 | undefined | | ||
| _bountyPercentage | uint16 | undefined | | ||
| _beneficiary | address | undefined | | ||
|
||
### dismissClaim | ||
|
||
```solidity | ||
function dismissClaim(contract IHATClaimsManager _vault, bytes32 _claimId) external nonpayable | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| _vault | contract IHATClaimsManager | undefined | | ||
| _claimId | bytes32 | undefined | | ||
|
||
### expertCommittee | ||
|
||
```solidity | ||
function expertCommittee() external view returns (address) | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
#### Returns | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| _0 | address | undefined | | ||
|
||
### owner | ||
|
||
```solidity | ||
function owner() external view returns (address) | ||
``` | ||
|
||
|
||
|
||
*Returns the address of the current owner.* | ||
|
||
|
||
#### Returns | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| _0 | address | undefined | | ||
|
||
### renounceOwnership | ||
|
||
```solidity | ||
function renounceOwnership() external nonpayable | ||
``` | ||
|
||
|
||
|
||
*Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.* | ||
|
||
|
||
### setExpertCommittee | ||
|
||
```solidity | ||
function setExpertCommittee(address _expertCommittee) external nonpayable | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| _expertCommittee | address | undefined | | ||
|
||
### transferOwnership | ||
|
||
```solidity | ||
function transferOwnership(address newOwner) external nonpayable | ||
``` | ||
|
||
|
||
|
||
*Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.* | ||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| newOwner | address | undefined | | ||
|
||
|
||
|
||
## Events | ||
|
||
### OwnershipTransferred | ||
|
||
```solidity | ||
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner) | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
|---|---|---| | ||
| previousOwner `indexed` | address | undefined | | ||
| newOwner `indexed` | address | undefined | | ||
|
||
|
||
|
||
## Errors | ||
|
||
### OnlyExpertCommittee | ||
|
||
```solidity | ||
error OnlyExpertCommittee() | ||
``` | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it possible to update this interface without redeploying the registry @ben-kaufman ?