{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/token/YaxisToken.sol",
    "Parent Contracts": [
        "contracts/vendor/LinkToken/ERC677Token.sol",
        "contracts/vendor/LinkToken/token/ERC677.sol",
        "contracts/vendor/LinkToken/token/LinkERC20.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol",
        "node_modules/@openzeppelin/contracts/GSN/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract YaxisToken is LinkERC20, ERC677Token {\n    uint256 private constant TOTAL_SUPPLY = 11*10**24;\n    string private constant NAME = \"yAxis V2\";\n    string private constant SYMBOL = \"YAXIS\";\n\n    constructor()\n        public\n        ERC20(NAME, SYMBOL)\n    {\n        _onCreate();\n    }\n\n    /**\n     * @dev Hook that is called when this contract is created.\n     * Useful to override constructor behaviour in child contracts (e.g., LINK bridge tokens).\n     * @notice Default implementation mints 10**27 tokens to msg.sender\n     */\n    function _onCreate()\n        internal\n        virtual\n    {\n        _mint(msg.sender, TOTAL_SUPPLY);\n    }\n\n    /**\n     * @dev Moves tokens `amount` from `sender` to `recipient`.\n     *\n     * This is internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * Requirements:\n     *\n     * - `sender` cannot be the zero address.\n     * - `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     */\n    function _transfer(address sender, address recipient, uint256 amount)\n        internal\n        override\n        virtual\n        validAddress(recipient)\n    {\n        super._transfer(sender, recipient, amount);\n    }\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.\n     *\n     * This is internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     */\n    function _approve(address owner, address spender, uint256 amount)\n        internal\n        override\n        virtual\n        validAddress(spender)\n    {\n        super._approve(owner, spender, amount);\n    }\n\n\n    // MODIFIERS\n\n    modifier validAddress(address _recipient) {\n        require(_recipient != address(this), \"!validAddress\");\n        _;\n    }\n}"
}