@defi-wonderland/keep3r-v2
Version:
The Keep3r Network is a decentralized network for projects that need external devops, and for external teams to find keeper jobs
234 lines (233 loc) • 8.32 kB
HTML
<html lang="en">
<head>
<title>Code coverage report for contracts/peripherals/Keep3rRoles.sol</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../../prettify.css" />
<link rel="stylesheet" href="../../base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type='text/css'>
.coverage-summary .sorter {
background-image: url(../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='pad1'>
<h1>
<a href="../../index.html">all files</a> / <a href="index.html">contracts/peripherals/</a> Keep3rRoles.sol
</h1>
<div class='clearfix'>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Statements</span>
<span class='fraction'>0/12</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Branches</span>
<span class='fraction'>0/12</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Functions</span>
<span class='fraction'>0/7</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">0% </span>
<span class="quiet">Lines</span>
<span class='fraction'>0/16</span>
</div>
</div>
</div>
<div class='status-line low'></div>
<pre><table class="coverage">
<tr><td class="line-count quiet">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;
import '../../interfaces/peripherals/IKeep3rRoles.sol';
import '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import './Governable.sol';
contract Keep3rRoles is IKeep3rRoles, Governable {
/// @inheritdoc IKeep3rRoles
mapping(address => bool) public override slashers;
/// @inheritdoc IKeep3rRoles
mapping(address => bool) public override disputers;
<span class="fstat-no" title="function not covered" > constructor(address _governance) Governable(_governance) {}</span>
/// @inheritdoc IKeep3rRoles
<span class="fstat-no" title="function not covered" > function addSlasher(address _slasher) external override onlyGovernance {</span>
<span class="cstat-no" title="statement not covered" > if (slashers[_slasher]) revert SlasherExistent();</span>
<span class="cstat-no" title="statement not covered" > slashers[_slasher] = true</span>;
<span class="cstat-no" title="statement not covered" > emit SlasherAdded(_slasher);</span>
}
/// @inheritdoc IKeep3rRoles
<span class="fstat-no" title="function not covered" > function removeSlasher(address _slasher) external override onlyGovernance {</span>
<span class="cstat-no" title="statement not covered" > if (!slashers[_slasher]) revert SlasherUnexistent();</span>
delete slashers[_slasher];
<span class="cstat-no" title="statement not covered" > emit SlasherRemoved(_slasher);</span>
}
/// @inheritdoc IKeep3rRoles
<span class="fstat-no" title="function not covered" > function addDisputer(address _disputer) external override onlyGovernance {</span>
<span class="cstat-no" title="statement not covered" > if (disputers[_disputer]) revert DisputerExistent();</span>
<span class="cstat-no" title="statement not covered" > disputers[_disputer] = true</span>;
<span class="cstat-no" title="statement not covered" > emit DisputerAdded(_disputer);</span>
}
/// @inheritdoc IKeep3rRoles
<span class="fstat-no" title="function not covered" > function removeDisputer(address _disputer) external override onlyGovernance {</span>
<span class="cstat-no" title="statement not covered" > if (!disputers[_disputer]) revert DisputerUnexistent();</span>
delete disputers[_disputer];
<span class="cstat-no" title="statement not covered" > emit DisputerRemoved(_disputer);</span>
}
/// @notice Functions with this modifier can only be called by either a slasher or governance
<span class="fstat-no" title="function not covered" > modifier onlySlasher {</span>
<span class="cstat-no" title="statement not covered" > if (!slashers[msg.sender]) revert OnlySlasher();</span>
_;
}
/// @notice Functions with this modifier can only be called by either a disputer or governance
<span class="fstat-no" title="function not covered" > modifier onlyDisputer {</span>
<span class="cstat-no" title="statement not covered" > if (!disputers[msg.sender]) revert OnlyDisputer();</span>
_;
}
}
</pre></td></tr>
</table></pre>
<div class='push'></div><!-- for sticky footer -->
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri May 20 2022 12:16:04 GMT+0200 (Central European Summer Time)
</div>
</div>
<script src="../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../sorter.js"></script>
</body>
</html>