mirror of https://github.com/nucypher/nucypher.git
commit
1978f99764
|
@ -11,6 +11,7 @@ import "zeppelin/math/Math.sol";
|
|||
|
||||
|
||||
/**
|
||||
* @title Adjudicator
|
||||
* @notice Supervises stakers' behavior and punishes when something's wrong.
|
||||
* @dev |v2.1.2|
|
||||
*/
|
||||
|
|
|
@ -11,6 +11,7 @@ import "zeppelin/token/ERC20/SafeERC20.sol";
|
|||
|
||||
|
||||
/**
|
||||
* @title Issuer
|
||||
* @notice Contract for calculation of issued tokens
|
||||
* @dev |v3.3.1|
|
||||
*/
|
||||
|
|
|
@ -7,6 +7,7 @@ import "zeppelin/math/SafeMath.sol";
|
|||
|
||||
|
||||
/**
|
||||
* @title MultiSig
|
||||
* @notice Multi-signature contract with off-chain signing
|
||||
*/
|
||||
contract MultiSig {
|
||||
|
|
|
@ -8,7 +8,7 @@ import "zeppelin/token/ERC20/ERC20Detailed.sol";
|
|||
|
||||
|
||||
/**
|
||||
* @title NuCypher token
|
||||
* @title NuCypherToken
|
||||
* @notice ERC20 token
|
||||
* @dev Optional approveAndCall() functionality to notify a contract if an approve() has occurred.
|
||||
*/
|
||||
|
|
|
@ -15,6 +15,7 @@ import "contracts/proxy/Upgradeable.sol";
|
|||
|
||||
|
||||
/**
|
||||
* @title PolicyManager
|
||||
* @notice Contract holds policy data and locks accrued policy fees
|
||||
* @dev |v6.1.3|
|
||||
*/
|
||||
|
|
|
@ -43,6 +43,7 @@ interface WorkLockInterface {
|
|||
|
||||
|
||||
/**
|
||||
* @title StakingEscrow
|
||||
* @notice Contract holds and locks stakers tokens.
|
||||
* Each staker that locks their tokens will receive some compensation
|
||||
* @dev |v5.5.1|
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
pragma solidity ^0.7.0;
|
||||
|
||||
|
||||
import "./IERC20.sol";
|
||||
import "../../math/SafeMath.sol";
|
||||
import "zeppelin/token/ERC20/IERC20.sol";
|
||||
import "zeppelin/math/SafeMath.sol";
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
pragma solidity ^0.7.0;
|
||||
|
||||
|
||||
import "./IERC20.sol";
|
||||
import "../../math/SafeMath.sol";
|
||||
import "zeppelin/token/ERC20/IERC20.sol";
|
||||
import "zeppelin/math/SafeMath.sol";
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue