Commit e7aa8ded by Francisco Giordano Committed by Leo Arias

Turn off blank-lines Solium rule (#1284)

* turn off blank-lines rule

* remove triple newlines

(cherry picked from commit 9b371046)
parent 49d2dd9e
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
"extends": "solium:all", "extends": "solium:all",
"plugins": ["security"], "plugins": ["security"],
"rules": { "rules": {
"blank-lines": "off",
"error-reason": "off", "error-reason": "off",
"indentation": ["error", 2], "indentation": ["error", 2],
"lbrace": "off", "lbrace": "off",
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Roles * @title Roles
* @dev Library for managing addresses assigned to a Role. * @dev Library for managing addresses assigned to a Role.
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../Roles.sol"; import "../Roles.sol";
contract CapperRole { contract CapperRole {
using Roles for Roles.Role; using Roles for Roles.Role;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../Roles.sol"; import "../Roles.sol";
contract MinterRole { contract MinterRole {
using Roles for Roles.Role; using Roles for Roles.Role;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../Roles.sol"; import "../Roles.sol";
contract PauserRole { contract PauserRole {
using Roles for Roles.Role; using Roles for Roles.Role;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../Roles.sol"; import "../Roles.sol";
contract SignerRole { contract SignerRole {
using Roles for Roles.Role; using Roles for Roles.Role;
......
...@@ -4,7 +4,6 @@ import "../token/ERC20/IERC20.sol"; ...@@ -4,7 +4,6 @@ import "../token/ERC20/IERC20.sol";
import "../math/SafeMath.sol"; import "../math/SafeMath.sol";
import "../token/ERC20/SafeERC20.sol"; import "../token/ERC20/SafeERC20.sol";
/** /**
* @title Crowdsale * @title Crowdsale
* @dev Crowdsale is a base contract for managing a token crowdsale, * @dev Crowdsale is a base contract for managing a token crowdsale,
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
import "../validation/TimedCrowdsale.sol"; import "../validation/TimedCrowdsale.sol";
/** /**
* @title FinalizableCrowdsale * @title FinalizableCrowdsale
* @dev Extension of Crowdsale with a one-off finalization action, where one * @dev Extension of Crowdsale with a one-off finalization action, where one
......
...@@ -4,7 +4,6 @@ import "../validation/TimedCrowdsale.sol"; ...@@ -4,7 +4,6 @@ import "../validation/TimedCrowdsale.sol";
import "../../token/ERC20/IERC20.sol"; import "../../token/ERC20/IERC20.sol";
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
/** /**
* @title PostDeliveryCrowdsale * @title PostDeliveryCrowdsale
* @dev Crowdsale that locks tokens from withdrawal until it ends. * @dev Crowdsale that locks tokens from withdrawal until it ends.
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
import "./FinalizableCrowdsale.sol"; import "./FinalizableCrowdsale.sol";
import "../../payment/RefundEscrow.sol"; import "../../payment/RefundEscrow.sol";
/** /**
* @title RefundableCrowdsale * @title RefundableCrowdsale
* @dev Extension of Crowdsale contract that adds a funding goal, and * @dev Extension of Crowdsale contract that adds a funding goal, and
......
...@@ -5,7 +5,6 @@ import "../../token/ERC20/IERC20.sol"; ...@@ -5,7 +5,6 @@ import "../../token/ERC20/IERC20.sol";
import "../../token/ERC20/SafeERC20.sol"; import "../../token/ERC20/SafeERC20.sol";
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
/** /**
* @title AllowanceCrowdsale * @title AllowanceCrowdsale
* @dev Extension of Crowdsale where tokens are held by a wallet, which approves an allowance to the crowdsale. * @dev Extension of Crowdsale where tokens are held by a wallet, which approves an allowance to the crowdsale.
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../Crowdsale.sol"; import "../Crowdsale.sol";
import "../../token/ERC20/ERC20Mintable.sol"; import "../../token/ERC20/ERC20Mintable.sol";
/** /**
* @title MintedCrowdsale * @title MintedCrowdsale
* @dev Extension of Crowdsale contract whose tokens are minted in each purchase. * @dev Extension of Crowdsale contract whose tokens are minted in each purchase.
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../validation/TimedCrowdsale.sol"; import "../validation/TimedCrowdsale.sol";
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
/** /**
* @title IncreasingPriceCrowdsale * @title IncreasingPriceCrowdsale
* @dev Extension of Crowdsale contract that increases the price of tokens linearly in time. * @dev Extension of Crowdsale contract that increases the price of tokens linearly in time.
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
import "../Crowdsale.sol"; import "../Crowdsale.sol";
/** /**
* @title CappedCrowdsale * @title CappedCrowdsale
* @dev Crowdsale with a limit for total contributions. * @dev Crowdsale with a limit for total contributions.
......
...@@ -4,7 +4,6 @@ import "../../math/SafeMath.sol"; ...@@ -4,7 +4,6 @@ import "../../math/SafeMath.sol";
import "../Crowdsale.sol"; import "../Crowdsale.sol";
import "../../access/roles/CapperRole.sol"; import "../../access/roles/CapperRole.sol";
/** /**
* @title IndividuallyCappedCrowdsale * @title IndividuallyCappedCrowdsale
* @dev Crowdsale with per-beneficiary caps. * @dev Crowdsale with per-beneficiary caps.
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
import "../Crowdsale.sol"; import "../Crowdsale.sol";
/** /**
* @title TimedCrowdsale * @title TimedCrowdsale
* @dev Crowdsale accepting contributions only within a time frame. * @dev Crowdsale accepting contributions only within a time frame.
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Elliptic curve signature operations * @title Elliptic curve signature operations
* @dev Based on https://gist.github.com/axic/5b33912c6f61ae6fd96d6c4a47afde6d * @dev Based on https://gist.github.com/axic/5b33912c6f61ae6fd96d6c4a47afde6d
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title MerkleProof * @title MerkleProof
* @dev Merkle proof verification based on * @dev Merkle proof verification based on
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../payment/PullPayment.sol"; import "../payment/PullPayment.sol";
import "../ownership/Ownable.sol"; import "../ownership/Ownable.sol";
/** /**
* @title BreakInvariantBounty * @title BreakInvariantBounty
* @dev This bounty will pay out to a researcher if they break invariant logic of the contract. * @dev This bounty will pay out to a researcher if they break invariant logic of the contract.
...@@ -79,7 +77,6 @@ contract BreakInvariantBounty is PullPayment, Ownable { ...@@ -79,7 +77,6 @@ contract BreakInvariantBounty is PullPayment, Ownable {
} }
/** /**
* @title Target * @title Target
* @dev Your main contract should inherit from this class and implement the checkInvariant method. * @dev Your main contract should inherit from this class and implement the checkInvariant method.
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Counter * @title Counter
* @author Matt Condon (@shrugs) * @author Matt Condon (@shrugs)
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../../token/ERC20/IERC20.sol"; import "../../token/ERC20/IERC20.sol";
/** /**
* @title ERC-1047 Token Metadata * @title ERC-1047 Token Metadata
* @dev See https://eips.ethereum.org/EIPS/eip-1046 * @dev See https://eips.ethereum.org/EIPS/eip-1046
...@@ -13,7 +12,6 @@ contract ERC20TokenMetadata is IERC20 { ...@@ -13,7 +12,6 @@ contract ERC20TokenMetadata is IERC20 {
function tokenURI() external view returns (string); function tokenURI() external view returns (string);
} }
contract ERC20WithMetadata is ERC20TokenMetadata { contract ERC20WithMetadata is ERC20TokenMetadata {
string private _tokenURI = ""; string private _tokenURI = "";
......
...@@ -5,7 +5,6 @@ import "../token/ERC20/ERC20Mintable.sol"; ...@@ -5,7 +5,6 @@ import "../token/ERC20/ERC20Mintable.sol";
import "../token/ERC20/SafeERC20.sol"; import "../token/ERC20/SafeERC20.sol";
import "../math/Math.sol"; import "../math/Math.sol";
/** /**
* @title ERC20Migrator * @title ERC20Migrator
* @dev This contract can be used to migrate an ERC20 token from one * @dev This contract can be used to migrate an ERC20 token from one
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../access/roles/SignerRole.sol"; import "../access/roles/SignerRole.sol";
import "../cryptography/ECDSA.sol"; import "../cryptography/ECDSA.sol";
/** /**
* @title SignatureBouncer * @title SignatureBouncer
* @author PhABC, Shrugs and aflesher * @author PhABC, Shrugs and aflesher
......
...@@ -6,7 +6,6 @@ import "../token/ERC20/SafeERC20.sol"; ...@@ -6,7 +6,6 @@ import "../token/ERC20/SafeERC20.sol";
import "../ownership/Ownable.sol"; import "../ownership/Ownable.sol";
import "../math/SafeMath.sol"; import "../math/SafeMath.sol";
/** /**
* @title TokenVesting * @title TokenVesting
* @dev A token holder contract that can release its token balance gradually like a * @dev A token holder contract that can release its token balance gradually like a
......
...@@ -5,7 +5,6 @@ import "../crowdsale/distribution/RefundableCrowdsale.sol"; ...@@ -5,7 +5,6 @@ import "../crowdsale/distribution/RefundableCrowdsale.sol";
import "../crowdsale/emission/MintedCrowdsale.sol"; import "../crowdsale/emission/MintedCrowdsale.sol";
import "../token/ERC20/ERC20Mintable.sol"; import "../token/ERC20/ERC20Mintable.sol";
/** /**
* @title SampleCrowdsaleToken * @title SampleCrowdsaleToken
* @dev Very simple ERC20 Token that can be minted. * @dev Very simple ERC20 Token that can be minted.
...@@ -18,7 +17,6 @@ contract SampleCrowdsaleToken is ERC20Mintable { ...@@ -18,7 +17,6 @@ contract SampleCrowdsaleToken is ERC20Mintable {
uint8 public constant decimals = 18; uint8 public constant decimals = 18;
} }
/** /**
* @title SampleCrowdsale * @title SampleCrowdsale
* @dev This is an example of a fully fledged crowdsale. * @dev This is an example of a fully fledged crowdsale.
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../token/ERC20/ERC20.sol"; import "../token/ERC20/ERC20.sol";
/** /**
* @title SimpleToken * @title SimpleToken
* @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./IERC165.sol"; import "./IERC165.sol";
/** /**
* @title ERC165 * @title ERC165
* @author Matt Condon (@shrugs) * @author Matt Condon (@shrugs)
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title ERC165Checker * @title ERC165Checker
* @dev Use `using ERC165Checker for address`; to include this library * @dev Use `using ERC165Checker for address`; to include this library
...@@ -16,7 +15,6 @@ library ERC165Checker { ...@@ -16,7 +15,6 @@ library ERC165Checker {
* bytes4(keccak256('supportsInterface(bytes4)')) * bytes4(keccak256('supportsInterface(bytes4)'))
*/ */
/** /**
* @notice Query if a contract supports ERC165 * @notice Query if a contract supports ERC165
* @param account The address of the contract to query for support of ERC165 * @param account The address of the contract to query for support of ERC165
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title IERC165 * @title IERC165
* @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../access/roles/PauserRole.sol"; import "../access/roles/PauserRole.sol";
/** /**
* @title Pausable * @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism. * @dev Base contract which allows children to implement an emergency stop mechanism.
...@@ -13,7 +12,6 @@ contract Pausable is PauserRole { ...@@ -13,7 +12,6 @@ contract Pausable is PauserRole {
bool private _paused = false; bool private _paused = false;
/** /**
* @return true if the contract is paused, false otherwise. * @return true if the contract is paused, false otherwise.
*/ */
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Math * @title Math
* @dev Assorted math operations * @dev Assorted math operations
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title SafeMath * @title SafeMath
* @dev Math operations with safety checks that revert on error * @dev Math operations with safety checks that revert on error
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../utils/Address.sol"; import "../utils/Address.sol";
contract AddressImpl { contract AddressImpl {
function isContract(address account) function isContract(address account)
external external
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/IERC20.sol"; import "../token/ERC20/IERC20.sol";
import "../crowdsale/emission/AllowanceCrowdsale.sol"; import "../crowdsale/emission/AllowanceCrowdsale.sol";
contract AllowanceCrowdsaleImpl is AllowanceCrowdsale { contract AllowanceCrowdsaleImpl is AllowanceCrowdsale {
constructor ( constructor (
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/IERC20.sol"; import "../token/ERC20/IERC20.sol";
import "../crowdsale/validation/CappedCrowdsale.sol"; import "../crowdsale/validation/CappedCrowdsale.sol";
contract CappedCrowdsaleImpl is CappedCrowdsale { contract CappedCrowdsaleImpl is CappedCrowdsale {
constructor ( constructor (
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../access/roles/CapperRole.sol"; import "../access/roles/CapperRole.sol";
contract CapperRoleMock is CapperRole { contract CapperRoleMock is CapperRole {
function removeCapper(address account) public { function removeCapper(address account) public {
_removeCapper(account); _removeCapper(account);
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../payment/ConditionalEscrow.sol"; import "../payment/ConditionalEscrow.sol";
// mock class using ConditionalEscrow // mock class using ConditionalEscrow
contract ConditionalEscrowMock is ConditionalEscrow { contract ConditionalEscrowMock is ConditionalEscrow {
mapping(address => bool) private _allowed; mapping(address => bool) private _allowed;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../drafts/Counter.sol"; import "../drafts/Counter.sol";
contract CounterImpl { contract CounterImpl {
using Counter for Counter.Counter; using Counter for Counter.Counter;
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20.sol"; import "../token/ERC20/ERC20.sol";
import "../token/ERC20/ERC20Detailed.sol"; import "../token/ERC20/ERC20Detailed.sol";
contract ERC20DetailedMock is ERC20, ERC20Detailed { contract ERC20DetailedMock is ERC20, ERC20Detailed {
constructor( constructor(
string name, string name,
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../cryptography/ECDSA.sol"; import "../cryptography/ECDSA.sol";
contract ECDSAMock { contract ECDSAMock {
using ECDSA for bytes32; using ECDSA for bytes32;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../../introspection/IERC165.sol"; import "../../introspection/IERC165.sol";
/** /**
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-214.md#specification * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-214.md#specification
* > Any attempts to make state-changing operations inside an execution instance with STATIC set to true will instead throw an exception. * > Any attempts to make state-changing operations inside an execution instance with STATIC set to true will instead throw an exception.
...@@ -56,8 +55,6 @@ contract SupportsInterfaceWithLookupMock is IERC165 { ...@@ -56,8 +55,6 @@ contract SupportsInterfaceWithLookupMock is IERC165 {
} }
} }
contract ERC165InterfacesSupported is SupportsInterfaceWithLookupMock { contract ERC165InterfacesSupported is SupportsInterfaceWithLookupMock {
constructor (bytes4[] interfaceIds) constructor (bytes4[] interfaceIds)
public public
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
contract ERC165NotSupported { contract ERC165NotSupported {
} }
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../introspection/ERC165Checker.sol"; import "../introspection/ERC165Checker.sol";
contract ERC165CheckerMock { contract ERC165CheckerMock {
using ERC165Checker for address; using ERC165Checker for address;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../introspection/ERC165.sol"; import "../introspection/ERC165.sol";
contract ERC165Mock is ERC165 { contract ERC165Mock is ERC165 {
function registerInterface(bytes4 interfaceId) function registerInterface(bytes4 interfaceId)
public public
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20Burnable.sol"; import "../token/ERC20/ERC20Burnable.sol";
contract ERC20BurnableMock is ERC20Burnable { contract ERC20BurnableMock is ERC20Burnable {
constructor(address initialAccount, uint256 initialBalance) public { constructor(address initialAccount, uint256 initialBalance) public {
......
...@@ -3,6 +3,5 @@ pragma solidity ^0.4.24; ...@@ -3,6 +3,5 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20Mintable.sol"; import "../token/ERC20/ERC20Mintable.sol";
import "./MinterRoleMock.sol"; import "./MinterRoleMock.sol";
contract ERC20MintableMock is ERC20Mintable, MinterRoleMock { contract ERC20MintableMock is ERC20Mintable, MinterRoleMock {
} }
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20.sol"; import "../token/ERC20/ERC20.sol";
// mock class using ERC20 // mock class using ERC20
contract ERC20Mock is ERC20 { contract ERC20Mock is ERC20 {
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20Pausable.sol"; import "../token/ERC20/ERC20Pausable.sol";
import "./PauserRoleMock.sol"; import "./PauserRoleMock.sol";
// mock class using ERC20Pausable // mock class using ERC20Pausable
contract ERC20PausableMock is ERC20Pausable, PauserRoleMock { contract ERC20PausableMock is ERC20Pausable, PauserRoleMock {
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20.sol"; import "../token/ERC20/ERC20.sol";
import "../drafts/ERC1046/TokenMetadata.sol"; import "../drafts/ERC1046/TokenMetadata.sol";
contract ERC20WithMetadataMock is ERC20, ERC20WithMetadata { contract ERC20WithMetadataMock is ERC20, ERC20WithMetadata {
constructor(string tokenURI) public constructor(string tokenURI) public
ERC20WithMetadata(tokenURI) ERC20WithMetadata(tokenURI)
......
...@@ -5,7 +5,6 @@ import "../token/ERC721/ERC721Mintable.sol"; ...@@ -5,7 +5,6 @@ import "../token/ERC721/ERC721Mintable.sol";
import "../token/ERC721/ERC721MetadataMintable.sol"; import "../token/ERC721/ERC721MetadataMintable.sol";
import "../token/ERC721/ERC721Burnable.sol"; import "../token/ERC721/ERC721Burnable.sol";
/** /**
* @title ERC721FullMock * @title ERC721FullMock
* This mock just provides a public mint and burn functions for testing purposes, * This mock just provides a public mint and burn functions for testing purposes,
......
...@@ -5,7 +5,6 @@ import "../token/ERC721/ERC721Mintable.sol"; ...@@ -5,7 +5,6 @@ import "../token/ERC721/ERC721Mintable.sol";
import "../token/ERC721/ERC721MetadataMintable.sol"; import "../token/ERC721/ERC721MetadataMintable.sol";
import "../token/ERC721/ERC721Burnable.sol"; import "../token/ERC721/ERC721Burnable.sol";
/** /**
* @title ERC721MintableBurnableImpl * @title ERC721MintableBurnableImpl
*/ */
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../token/ERC721/ERC721.sol"; import "../token/ERC721/ERC721.sol";
/** /**
* @title ERC721Mock * @title ERC721Mock
* This mock just provides a public mint and burn functions for testing purposes * This mock just provides a public mint and burn functions for testing purposes
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC721/ERC721Pausable.sol"; import "../token/ERC721/ERC721Pausable.sol";
import "./PauserRoleMock.sol"; import "./PauserRoleMock.sol";
/** /**
* @title ERC721PausableMock * @title ERC721PausableMock
* This mock just provides a public mint, burn and exists functions for testing purposes * This mock just provides a public mint, burn and exists functions for testing purposes
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../token/ERC721/IERC721Receiver.sol"; import "../token/ERC721/IERC721Receiver.sol";
contract ERC721ReceiverMock is IERC721Receiver { contract ERC721ReceiverMock is IERC721Receiver {
bytes4 private _retval; bytes4 private _retval;
bool private _reverts; bool private _reverts;
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/IERC20.sol"; import "../token/ERC20/IERC20.sol";
import "../crowdsale/distribution/FinalizableCrowdsale.sol"; import "../crowdsale/distribution/FinalizableCrowdsale.sol";
contract FinalizableCrowdsaleImpl is FinalizableCrowdsale { contract FinalizableCrowdsaleImpl is FinalizableCrowdsale {
constructor ( constructor (
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../crowdsale/price/IncreasingPriceCrowdsale.sol"; import "../crowdsale/price/IncreasingPriceCrowdsale.sol";
import "../math/SafeMath.sol"; import "../math/SafeMath.sol";
contract IncreasingPriceCrowdsaleImpl is IncreasingPriceCrowdsale { contract IncreasingPriceCrowdsaleImpl is IncreasingPriceCrowdsale {
constructor ( constructor (
......
...@@ -4,7 +4,6 @@ import "../token/ERC20/IERC20.sol"; ...@@ -4,7 +4,6 @@ import "../token/ERC20/IERC20.sol";
import "../crowdsale/validation/IndividuallyCappedCrowdsale.sol"; import "../crowdsale/validation/IndividuallyCappedCrowdsale.sol";
import "./CapperRoleMock.sol"; import "./CapperRoleMock.sol";
contract IndividuallyCappedCrowdsaleImpl contract IndividuallyCappedCrowdsaleImpl
is IndividuallyCappedCrowdsale, CapperRoleMock { is IndividuallyCappedCrowdsale, CapperRoleMock {
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../math/Math.sol"; import "../math/Math.sol";
contract MathMock { contract MathMock {
function max(uint256 a, uint256 b) public pure returns (uint256) { function max(uint256 a, uint256 b) public pure returns (uint256) {
return Math.max(a, b); return Math.max(a, b);
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import { MerkleProof } from "../cryptography/MerkleProof.sol"; import { MerkleProof } from "../cryptography/MerkleProof.sol";
contract MerkleProofWrapper { contract MerkleProofWrapper {
function verify( function verify(
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20Mintable.sol"; import "../token/ERC20/ERC20Mintable.sol";
import "../crowdsale/emission/MintedCrowdsale.sol"; import "../crowdsale/emission/MintedCrowdsale.sol";
contract MintedCrowdsaleImpl is MintedCrowdsale { contract MintedCrowdsaleImpl is MintedCrowdsale {
constructor ( constructor (
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../access/roles/MinterRole.sol"; import "../access/roles/MinterRole.sol";
contract MinterRoleMock is MinterRole { contract MinterRoleMock is MinterRole {
function removeMinter(address account) public { function removeMinter(address account) public {
_removeMinter(account); _removeMinter(account);
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../lifecycle/Pausable.sol"; import "../lifecycle/Pausable.sol";
import "./PauserRoleMock.sol"; import "./PauserRoleMock.sol";
// mock class using Pausable // mock class using Pausable
contract PausableMock is Pausable, PauserRoleMock { contract PausableMock is Pausable, PauserRoleMock {
bool public drasticMeasureTaken; bool public drasticMeasureTaken;
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../access/roles/PauserRole.sol"; import "../access/roles/PauserRole.sol";
contract PauserRoleMock is PauserRole { contract PauserRoleMock is PauserRole {
function removePauser(address account) public { function removePauser(address account) public {
_removePauser(account); _removePauser(account);
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/IERC20.sol"; import "../token/ERC20/IERC20.sol";
import "../crowdsale/distribution/PostDeliveryCrowdsale.sol"; import "../crowdsale/distribution/PostDeliveryCrowdsale.sol";
contract PostDeliveryCrowdsaleImpl is PostDeliveryCrowdsale { contract PostDeliveryCrowdsaleImpl is PostDeliveryCrowdsale {
constructor ( constructor (
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../payment/PullPayment.sol"; import "../payment/PullPayment.sol";
// mock class using PullPayment // mock class using PullPayment
contract PullPaymentMock is PullPayment { contract PullPaymentMock is PullPayment {
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
contract ReentrancyAttack { contract ReentrancyAttack {
function callSender(bytes4 data) public { function callSender(bytes4 data) public {
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../utils/ReentrancyGuard.sol"; import "../utils/ReentrancyGuard.sol";
import "./ReentrancyAttack.sol"; import "./ReentrancyAttack.sol";
contract ReentrancyMock is ReentrancyGuard { contract ReentrancyMock is ReentrancyGuard {
uint256 public counter; uint256 public counter;
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/ERC20Mintable.sol"; import "../token/ERC20/ERC20Mintable.sol";
import "../crowdsale/distribution/RefundableCrowdsale.sol"; import "../crowdsale/distribution/RefundableCrowdsale.sol";
contract RefundableCrowdsaleImpl is RefundableCrowdsale { contract RefundableCrowdsaleImpl is RefundableCrowdsale {
constructor ( constructor (
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../access/Roles.sol"; import "../access/Roles.sol";
contract RolesMock { contract RolesMock {
using Roles for Roles.Role; using Roles for Roles.Role;
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/IERC20.sol"; import "../token/ERC20/IERC20.sol";
import "../token/ERC20/SafeERC20.sol"; import "../token/ERC20/SafeERC20.sol";
contract ERC20FailingMock is IERC20 { contract ERC20FailingMock is IERC20 {
function totalSupply() public view returns (uint256) { function totalSupply() public view returns (uint256) {
return 0; return 0;
...@@ -30,7 +29,6 @@ contract ERC20FailingMock is IERC20 { ...@@ -30,7 +29,6 @@ contract ERC20FailingMock is IERC20 {
} }
} }
contract ERC20SucceedingMock is IERC20 { contract ERC20SucceedingMock is IERC20 {
function totalSupply() public view returns (uint256) { function totalSupply() public view returns (uint256) {
return 0; return 0;
...@@ -57,7 +55,6 @@ contract ERC20SucceedingMock is IERC20 { ...@@ -57,7 +55,6 @@ contract ERC20SucceedingMock is IERC20 {
} }
} }
contract SafeERC20Helper { contract SafeERC20Helper {
using SafeERC20 for IERC20; using SafeERC20 for IERC20;
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
import "../math/SafeMath.sol"; import "../math/SafeMath.sol";
contract SafeMathMock { contract SafeMathMock {
function mul(uint256 a, uint256 b) public pure returns (uint256) { function mul(uint256 a, uint256 b) public pure returns (uint256) {
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../ownership/Secondary.sol"; import "../ownership/Secondary.sol";
contract SecondaryMock is Secondary { contract SecondaryMock is Secondary {
function onlyPrimaryMock() public view onlyPrimary { function onlyPrimaryMock() public view onlyPrimary {
} }
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../drafts/SignatureBouncer.sol"; import "../drafts/SignatureBouncer.sol";
import "./SignerRoleMock.sol"; import "./SignerRoleMock.sol";
contract SignatureBouncerMock is SignatureBouncer, SignerRoleMock { contract SignatureBouncerMock is SignatureBouncer, SignerRoleMock {
function checkValidSignature(address account, bytes signature) function checkValidSignature(address account, bytes signature)
public public
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../access/roles/SignerRole.sol"; import "../access/roles/SignerRole.sol";
contract SignerRoleMock is SignerRole { contract SignerRoleMock is SignerRole {
function removeSigner(address account) public { function removeSigner(address account) public {
_removeSigner(account); _removeSigner(account);
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../token/ERC20/IERC20.sol"; import "../token/ERC20/IERC20.sol";
import "../crowdsale/validation/TimedCrowdsale.sol"; import "../crowdsale/validation/TimedCrowdsale.sol";
contract TimedCrowdsaleImpl is TimedCrowdsale { contract TimedCrowdsaleImpl is TimedCrowdsale {
constructor ( constructor (
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Ownable * @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control * @dev The Ownable contract has an owner address, and provides basic authorization control
...@@ -14,7 +13,6 @@ contract Ownable { ...@@ -14,7 +13,6 @@ contract Ownable {
address indexed newOwner address indexed newOwner
); );
/** /**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender * @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account. * account.
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Secondary * @title Secondary
* @dev A Secondary contract can only be used by its primary account (the one that created it) * @dev A Secondary contract can only be used by its primary account (the one that created it)
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./Escrow.sol"; import "./Escrow.sol";
/** /**
* @title ConditionalEscrow * @title ConditionalEscrow
* @dev Base abstract escrow to only allow withdrawal if a condition is met. * @dev Base abstract escrow to only allow withdrawal if a condition is met.
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "../math/SafeMath.sol"; import "../math/SafeMath.sol";
import "../ownership/Secondary.sol"; import "../ownership/Secondary.sol";
/** /**
* @title Escrow * @title Escrow
* @dev Base escrow contract, holds funds destinated to a payee until they * @dev Base escrow contract, holds funds destinated to a payee until they
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./Escrow.sol"; import "./Escrow.sol";
/** /**
* @title PullPayment * @title PullPayment
* @dev Base contract supporting async send for pull payments. Inherit from this * @dev Base contract supporting async send for pull payments. Inherit from this
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./ConditionalEscrow.sol"; import "./ConditionalEscrow.sol";
/** /**
* @title RefundEscrow * @title RefundEscrow
* @dev Escrow that holds funds for a beneficiary, deposited from multiple parties. * @dev Escrow that holds funds for a beneficiary, deposited from multiple parties.
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../math/SafeMath.sol"; import "../math/SafeMath.sol";
/** /**
* @title SplitPayment * @title SplitPayment
* @dev This contract can be used when payments need to be received by a group * @dev This contract can be used when payments need to be received by a group
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "./IERC20.sol"; import "./IERC20.sol";
import "../../math/SafeMath.sol"; import "../../math/SafeMath.sol";
/** /**
* @title Standard ERC20 token * @title Standard ERC20 token
* *
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./ERC20.sol"; import "./ERC20.sol";
/** /**
* @title Burnable Token * @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed). * @dev Token that can be irreversibly burned (destroyed).
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./ERC20Mintable.sol"; import "./ERC20Mintable.sol";
/** /**
* @title Capped token * @title Capped token
* @dev Mintable token with a token cap. * @dev Mintable token with a token cap.
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./IERC20.sol"; import "./IERC20.sol";
/** /**
* @title ERC20Detailed token * @title ERC20Detailed token
* @dev The decimals are only for visualization purposes. * @dev The decimals are only for visualization purposes.
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "./ERC20.sol"; import "./ERC20.sol";
import "../../access/roles/MinterRole.sol"; import "../../access/roles/MinterRole.sol";
/** /**
* @title ERC20Mintable * @title ERC20Mintable
* @dev ERC20 minting logic * @dev ERC20 minting logic
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "./ERC20.sol"; import "./ERC20.sol";
import "../../lifecycle/Pausable.sol"; import "../../lifecycle/Pausable.sol";
/** /**
* @title Pausable token * @title Pausable token
* @dev ERC20 modified with pausable transfers. * @dev ERC20 modified with pausable transfers.
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title ERC20 interface * @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20 * @dev see https://github.com/ethereum/EIPs/issues/20
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "./ERC20.sol"; import "./ERC20.sol";
import "./IERC20.sol"; import "./IERC20.sol";
/** /**
* @title SafeERC20 * @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure. * @dev Wrappers around ERC20 operations that throw on failure.
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./SafeERC20.sol"; import "./SafeERC20.sol";
/** /**
* @title TokenTimelock * @title TokenTimelock
* @dev TokenTimelock is a token holder contract that will allow a * @dev TokenTimelock is a token holder contract that will allow a
......
...@@ -6,7 +6,6 @@ import "../../math/SafeMath.sol"; ...@@ -6,7 +6,6 @@ import "../../math/SafeMath.sol";
import "../../utils/Address.sol"; import "../../utils/Address.sol";
import "../../introspection/ERC165.sol"; import "../../introspection/ERC165.sol";
/** /**
* @title ERC721 Non-Fungible Token Standard basic implementation * @title ERC721 Non-Fungible Token Standard basic implementation
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./ERC721.sol"; import "./ERC721.sol";
contract ERC721Burnable is ERC721 { contract ERC721Burnable is ERC721 {
function burn(uint256 tokenId) function burn(uint256 tokenId)
public public
......
...@@ -4,7 +4,6 @@ import "./IERC721Enumerable.sol"; ...@@ -4,7 +4,6 @@ import "./IERC721Enumerable.sol";
import "./ERC721.sol"; import "./ERC721.sol";
import "../../introspection/ERC165.sol"; import "../../introspection/ERC165.sol";
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs // Mapping from owner to list of owned token IDs
mapping(address => uint256[]) private _ownedTokens; mapping(address => uint256[]) private _ownedTokens;
......
...@@ -4,7 +4,6 @@ import "./ERC721.sol"; ...@@ -4,7 +4,6 @@ import "./ERC721.sol";
import "./ERC721Enumerable.sol"; import "./ERC721Enumerable.sol";
import "./ERC721Metadata.sol"; import "./ERC721Metadata.sol";
/** /**
* @title Full ERC721 Token * @title Full ERC721 Token
* This implementation includes all the required and some optional functionality of the ERC721 standard * This implementation includes all the required and some optional functionality of the ERC721 standard
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./IERC721Receiver.sol"; import "./IERC721Receiver.sol";
contract ERC721Holder is IERC721Receiver { contract ERC721Holder is IERC721Receiver {
function onERC721Received( function onERC721Received(
address, address,
......
...@@ -4,7 +4,6 @@ import "./ERC721.sol"; ...@@ -4,7 +4,6 @@ import "./ERC721.sol";
import "./IERC721Metadata.sol"; import "./IERC721Metadata.sol";
import "../../introspection/ERC165.sol"; import "../../introspection/ERC165.sol";
contract ERC721Metadata is ERC165, ERC721, IERC721Metadata { contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
// Token name // Token name
string internal _name; string internal _name;
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "./ERC721.sol"; import "./ERC721.sol";
import "../../access/roles/MinterRole.sol"; import "../../access/roles/MinterRole.sol";
/** /**
* @title ERC721Mintable * @title ERC721Mintable
* @dev ERC721 minting logic * @dev ERC721 minting logic
......
...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24; ...@@ -3,7 +3,6 @@ pragma solidity ^0.4.24;
import "./ERC721.sol"; import "./ERC721.sol";
import "../../lifecycle/Pausable.sol"; import "../../lifecycle/Pausable.sol";
/** /**
* @title ERC721 Non-Fungible Pausable token * @title ERC721 Non-Fungible Pausable token
* @dev ERC721 modified with pausable transfers. * @dev ERC721 modified with pausable transfers.
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "../../introspection/IERC165.sol"; import "../../introspection/IERC165.sol";
/** /**
* @title ERC721 Non-Fungible Token Standard basic interface * @title ERC721 Non-Fungible Token Standard basic interface
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./IERC721.sol"; import "./IERC721.sol";
/** /**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
......
...@@ -4,7 +4,6 @@ import "./IERC721.sol"; ...@@ -4,7 +4,6 @@ import "./IERC721.sol";
import "./IERC721Enumerable.sol"; import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol"; import "./IERC721Metadata.sol";
/** /**
* @title ERC-721 Non-Fungible Token Standard, full implementation interface * @title ERC-721 Non-Fungible Token Standard, full implementation interface
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
......
...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24; ...@@ -2,7 +2,6 @@ pragma solidity ^0.4.24;
import "./IERC721.sol"; import "./IERC721.sol";
/** /**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title ERC721 token receiver interface * @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers * @dev Interface for any contract that wants to support safeTransfers
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* Utility library of inline functions on addresses * Utility library of inline functions on addresses
*/ */
......
pragma solidity ^0.4.24; pragma solidity ^0.4.24;
/** /**
* @title Helps contracts guard against reentrancy attacks. * @title Helps contracts guard against reentrancy attacks.
* @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io> * @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment