diff --git a/nucypher/blockchain/eth/sol/source/contracts/Adjudicator.sol b/nucypher/blockchain/eth/sol/source/contracts/Adjudicator.sol index 925d54c08..c37aa1c16 100644 --- a/nucypher/blockchain/eth/sol/source/contracts/Adjudicator.sol +++ b/nucypher/blockchain/eth/sol/source/contracts/Adjudicator.sol @@ -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| */ diff --git a/nucypher/blockchain/eth/sol/source/contracts/Issuer.sol b/nucypher/blockchain/eth/sol/source/contracts/Issuer.sol index fbf700a33..dae89ea50 100644 --- a/nucypher/blockchain/eth/sol/source/contracts/Issuer.sol +++ b/nucypher/blockchain/eth/sol/source/contracts/Issuer.sol @@ -11,6 +11,7 @@ import "zeppelin/token/ERC20/SafeERC20.sol"; /** +* @title Issuer * @notice Contract for calculation of issued tokens * @dev |v3.3.1| */ diff --git a/nucypher/blockchain/eth/sol/source/contracts/MultiSig.sol b/nucypher/blockchain/eth/sol/source/contracts/MultiSig.sol index 798522b9e..eb9f34ac9 100644 --- a/nucypher/blockchain/eth/sol/source/contracts/MultiSig.sol +++ b/nucypher/blockchain/eth/sol/source/contracts/MultiSig.sol @@ -7,6 +7,7 @@ import "zeppelin/math/SafeMath.sol"; /** +* @title MultiSig * @notice Multi-signature contract with off-chain signing */ contract MultiSig { diff --git a/nucypher/blockchain/eth/sol/source/contracts/NuCypherToken.sol b/nucypher/blockchain/eth/sol/source/contracts/NuCypherToken.sol index a029e178a..793ab3e49 100644 --- a/nucypher/blockchain/eth/sol/source/contracts/NuCypherToken.sol +++ b/nucypher/blockchain/eth/sol/source/contracts/NuCypherToken.sol @@ -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. */ diff --git a/nucypher/blockchain/eth/sol/source/contracts/PolicyManager.sol b/nucypher/blockchain/eth/sol/source/contracts/PolicyManager.sol index b7cecf133..674784049 100644 --- a/nucypher/blockchain/eth/sol/source/contracts/PolicyManager.sol +++ b/nucypher/blockchain/eth/sol/source/contracts/PolicyManager.sol @@ -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| */ diff --git a/nucypher/blockchain/eth/sol/source/contracts/StakingEscrow.sol b/nucypher/blockchain/eth/sol/source/contracts/StakingEscrow.sol index dbc4a0825..2eb51f807 100644 --- a/nucypher/blockchain/eth/sol/source/contracts/StakingEscrow.sol +++ b/nucypher/blockchain/eth/sol/source/contracts/StakingEscrow.sol @@ -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|