ETH Price: $3,308.19 (+0.76%)

Contract

0xEC73284E4EC9bcea1A7DDDf489eAA324C3F7dd31
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve145369612025-01-26 9:28:579 mins ago1737883737IN
Hyperlock Finance: HYPER Token
0 ETH0.000000010.000347
Approve145365602025-01-26 9:15:3523 mins ago1737882935IN
Hyperlock Finance: HYPER Token
0 ETH0.000000060.0013383
Approve145338642025-01-26 7:45:431 hr ago1737877543IN
Hyperlock Finance: HYPER Token
0 ETH0.000000010.00029749
Approve145318962025-01-26 6:40:072 hrs ago1737873607IN
Hyperlock Finance: HYPER Token
0 ETH0.000000030.0014193
Approve145315162025-01-26 6:27:273 hrs ago1737872847IN
Hyperlock Finance: HYPER Token
0 ETH0.000000060.0014147
Approve145307882025-01-26 6:03:113 hrs ago1737871391IN
Hyperlock Finance: HYPER Token
0 ETH0.000000060.001381
Approve145290642025-01-26 5:05:434 hrs ago1737867943IN
Hyperlock Finance: HYPER Token
0 ETH0.000000040.00137762
Approve145286512025-01-26 4:51:574 hrs ago1737867117IN
Hyperlock Finance: HYPER Token
0 ETH00.00013782
Approve145286032025-01-26 4:50:214 hrs ago1737867021IN
Hyperlock Finance: HYPER Token
0 ETH00.00013317
Approve145273652025-01-26 4:09:055 hrs ago1737864545IN
Hyperlock Finance: HYPER Token
0 ETH0.000000060.00141892
Approve145258052025-01-26 3:17:056 hrs ago1737861425IN
Hyperlock Finance: HYPER Token
0 ETH0.000000010.00035714
Approve145192832025-01-25 23:39:419 hrs ago1737848381IN
Hyperlock Finance: HYPER Token
0 ETH0.000000010.00052351
Transfer145184062025-01-25 23:10:2710 hrs ago1737846627IN
Hyperlock Finance: HYPER Token
0 ETH0.000000070.0016
Approve145180622025-01-25 22:58:5910 hrs ago1737845939IN
Hyperlock Finance: HYPER Token
0 ETH0.000000020.0004944
Approve145176532025-01-25 22:45:2110 hrs ago1737845121IN
Hyperlock Finance: HYPER Token
0 ETH0.000000010.0004903
Approve145170942025-01-25 22:26:4311 hrs ago1737844003IN
Hyperlock Finance: HYPER Token
0 ETH0.000000070.00154424
Approve145168512025-01-25 22:18:3711 hrs ago1737843517IN
Hyperlock Finance: HYPER Token
0 ETH0.000000070.00154587
Transfer145158482025-01-25 21:45:1111 hrs ago1737841511IN
Hyperlock Finance: HYPER Token
0 ETH0.000000020.00044918
Approve145143432025-01-25 20:55:0112 hrs ago1737838501IN
Hyperlock Finance: HYPER Token
0 ETH0.000000070.0015364
Approve145130822025-01-25 20:12:5913 hrs ago1737835979IN
Hyperlock Finance: HYPER Token
0 ETH0.000000060.00133584
Approve145124332025-01-25 19:51:2113 hrs ago1737834681IN
Hyperlock Finance: HYPER Token
0 ETH0.000000010.00028766
Approve145117972025-01-25 19:30:0914 hrs ago1737833409IN
Hyperlock Finance: HYPER Token
0 ETH0.000000050.00121876
Approve145115642025-01-25 19:22:2314 hrs ago1737832943IN
Hyperlock Finance: HYPER Token
0 ETH0.000000050.00128127
Approve145099322025-01-25 18:27:5915 hrs ago1737829679IN
Hyperlock Finance: HYPER Token
0 ETH00.00005836
Transfer145069372025-01-25 16:48:0916 hrs ago1737823689IN
Hyperlock Finance: HYPER Token
0 ETH00.00002378
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AuraToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 7 : Aura.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;

import { ERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/ERC20.sol";
import { Ownable } from "@openzeppelin/contracts-0.8/access/Ownable.sol";
import { AuraMath } from "../utils/AuraMath.sol";

/**
 * @title   AuraToken
 * @notice  Basically an ERC20 with minting functionality operated by the "minter" and GaugeVoter.
 * @dev     The minting schedule is based on the amount of CRV earned through staking and is
 *          distributed along a supply curve (cliffs etc). Fork of ConvexToken.
 */
contract AuraToken is ERC20, Ownable {
    using AuraMath for uint256;

    /* -------------------------------------------------------------------
       Storage
    ------------------------------------------------------------------- */

    uint256 public constant EMISSIONS_MAX_SUPPLY = 45e24; // 45m
    uint256 public constant INIT_MINT_AMOUNT = 55e24; // 55m

    address public minter;
    uint256 public minterMinted = type(uint256).max;

    // Gauge voter periods
    address public gaugeVoter;
    uint256 public lastGaugeVoterMint;
    uint256 public immutable startEpoch;
    uint256 public constant gaugeVoterPeriod = 2 weeks;

    // Gauge voter mint rate
    uint256 public rampUpRate;
    uint256 public rampDownRate;
    uint256 public gaugeVoterMintRate;
    uint256 public constant RAMP_UP_END_EPOCH = 7;
    uint256 public constant INIT_GAUGE_VOTER_MINT_RATE = 45e22; // 450,000 (110,000/wk)
    uint256 public constant RAMP_DENOMINATOR = 10_000;

    /* -------------------------------------------------------------------
       Events
    ------------------------------------------------------------------- */

    event Initialised();
    event SetGaugeVoter(address gaugeVoter);
    event SetRampRates(uint256 rampUpRate, uint256 rampDownRate);

    /* -------------------------------------------------------------------
       Init
    ------------------------------------------------------------------- */

    /**
     * @param _nameArg      Token name
     * @param _symbolArg    Token symbol
     */
    constructor(string memory _nameArg, string memory _symbolArg) ERC20(_nameArg, _symbolArg) {
        startEpoch = _getCurrentEpoch();
    }

    /**
     * @dev Initialise and mints initial supply of tokens.
     * @param _to        Target address to mint.
     * @param _minter    The minter address.
     */
    function init(
        address _to,
        address _minter,
        address _gaugeVoter,
        uint256 _rampUpRate,
        uint256 _rampDownRate
    ) external onlyOwner {
        require(totalSupply() == 0, "Only once");
        require(_minter != address(0), "Invalid minter");
        require(_gaugeVoter != address(0), "Invalid gaugeVoter");

        _mint(_to, INIT_MINT_AMOUNT);
        minter = _minter;
        gaugeVoter = _gaugeVoter;
        minterMinted = 0;

        gaugeVoterMintRate = INIT_GAUGE_VOTER_MINT_RATE;

        rampUpRate = _rampUpRate;
        rampDownRate = _rampDownRate;

        emit Initialised();
        emit SetRampRates(_rampUpRate, _rampDownRate);
        emit SetGaugeVoter(_gaugeVoter);
    }

    /* -------------------------------------------------------------------
       Setters
    ------------------------------------------------------------------- */

    /**
     * Allows the owner to set the gauge voter mint rates
     * @param _rampUpRate The ramp up rate at which the gauge voter mints
     * @param _rampDownRate The ramp down rate at which the gauge voter mints
     */
    function setRampRates(uint256 _rampUpRate, uint256 _rampDownRate) external onlyOwner {
        rampUpRate = _rampUpRate;
        rampDownRate = _rampDownRate;
        emit SetRampRates(_rampUpRate, _rampDownRate);
    }

    /**
     * @notice Set the gauge voter address
     * @param _gaugeVoter The new gauge voter address
     */
    function setGaugeVoter(address _gaugeVoter) external onlyOwner {
        gaugeVoter = _gaugeVoter;
        emit SetGaugeVoter(_gaugeVoter);
    }

    /* -------------------------------------------------------------------
       View
    ------------------------------------------------------------------- */

    function getCurrentEpoch() external view returns (uint256) {
        return _getCurrentEpoch();
    }

    /* -------------------------------------------------------------------
       Core
    ------------------------------------------------------------------- */

    /**
     * @dev Mints AURA to the gauge voter based on the gauge voter minting schedule.
     */
    function gaugeVoterMint() external {
        require(msg.sender == gaugeVoter, "!gaugeVoter");
        uint256 currentEpoch = _getCurrentEpoch();
        require(currentEpoch > lastGaugeVoterMint, "!epoch");
        uint256 epoch = currentEpoch - startEpoch;

        uint256 emissionsMinted = totalSupply() - INIT_MINT_AMOUNT - minterMinted;
        uint256 amtTillMax = EMISSIONS_MAX_SUPPLY.sub(emissionsMinted);
        uint256 mintRate = gaugeVoterMintRate;

        if (amtTillMax < mintRate) {
            return;
        }

        // Update rate either up or down. For the first 7 epochs we ramp emissions up
        // then after that the emissions go down
        uint256 rampRate = epoch < RAMP_UP_END_EPOCH ? rampUpRate : rampDownRate;
        gaugeVoterMintRate = mintRate.mul(rampRate).div(RAMP_DENOMINATOR);

        // Set the last time the gauge voter minted to the current epoch
        lastGaugeVoterMint = currentEpoch;

        _mint(gaugeVoter, mintRate);
    }

    /**
     * @dev Allows minter to mint to a specific address
     */
    function minterMint(address _to, uint256 _amount) external {
        require(msg.sender == minter, "Only minter");
        minterMinted += _amount;
        _mint(_to, _amount);
    }

    /* -------------------------------------------------------------------
       Internal
    ------------------------------------------------------------------- */

    function _getCurrentEpoch() internal view returns (uint256) {
        return block.timestamp / gaugeVoterPeriod;
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 7 : AuraMath.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;

/// @notice A library for performing overflow-/underflow-safe math,
/// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math).
library AuraMath {
    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute.
        return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2);
    }

    function to224(uint256 a) internal pure returns (uint224 c) {
        require(a <= type(uint224).max, "AuraMath: uint224 Overflow");
        c = uint224(a);
    }

    function to128(uint256 a) internal pure returns (uint128 c) {
        require(a <= type(uint128).max, "AuraMath: uint128 Overflow");
        c = uint128(a);
    }

    function to112(uint256 a) internal pure returns (uint112 c) {
        require(a <= type(uint112).max, "AuraMath: uint112 Overflow");
        c = uint112(a);
    }

    function to96(uint256 a) internal pure returns (uint96 c) {
        require(a <= type(uint96).max, "AuraMath: uint96 Overflow");
        c = uint96(a);
    }

    function to32(uint256 a) internal pure returns (uint32 c) {
        require(a <= type(uint32).max, "AuraMath: uint32 Overflow");
        c = uint32(a);
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32.
library AuraMath32 {
    function sub(uint32 a, uint32 b) internal pure returns (uint32 c) {
        c = a - b;
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint112.
library AuraMath112 {
    function add(uint112 a, uint112 b) internal pure returns (uint112 c) {
        c = a + b;
    }

    function sub(uint112 a, uint112 b) internal pure returns (uint112 c) {
        c = a - b;
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint224.
library AuraMath224 {
    function add(uint224 a, uint224 b) internal pure returns (uint224 c) {
        c = a + b;
    }
}

Settings
{
  "metadata": {
    "bytecodeHash": "none"
  },
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_nameArg","type":"string"},{"internalType":"string","name":"_symbolArg","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"Initialised","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"gaugeVoter","type":"address"}],"name":"SetGaugeVoter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rampUpRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rampDownRate","type":"uint256"}],"name":"SetRampRates","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EMISSIONS_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INIT_GAUGE_VOTER_MINT_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INIT_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMP_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMP_UP_END_EPOCH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gaugeVoter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gaugeVoterMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gaugeVoterMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gaugeVoterPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_minter","type":"address"},{"internalType":"address","name":"_gaugeVoter","type":"address"},{"internalType":"uint256","name":"_rampUpRate","type":"uint256"},{"internalType":"uint256","name":"_rampDownRate","type":"uint256"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastGaugeVoterMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"minterMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minterMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampDownRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampUpRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gaugeVoter","type":"address"}],"name":"setGaugeVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rampUpRate","type":"uint256"},{"internalType":"uint256","name":"_rampDownRate","type":"uint256"}],"name":"setRampRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000196007553480156200001757600080fd5b50604051620018c6380380620018c68339810160408190526200003a916200027b565b8151829082906200005390600390602085019062000108565b5080516200006990600490602084019062000108565b50505062000086620000806200009c60201b60201c565b620000a0565b62000090620000f2565b60805250620003459050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001036212750042620002e5565b905090565b828054620001169062000308565b90600052602060002090601f0160209004810192826200013a576000855562000185565b82601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b5b8082111562000193576000815560010162000198565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d657600080fd5b81516001600160401b0380821115620001f357620001f3620001ae565b604051601f8301601f19908116603f011681019082821181831017156200021e576200021e620001ae565b816040528381526020925086838588010111156200023b57600080fd5b600091505b838210156200025f578582018301518183018401529082019062000240565b83821115620002715760008385830101525b9695505050505050565b600080604083850312156200028f57600080fd5b82516001600160401b0380821115620002a757600080fd5b620002b586838701620001c4565b93506020850151915080821115620002cc57600080fd5b50620002db85828601620001c4565b9150509250929050565b6000826200030357634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200031d57607f821691505b602082108114156200033f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161155e62000368600039600081816103e00152610a03015261155e6000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c806370a082311161012a578063a457c2d7116100bd578063b97dd9e21161008c578063dd62ed3e11610071578063dd62ed3e14610455578063e6c6700e1461048e578063f2fde38b146104a057600080fd5b8063b97dd9e21461043a578063ca9bf1721461044257600080fd5b8063a457c2d714610402578063a9059cbb14610415578063b801573d14610428578063b91d9b8f1461043157600080fd5b806395d89b41116100f957806395d89b41146103c05780639cbfeb39146103c85780639daa1de6146103d1578063a2c8b177146103db57600080fd5b806370a082311461036b578063715018a61461039457806381ca29a11461039c5780638da5cb5b146103af57600080fd5b806321f314ca116101bd5780633e23299f1161018c578063496c22ec11610171578063496c22ec1461033f5780635ac4f517146103505780636cd163391461035957600080fd5b80633e23299f14610324578063484dd0151461032c57600080fd5b806321f314ca146102dc57806323b872dd146102ef578063313ce56714610302578063395093511461031157600080fd5b806312e90dc0116101f957806312e90dc0146102ac57806318160ddd146102c35780631831cecc146102cb5780631f3213b5146102d457600080fd5b80630145e3331461022b57806306fdde0314610240578063075461721461025e578063095ea7b314610289575b600080fd5b61023e610239366004611310565b6104b3565b005b610248610722565b6040516102559190611365565b60405180910390f35b600654610271906001600160a01b031681565b6040516001600160a01b039091168152602001610255565b61029c6102973660046113ba565b6107b4565b6040519015158152602001610255565b6102b5600b5481565b604051908152602001610255565b6002546102b5565b6102b5600c5481565b6102b5600781565b61023e6102ea3660046113ba565b6107ca565b61029c6102fd3660046113e4565b61084a565b60405160128152602001610255565b61029c61031f3660046113ba565b610909565b61023e610945565b61023e61033a366004611420565b610ada565b6102b5695f4a8c8375d15540000081565b6102b560095481565b6102b56a2d7eb3f96e070d9700000081565b6102b5610379366004611442565b6001600160a01b031660009081526020819052604090205490565b61023e610b7b565b600854610271906001600160a01b031681565b6005546001600160a01b0316610271565b610248610be1565b6102b561271081565b6102b56212750081565b6102b57f000000000000000000000000000000000000000000000000000000000000000081565b61029c6104103660046113ba565b610bf0565b61029c6104233660046113ba565b610ca1565b6102b5600a5481565b6102b560075481565b6102b5610cae565b61023e610450366004611442565b610cbd565b6102b561046336600461145d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b56a25391ee35a05c54d00000081565b61023e6104ae366004611442565b610d78565b6005546001600160a01b031633146105125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600254156105625760405162461bcd60e51b815260206004820152600960248201527f4f6e6c79206f6e636500000000000000000000000000000000000000000000006044820152606401610509565b6001600160a01b0384166105b85760405162461bcd60e51b815260206004820152600e60248201527f496e76616c6964206d696e7465720000000000000000000000000000000000006044820152606401610509565b6001600160a01b03831661060e5760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964206761756765566f74657200000000000000000000000000006044820152606401610509565b610623856a2d7eb3f96e070d97000000610e5a565b600680546001600160a01b0380871673ffffffffffffffffffffffffffffffffffffffff1992831617909255600880549286169290911691909117905560006007819055695f4a8c8375d155400000600c55600a839055600b8290556040517f09dfb9099a2610601d58030170fde7ae9db3e1bcb751c3d6800216cbe3b499b59190a160408051838152602081018390527f280a8e4dc056d32c120afffaeceda035eb208967abc8132fb38d7c92c4e0e2c0910160405180910390a16040516001600160a01b03841681527fa5bfcb4170cd59f0a051dc58c3fca92ee495be4a74413448d1b8f40aa93e93249060200160405180910390a15050505050565b60606003805461073190611490565b80601f016020809104026020016040519081016040528092919081815260200182805461075d90611490565b80156107aa5780601f1061077f576101008083540402835291602001916107aa565b820191906000526020600020905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b60006107c1338484610f39565b50600192915050565b6006546001600160a01b031633146108245760405162461bcd60e51b815260206004820152600b60248201527f4f6e6c79206d696e7465720000000000000000000000000000000000000000006044820152606401610509565b806007600082825461083691906114e1565b9091555061084690508282610e5a565b5050565b600061085784848461105d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108f15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610509565b6108fe8533858403610f39565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c19185906109409086906114e1565b610f39565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260206004820152600b60248201527f216761756765566f7465720000000000000000000000000000000000000000006044820152606401610509565b60006109a961125b565b905060095481116109fc5760405162461bcd60e51b815260206004820152600660248201527f2165706f636800000000000000000000000000000000000000000000000000006044820152606401610509565b6000610a287f0000000000000000000000000000000000000000000000000000000000000000836114f9565b905060006007546a2d7eb3f96e070d97000000610a4460025490565b610a4e91906114f9565b610a5891906114f9565b90506000610a716a25391ee35a05c54d0000008361126a565b600c5490915080821015610a86575050505050565b600060078510610a9857600b54610a9c565b600a545b9050610ab4612710610aae848461127d565b90611289565b600c556009869055600854610ad2906001600160a01b031683610e5a565b505050505050565b6005546001600160a01b03163314610b345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b600a829055600b81905560408051838152602081018390527f280a8e4dc056d32c120afffaeceda035eb208967abc8132fb38d7c92c4e0e2c0910160405180910390a15050565b6005546001600160a01b03163314610bd55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b610bdf6000611295565b565b60606004805461073190611490565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c8a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610509565b610c973385858403610f39565b5060019392505050565b60006107c133848461105d565b6000610cb861125b565b905090565b6005546001600160a01b03163314610d175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fa5bfcb4170cd59f0a051dc58c3fca92ee495be4a74413448d1b8f40aa93e93249060200160405180910390a150565b6005546001600160a01b03163314610dd25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b6001600160a01b038116610e4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610509565b610e5781611295565b50565b6001600160a01b038216610eb05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610509565b8060026000828254610ec291906114e1565b90915550506001600160a01b03821660009081526020819052604081208054839290610eef9084906114e1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610f9b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610509565b6001600160a01b038216610ffc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610509565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610509565b6001600160a01b03821661113b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610509565b6001600160a01b038316600090815260208190526040902054818110156111ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610509565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112019084906114e1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124d91815260200190565b60405180910390a350505050565b6000610cb86212750042611510565b600061127682846114f9565b9392505050565b60006112768284611532565b60006112768284611510565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461130b57600080fd5b919050565b600080600080600060a0868803121561132857600080fd5b611331866112f4565b945061133f602087016112f4565b935061134d604087016112f4565b94979396509394606081013594506080013592915050565b600060208083528351808285015260005b8181101561139257858101830151858201604001528201611376565b818111156113a4576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156113cd57600080fd5b6113d6836112f4565b946020939093013593505050565b6000806000606084860312156113f957600080fd5b611402846112f4565b9250611410602085016112f4565b9150604084013590509250925092565b6000806040838503121561143357600080fd5b50508035926020909101359150565b60006020828403121561145457600080fd5b611276826112f4565b6000806040838503121561147057600080fd5b611479836112f4565b9150611487602084016112f4565b90509250929050565b600181811c908216806114a457607f821691505b602082108114156114c557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156114f4576114f46114cb565b500190565b60008282101561150b5761150b6114cb565b500390565b60008261152d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561154c5761154c6114cb565b50029056fea164736f6c634300080b000a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005487970657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054859504552000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102265760003560e01c806370a082311161012a578063a457c2d7116100bd578063b97dd9e21161008c578063dd62ed3e11610071578063dd62ed3e14610455578063e6c6700e1461048e578063f2fde38b146104a057600080fd5b8063b97dd9e21461043a578063ca9bf1721461044257600080fd5b8063a457c2d714610402578063a9059cbb14610415578063b801573d14610428578063b91d9b8f1461043157600080fd5b806395d89b41116100f957806395d89b41146103c05780639cbfeb39146103c85780639daa1de6146103d1578063a2c8b177146103db57600080fd5b806370a082311461036b578063715018a61461039457806381ca29a11461039c5780638da5cb5b146103af57600080fd5b806321f314ca116101bd5780633e23299f1161018c578063496c22ec11610171578063496c22ec1461033f5780635ac4f517146103505780636cd163391461035957600080fd5b80633e23299f14610324578063484dd0151461032c57600080fd5b806321f314ca146102dc57806323b872dd146102ef578063313ce56714610302578063395093511461031157600080fd5b806312e90dc0116101f957806312e90dc0146102ac57806318160ddd146102c35780631831cecc146102cb5780631f3213b5146102d457600080fd5b80630145e3331461022b57806306fdde0314610240578063075461721461025e578063095ea7b314610289575b600080fd5b61023e610239366004611310565b6104b3565b005b610248610722565b6040516102559190611365565b60405180910390f35b600654610271906001600160a01b031681565b6040516001600160a01b039091168152602001610255565b61029c6102973660046113ba565b6107b4565b6040519015158152602001610255565b6102b5600b5481565b604051908152602001610255565b6002546102b5565b6102b5600c5481565b6102b5600781565b61023e6102ea3660046113ba565b6107ca565b61029c6102fd3660046113e4565b61084a565b60405160128152602001610255565b61029c61031f3660046113ba565b610909565b61023e610945565b61023e61033a366004611420565b610ada565b6102b5695f4a8c8375d15540000081565b6102b560095481565b6102b56a2d7eb3f96e070d9700000081565b6102b5610379366004611442565b6001600160a01b031660009081526020819052604090205490565b61023e610b7b565b600854610271906001600160a01b031681565b6005546001600160a01b0316610271565b610248610be1565b6102b561271081565b6102b56212750081565b6102b57f000000000000000000000000000000000000000000000000000000000000059481565b61029c6104103660046113ba565b610bf0565b61029c6104233660046113ba565b610ca1565b6102b5600a5481565b6102b560075481565b6102b5610cae565b61023e610450366004611442565b610cbd565b6102b561046336600461145d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b56a25391ee35a05c54d00000081565b61023e6104ae366004611442565b610d78565b6005546001600160a01b031633146105125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600254156105625760405162461bcd60e51b815260206004820152600960248201527f4f6e6c79206f6e636500000000000000000000000000000000000000000000006044820152606401610509565b6001600160a01b0384166105b85760405162461bcd60e51b815260206004820152600e60248201527f496e76616c6964206d696e7465720000000000000000000000000000000000006044820152606401610509565b6001600160a01b03831661060e5760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964206761756765566f74657200000000000000000000000000006044820152606401610509565b610623856a2d7eb3f96e070d97000000610e5a565b600680546001600160a01b0380871673ffffffffffffffffffffffffffffffffffffffff1992831617909255600880549286169290911691909117905560006007819055695f4a8c8375d155400000600c55600a839055600b8290556040517f09dfb9099a2610601d58030170fde7ae9db3e1bcb751c3d6800216cbe3b499b59190a160408051838152602081018390527f280a8e4dc056d32c120afffaeceda035eb208967abc8132fb38d7c92c4e0e2c0910160405180910390a16040516001600160a01b03841681527fa5bfcb4170cd59f0a051dc58c3fca92ee495be4a74413448d1b8f40aa93e93249060200160405180910390a15050505050565b60606003805461073190611490565b80601f016020809104026020016040519081016040528092919081815260200182805461075d90611490565b80156107aa5780601f1061077f576101008083540402835291602001916107aa565b820191906000526020600020905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b60006107c1338484610f39565b50600192915050565b6006546001600160a01b031633146108245760405162461bcd60e51b815260206004820152600b60248201527f4f6e6c79206d696e7465720000000000000000000000000000000000000000006044820152606401610509565b806007600082825461083691906114e1565b9091555061084690508282610e5a565b5050565b600061085784848461105d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108f15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610509565b6108fe8533858403610f39565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c19185906109409086906114e1565b610f39565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260206004820152600b60248201527f216761756765566f7465720000000000000000000000000000000000000000006044820152606401610509565b60006109a961125b565b905060095481116109fc5760405162461bcd60e51b815260206004820152600660248201527f2165706f636800000000000000000000000000000000000000000000000000006044820152606401610509565b6000610a287f0000000000000000000000000000000000000000000000000000000000000594836114f9565b905060006007546a2d7eb3f96e070d97000000610a4460025490565b610a4e91906114f9565b610a5891906114f9565b90506000610a716a25391ee35a05c54d0000008361126a565b600c5490915080821015610a86575050505050565b600060078510610a9857600b54610a9c565b600a545b9050610ab4612710610aae848461127d565b90611289565b600c556009869055600854610ad2906001600160a01b031683610e5a565b505050505050565b6005546001600160a01b03163314610b345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b600a829055600b81905560408051838152602081018390527f280a8e4dc056d32c120afffaeceda035eb208967abc8132fb38d7c92c4e0e2c0910160405180910390a15050565b6005546001600160a01b03163314610bd55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b610bdf6000611295565b565b60606004805461073190611490565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c8a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610509565b610c973385858403610f39565b5060019392505050565b60006107c133848461105d565b6000610cb861125b565b905090565b6005546001600160a01b03163314610d175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fa5bfcb4170cd59f0a051dc58c3fca92ee495be4a74413448d1b8f40aa93e93249060200160405180910390a150565b6005546001600160a01b03163314610dd25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610509565b6001600160a01b038116610e4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610509565b610e5781611295565b50565b6001600160a01b038216610eb05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610509565b8060026000828254610ec291906114e1565b90915550506001600160a01b03821660009081526020819052604081208054839290610eef9084906114e1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610f9b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610509565b6001600160a01b038216610ffc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610509565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610509565b6001600160a01b03821661113b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610509565b6001600160a01b038316600090815260208190526040902054818110156111ca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610509565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112019084906114e1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161124d91815260200190565b60405180910390a350505050565b6000610cb86212750042611510565b600061127682846114f9565b9392505050565b60006112768284611532565b60006112768284611510565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461130b57600080fd5b919050565b600080600080600060a0868803121561132857600080fd5b611331866112f4565b945061133f602087016112f4565b935061134d604087016112f4565b94979396509394606081013594506080013592915050565b600060208083528351808285015260005b8181101561139257858101830151858201604001528201611376565b818111156113a4576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156113cd57600080fd5b6113d6836112f4565b946020939093013593505050565b6000806000606084860312156113f957600080fd5b611402846112f4565b9250611410602085016112f4565b9150604084013590509250925092565b6000806040838503121561143357600080fd5b50508035926020909101359150565b60006020828403121561145457600080fd5b611276826112f4565b6000806040838503121561147057600080fd5b611479836112f4565b9150611487602084016112f4565b90509250929050565b600181811c908216806114a457607f821691505b602082108114156114c557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156114f4576114f46114cb565b500190565b60008282101561150b5761150b6114cb565b500390565b60008261152d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561154c5761154c6114cb565b50029056fea164736f6c634300080b000a

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005487970657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054859504552000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _nameArg (string): Hyper
Arg [1] : _symbolArg (string): HYPER

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 4879706572000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4859504552000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

OVERVIEW

Hyperlock is a yield & metagovernance protocol built on Thruster and optimized for BlastHyperlock provides boosted rewards to Thruster LPs and THRUST stakers via the social aggregation of veTHRUST and Hyperlock’s native token.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.