ETH Price: $3,466.99 (+2.34%)
Gas: 9 Gwei

Contract

0x3Ec8798B81485A254928B70CDA1cf0A2BB0B74D7
 
Transaction Hash
Method
Block
From
To
Value
Approve202100602024-07-01 7:04:359 hrs ago1719817475IN
Gro: GRO Token
0 ETH0.000159673.4497435
Approve201770772024-06-26 16:32:234 days ago1719419543IN
Gro: GRO Token
0 ETH0.0002629210.81848402
Approve201690232024-06-25 13:34:116 days ago1719322451IN
Gro: GRO Token
0 ETH0.000178237.33367448
Approve201498822024-06-22 21:19:478 days ago1719091187IN
Gro: GRO Token
0 ETH0.000044931.70839237
Approve201498792024-06-22 21:19:118 days ago1719091151IN
Gro: GRO Token
0 ETH0.00004862
Approve201498592024-06-22 21:15:118 days ago1719090911IN
Gro: GRO Token
0 ETH0.000054552.074261
Approve201498562024-06-22 21:14:358 days ago1719090875IN
Gro: GRO Token
0 ETH0.000049982.0569098
Approve201203362024-06-18 18:09:3512 days ago1718734175IN
Gro: GRO Token
0 ETH0.000171887.07618887
Approve201131052024-06-17 17:50:3513 days ago1718646635IN
Gro: GRO Token
0 ETH0.0004968410.72557651
Approve200094762024-06-03 6:22:2328 days ago1717395743IN
Gro: GRO Token
0 ETH0.00038528.27908893
Approve199917922024-05-31 19:06:2330 days ago1717182383IN
Gro: GRO Token
0 ETH0.0005250811.34421316
Transfer199917842024-05-31 19:04:4730 days ago1717182287IN
Gro: GRO Token
0 ETH0.000336811.34954344
Transfer199917802024-05-31 19:03:5930 days ago1717182239IN
Gro: GRO Token
0 ETH0.0003395411.44169399
Approve199917582024-05-31 18:59:3530 days ago1717181975IN
Gro: GRO Token
0 ETH0.0005032610.87263979
Approve199062592024-05-19 20:06:3542 days ago1716149195IN
Gro: GRO Token
0 ETH0.000160423.44359799
Approve198971502024-05-18 13:32:5944 days ago1716039179IN
Gro: GRO Token
0 ETH0.000089453.68089036
Approve198850012024-05-16 20:44:2345 days ago1715892263IN
Gro: GRO Token
0 ETH0.000085873.53342603
Approve198817542024-05-16 9:50:4746 days ago1715853047IN
Gro: GRO Token
0 ETH0.000106734.39193788
Approve198527692024-05-12 8:32:2350 days ago1715502743IN
Gro: GRO Token
0 ETH0.000087873.61585421
Approve198527652024-05-12 8:31:3550 days ago1715502695IN
Gro: GRO Token
0 ETH0.000098834.06694176
Approve198527652024-05-12 8:31:3550 days ago1715502695IN
Gro: GRO Token
0 ETH0.000098834.06694176
Approve198458272024-05-11 9:14:2351 days ago1715418863IN
Gro: GRO Token
0 ETH0.000118344.86972754
Approve198458032024-05-11 9:09:3551 days ago1715418575IN
Gro: GRO Token
0 ETH0.000106984.40223773
Approve198457902024-05-11 9:06:5951 days ago1715418419IN
Gro: GRO Token
0 ETH0.00011464.71548648
Approve198457652024-05-11 9:01:5951 days ago1715418119IN
Gro: GRO Token
0 ETH0.000110974.56866381
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GROToken

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license
File 1 of 7 : GROToken.sol
// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.3;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../common/Constants.sol";

contract GROToken is Constants, ERC20, Ownable {
    uint256 public immutable INIT_MAX_TOTAL_SUPPLY;
    uint256 public immutable INFLATION_BLOCKED_UNTIL; // Governance cannot vote on through inflation before this timestamp
    // GRO token inflation is defined by inflation rate / one year in seconds, where inflation rate can be
    // between 0 and MAX_INFLATION_RATE (500 BP)
    uint256 public constant MAX_INFLATION_RATE = (500 * DEFAULT_DECIMALS_FACTOR) / PERCENTAGE_DECIMAL_FACTOR; // 500 BP

    address public distributer;
    // inflation variables initated to 0 and cannot be updated until INFLATION_START_TIME
    uint256 public inflationRate;
    uint256 public inflationPerSecond;
    uint256 public lastMaxTotalSupply;
    uint256 public lastMaxTotalSupplyTime;

    event LogInflationRate(
        uint256 newInflationRate,
        uint256 newInflationPerSecond,
        uint256 lastMaxTotalSupply,
        uint256 lastMaxTotalSupplyTime
    );
    event LogDistributer(address newDistributer);

    constructor(
        string memory name,
        string memory symbol,
        uint256 _maxTotalSupply,
        uint256 nonInflationPeriod // The unit is second
    ) ERC20(name, symbol) {
        INIT_MAX_TOTAL_SUPPLY = _maxTotalSupply;
        INFLATION_BLOCKED_UNTIL = block.timestamp + nonInflationPeriod;
        lastMaxTotalSupply = _maxTotalSupply;
        lastMaxTotalSupplyTime = block.timestamp + nonInflationPeriod;
        emit LogInflationRate(0, 0, lastMaxTotalSupply, lastMaxTotalSupplyTime);
    }

    function setDistributer(address _distributer) public onlyOwner {
        distributer = _distributer;
        emit LogDistributer(_distributer);
    }

    /// @notice Set inflation rate, if current inflation rate
    /// @param rate New inflation rate, decimals is 18
    function setInflationRate(uint256 rate) public onlyOwner {
        uint256 currentTime = block.timestamp;
        require(
            currentTime > INFLATION_BLOCKED_UNTIL,
            "setInflationRate: Cannot set inflation rate before inflation start time"
        );
        require(rate <= MAX_INFLATION_RATE, "setInflationRate: !rate");
        require(rate != inflationRate, "setInflationRate: same rate");

        inflationRate = rate;
        lastMaxTotalSupply += (currentTime - lastMaxTotalSupplyTime) * inflationPerSecond;
        lastMaxTotalSupplyTime = currentTime;
        inflationPerSecond = ((lastMaxTotalSupply * rate) / DEFAULT_DECIMALS_FACTOR) / ONE_YEAR_SECONDS;

        emit LogInflationRate(rate, inflationPerSecond, lastMaxTotalSupply, lastMaxTotalSupplyTime);
    }

    function mint(address account, uint256 amount) external {
        require(msg.sender == distributer, "mint: !distributer");
        require(amount + totalSupply() <= maxTotalSupply(), "mint: > cap");
        _mint(account, amount);
    }

    function burn(address account, uint256 amount) external {
        require(msg.sender == distributer, "mint: !distributer");
        _burn(account, amount);
    }

    function maxTotalSupply() public view returns (uint256) {
        uint256 currentTime = block.timestamp;
        if (currentTime <= INFLATION_BLOCKED_UNTIL) {
            return INIT_MAX_TOTAL_SUPPLY;
        } else {
            return lastMaxTotalSupply + (currentTime - lastMaxTotalSupplyTime) * inflationPerSecond;
        }
    }
}

File 2 of 7 : Constants.sol
// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.3;

contract Constants {
    uint8 internal constant N_COINS = 3;
    uint8 internal constant DEFAULT_DECIMALS = 18; // GToken and Controller use this decimals
    uint256 internal constant DEFAULT_DECIMALS_FACTOR = uint256(10)**DEFAULT_DECIMALS;
    uint8 internal constant CHAINLINK_PRICE_DECIMALS = 8;
    uint256 internal constant CHAINLINK_PRICE_DECIMAL_FACTOR = uint256(10)**CHAINLINK_PRICE_DECIMALS;
    uint8 internal constant PERCENTAGE_DECIMALS = 4;
    uint256 internal constant PERCENTAGE_DECIMAL_FACTOR = uint256(10)**PERCENTAGE_DECIMALS;
    uint256 internal constant CURVE_RATIO_DECIMALS = 6;
    uint256 internal constant CURVE_RATIO_DECIMALS_FACTOR = uint256(10)**CURVE_RATIO_DECIMALS;
    uint256 internal constant ONE_YEAR_SECONDS = 31556952; // average year (including leap years) in seconds
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

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 : IERC20.sol
// SPDX-License-Identifier: MIT

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 5 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"},{"internalType":"uint256","name":"nonInflationPeriod","type":"uint256"}],"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":[{"indexed":false,"internalType":"address","name":"newDistributer","type":"address"}],"name":"LogDistributer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newInflationRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newInflationPerSecond","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastMaxTotalSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastMaxTotalSupplyTime","type":"uint256"}],"name":"LogInflationRate","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":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":"INFLATION_BLOCKED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INIT_MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INFLATION_RATE","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"distributer","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"inflationPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inflationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMaxTotalSupplyTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_distributer","type":"address"}],"name":"setDistributer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setInflationRate","outputs":[],"stateMutability":"nonpayable","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"}]

60c06040523480156200001157600080fd5b5060405162001862380380620018628339810160408190526200003491620002b0565b8351849084906200004d90600390602085019062000157565b5080516200006390600490602084019062000157565b505050620000806200007a6200010160201b60201c565b62000105565b608082905262000091814262000327565b60a0526009829055620000a5814262000327565b600a81905560095460408051600080825260208201529081019190915260608101919091527f23a10b68479b862b72163c4af5c093cdb3e4508e7acc5f62f721f2d9eb0a58de9060800160405180910390a1505050506200039f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000165906200034c565b90600052602060002090601f016020900481019282620001895760008555620001d4565b82601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b600082601f8301126200020e578081fd5b81516001600160401b03808211156200022b576200022b62000389565b604051601f8301601f19908116603f0116810190828211818310171562000256576200025662000389565b8160405283815260209250868385880101111562000272578485fd5b8491505b8382101562000295578582018301518183018401529082019062000276565b83821115620002a657848385830101525b9695505050505050565b60008060008060808587031215620002c6578384fd5b84516001600160401b0380821115620002dd578586fd5b620002eb88838901620001fd565b9550602087015191508082111562000301578485fd5b506200031087828801620001fd565b604087015160609097015195989097509350505050565b600082198211156200034757634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200036157607f821691505b602082108114156200038357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a051611488620003da6000396000818161020601528181610532015261085a015260008181610352015261055901526114886000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a898e0f411610097578063ce1f6a8311610071578063ce1f6a831461034d578063dd62ed3e14610374578063e5830770146103ad578063f2fde38b146103c0576101a9565b8063a898e0f414610314578063a9059cbb14610327578063b1551b951461033a576101a9565b80638da5cb5b116100d35780638da5cb5b146102c157806395d89b41146102e65780639dc29fac146102ee578063a457c2d714610301576101a9565b8063715018a6146102a757806376fbcc72146102af5780638b268f92146102b8576101a9565b80632ed1f923116101665780633950935111610140578063395093511461026357806340c10f1914610276578063512a90541461028b57806370a0823114610294576101a9565b80632ed1f92314610243578063313ce5671461024b57806331f9e35b1461025a576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101ef5780631862ccce1461020157806323b872dd146102285780632ab4d0521461023b575b600080fd5b6101b66103d3565b6040516101c391906111f4565b60405180910390f35b6101df6101da3660046111b3565b610466565b60405190151581526020016101c3565b6002545b6040519081526020016101c3565b6101f37f000000000000000000000000000000000000000000000000000000000000000081565b6101df610236366004611178565b61047c565b6101f361052d565b6101f36105af565b604051601281526020016101c3565b6101f360075481565b6101df6102713660046111b3565b6105e0565b6102896102843660046111b3565b61061c565b005b6101f360095481565b6101f36102a236600461112c565b6106ca565b6102896106e9565b6101f3600a5481565b6101f360085481565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b6101b661071f565b6102896102fc3660046111b3565b61072e565b6101df61030f3660046111b3565b610787565b6006546102ce906001600160a01b031681565b6101df6103353660046111b3565b610820565b6102896103483660046111dc565b61082d565b6101f37f000000000000000000000000000000000000000000000000000000000000000081565b6101f3610382366004611146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102896103bb36600461112c565b610a90565b6102896103ce36600461112c565b610b0e565b6060600380546103e290611401565b80601f016020809104026020016040519081016040528092919081815260200182805461040e90611401565b801561045b5780601f106104305761010080835404028352916020019161045b565b820191906000526020600020905b81548152906001019060200180831161043e57829003601f168201915b505050505090505b90565b6000610473338484610ba9565b50600192915050565b6000610489848484610cce565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105135760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105208533858403610ba9565b60019150505b9392505050565b6000427f00000000000000000000000000000000000000000000000000000000000000008111610580577f0000000000000000000000000000000000000000000000000000000000000000915050610463565b600854600a5461059090836113ea565b61059a91906113cb565b6009546105a7919061127c565b915050610463565b6105bb6004600a6112fa565b6105c76012600a6112fa565b6105d3906101f46113cb565b6105dd9190611294565b81565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161047391859061061790869061127c565b610ba9565b6006546001600160a01b0316331461066b5760405162461bcd60e51b815260206004820152601260248201527136b4b73a1d1010b234b9ba3934b13aba32b960711b604482015260640161050a565b61067361052d565b600254610680908361127c565b11156106bc5760405162461bcd60e51b815260206004820152600b60248201526a06d696e743a203e206361760ac1b604482015260640161050a565b6106c68282610e9d565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b031633146107135760405162461bcd60e51b815260040161050a90611247565b61071d6000610f7d565b565b6060600480546103e290611401565b6006546001600160a01b0316331461077d5760405162461bcd60e51b815260206004820152601260248201527136b4b73a1d1010b234b9ba3934b13aba32b960711b604482015260640161050a565b6106c68282610fcf565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161050a565b6108163385858403610ba9565b5060019392505050565b6000610473338484610cce565b6005546001600160a01b031633146108575760405162461bcd60e51b815260040161050a90611247565b427f000000000000000000000000000000000000000000000000000000000000000081116108fd5760405162461bcd60e51b815260206004820152604760248201527f736574496e666c6174696f6e526174653a2043616e6e6f742073657420696e6660448201527f6c6174696f6e2072617465206265666f726520696e666c6174696f6e2073746160648201526672742074696d6560c81b608482015260a40161050a565b6109096004600a6112fa565b6109156012600a6112fa565b610921906101f46113cb565b61092b9190611294565b82111561097a5760405162461bcd60e51b815260206004820152601760248201527f736574496e666c6174696f6e526174653a202172617465000000000000000000604482015260640161050a565b6007548214156109cc5760405162461bcd60e51b815260206004820152601b60248201527f736574496e666c6174696f6e526174653a2073616d6520726174650000000000604482015260640161050a565b6007829055600854600a546109e190836113ea565b6109eb91906113cb565b600960008282546109fc919061127c565b9091555050600a8181556301e1855890610a18906012906112fa565b83600954610a2691906113cb565b610a309190611294565b610a3a9190611294565b6008819055600954600a5460408051868152602081019490945283019190915260608201527f23a10b68479b862b72163c4af5c093cdb3e4508e7acc5f62f721f2d9eb0a58de9060800160405180910390a15050565b6005546001600160a01b03163314610aba5760405162461bcd60e51b815260040161050a90611247565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f08982b645dd7c290a0406bfc1066ec18c214f3a9f7ebf7c5189c0c3a79a7ada89060200160405180910390a150565b6005546001600160a01b03163314610b385760405162461bcd60e51b815260040161050a90611247565b6001600160a01b038116610b9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b610ba681610f7d565b50565b6001600160a01b038316610c0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050a565b6001600160a01b038216610c6c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050a565b6001600160a01b038216610d945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050a565b6001600160a01b03831660009081526020819052604090205481811015610e0c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161050a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e4390849061127c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8f91815260200190565b60405180910390a350505050565b6001600160a01b038216610ef35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161050a565b8060026000828254610f05919061127c565b90915550506001600160a01b03821660009081526020819052604081208054839290610f3290849061127c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36106c6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161050a565b6001600160a01b038216600090815260208190526040902054818110156110a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161050a565b6001600160a01b03831660009081526020819052604081208383039055600280548492906110d29084906113ea565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cc1565b80356001600160a01b03811681146106e457600080fd5b60006020828403121561113d578081fd5b61052682611115565b60008060408385031215611158578081fd5b61116183611115565b915061116f60208401611115565b90509250929050565b60008060006060848603121561118c578081fd5b61119584611115565b92506111a360208501611115565b9150604084013590509250925092565b600080604083850312156111c5578182fd5b6111ce83611115565b946020939093013593505050565b6000602082840312156111ed578081fd5b5035919050565b6000602080835283518082850152825b8181101561122057858101830151858201604001528201611204565b818111156112315783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561128f5761128f61143c565b500190565b6000826112af57634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116112c657506112f1565b8187048211156112d8576112d861143c565b808616156112e557918102915b9490941c9380026112b7565b94509492505050565b600061052660001960ff85168460008261131657506001610526565b8161132357506000610526565b8160018114611339576002811461134357611370565b6001915050610526565b60ff8411156113545761135461143c565b6001841b91508482111561136a5761136a61143c565b50610526565b5060208310610133831016604e8410600b84101617156113a3575081810a8381111561139e5761139e61143c565b610526565b6113b084848460016112b4565b8086048211156113c2576113c261143c565b02949350505050565b60008160001904831182151516156113e5576113e561143c565b500290565b6000828210156113fc576113fc61143c565b500390565b600181811c9082168061141557607f821691505b6020821081141561143657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122056fcb002deb398c3c8e4ae88e8de4f3462fbf2f31365993bc3654f27363bb9cf64736f6c63430008030033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000005a49008000000000000000000000000000000000000000000000000000000000000000d47726f2044414f20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347524f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a898e0f411610097578063ce1f6a8311610071578063ce1f6a831461034d578063dd62ed3e14610374578063e5830770146103ad578063f2fde38b146103c0576101a9565b8063a898e0f414610314578063a9059cbb14610327578063b1551b951461033a576101a9565b80638da5cb5b116100d35780638da5cb5b146102c157806395d89b41146102e65780639dc29fac146102ee578063a457c2d714610301576101a9565b8063715018a6146102a757806376fbcc72146102af5780638b268f92146102b8576101a9565b80632ed1f923116101665780633950935111610140578063395093511461026357806340c10f1914610276578063512a90541461028b57806370a0823114610294576101a9565b80632ed1f92314610243578063313ce5671461024b57806331f9e35b1461025a576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101ef5780631862ccce1461020157806323b872dd146102285780632ab4d0521461023b575b600080fd5b6101b66103d3565b6040516101c391906111f4565b60405180910390f35b6101df6101da3660046111b3565b610466565b60405190151581526020016101c3565b6002545b6040519081526020016101c3565b6101f37f0000000000000000000000000000000000000000000000000000000066ed926a81565b6101df610236366004611178565b61047c565b6101f361052d565b6101f36105af565b604051601281526020016101c3565b6101f360075481565b6101df6102713660046111b3565b6105e0565b6102896102843660046111b3565b61061c565b005b6101f360095481565b6101f36102a236600461112c565b6106ca565b6102896106e9565b6101f3600a5481565b6101f360085481565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b6101b661071f565b6102896102fc3660046111b3565b61072e565b6101df61030f3660046111b3565b610787565b6006546102ce906001600160a01b031681565b6101df6103353660046111b3565b610820565b6102896103483660046111dc565b61082d565b6101f37f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b6101f3610382366004611146565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102896103bb36600461112c565b610a90565b6102896103ce36600461112c565b610b0e565b6060600380546103e290611401565b80601f016020809104026020016040519081016040528092919081815260200182805461040e90611401565b801561045b5780601f106104305761010080835404028352916020019161045b565b820191906000526020600020905b81548152906001019060200180831161043e57829003601f168201915b505050505090505b90565b6000610473338484610ba9565b50600192915050565b6000610489848484610cce565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105135760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105208533858403610ba9565b60019150505b9392505050565b6000427f0000000000000000000000000000000000000000000000000000000066ed926a8111610580577f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000915050610463565b600854600a5461059090836113ea565b61059a91906113cb565b6009546105a7919061127c565b915050610463565b6105bb6004600a6112fa565b6105c76012600a6112fa565b6105d3906101f46113cb565b6105dd9190611294565b81565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161047391859061061790869061127c565b610ba9565b6006546001600160a01b0316331461066b5760405162461bcd60e51b815260206004820152601260248201527136b4b73a1d1010b234b9ba3934b13aba32b960711b604482015260640161050a565b61067361052d565b600254610680908361127c565b11156106bc5760405162461bcd60e51b815260206004820152600b60248201526a06d696e743a203e206361760ac1b604482015260640161050a565b6106c68282610e9d565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b031633146107135760405162461bcd60e51b815260040161050a90611247565b61071d6000610f7d565b565b6060600480546103e290611401565b6006546001600160a01b0316331461077d5760405162461bcd60e51b815260206004820152601260248201527136b4b73a1d1010b234b9ba3934b13aba32b960711b604482015260640161050a565b6106c68282610fcf565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156108095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161050a565b6108163385858403610ba9565b5060019392505050565b6000610473338484610cce565b6005546001600160a01b031633146108575760405162461bcd60e51b815260040161050a90611247565b427f0000000000000000000000000000000000000000000000000000000066ed926a81116108fd5760405162461bcd60e51b815260206004820152604760248201527f736574496e666c6174696f6e526174653a2043616e6e6f742073657420696e6660448201527f6c6174696f6e2072617465206265666f726520696e666c6174696f6e2073746160648201526672742074696d6560c81b608482015260a40161050a565b6109096004600a6112fa565b6109156012600a6112fa565b610921906101f46113cb565b61092b9190611294565b82111561097a5760405162461bcd60e51b815260206004820152601760248201527f736574496e666c6174696f6e526174653a202172617465000000000000000000604482015260640161050a565b6007548214156109cc5760405162461bcd60e51b815260206004820152601b60248201527f736574496e666c6174696f6e526174653a2073616d6520726174650000000000604482015260640161050a565b6007829055600854600a546109e190836113ea565b6109eb91906113cb565b600960008282546109fc919061127c565b9091555050600a8181556301e1855890610a18906012906112fa565b83600954610a2691906113cb565b610a309190611294565b610a3a9190611294565b6008819055600954600a5460408051868152602081019490945283019190915260608201527f23a10b68479b862b72163c4af5c093cdb3e4508e7acc5f62f721f2d9eb0a58de9060800160405180910390a15050565b6005546001600160a01b03163314610aba5760405162461bcd60e51b815260040161050a90611247565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f08982b645dd7c290a0406bfc1066ec18c214f3a9f7ebf7c5189c0c3a79a7ada89060200160405180910390a150565b6005546001600160a01b03163314610b385760405162461bcd60e51b815260040161050a90611247565b6001600160a01b038116610b9d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b610ba681610f7d565b50565b6001600160a01b038316610c0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050a565b6001600160a01b038216610c6c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050a565b6001600160a01b038216610d945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050a565b6001600160a01b03831660009081526020819052604090205481811015610e0c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161050a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e4390849061127c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8f91815260200190565b60405180910390a350505050565b6001600160a01b038216610ef35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161050a565b8060026000828254610f05919061127c565b90915550506001600160a01b03821660009081526020819052604081208054839290610f3290849061127c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36106c6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161050a565b6001600160a01b038216600090815260208190526040902054818110156110a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161050a565b6001600160a01b03831660009081526020819052604081208383039055600280548492906110d29084906113ea565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cc1565b80356001600160a01b03811681146106e457600080fd5b60006020828403121561113d578081fd5b61052682611115565b60008060408385031215611158578081fd5b61116183611115565b915061116f60208401611115565b90509250929050565b60008060006060848603121561118c578081fd5b61119584611115565b92506111a360208501611115565b9150604084013590509250925092565b600080604083850312156111c5578182fd5b6111ce83611115565b946020939093013593505050565b6000602082840312156111ed578081fd5b5035919050565b6000602080835283518082850152825b8181101561122057858101830151858201604001528201611204565b818111156112315783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561128f5761128f61143c565b500190565b6000826112af57634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116112c657506112f1565b8187048211156112d8576112d861143c565b808616156112e557918102915b9490941c9380026112b7565b94509492505050565b600061052660001960ff85168460008261131657506001610526565b8161132357506000610526565b8160018114611339576002811461134357611370565b6001915050610526565b60ff8411156113545761135461143c565b6001841b91508482111561136a5761136a61143c565b50610526565b5060208310610133831016604e8410600b84101617156113a3575081810a8381111561139e5761139e61143c565b610526565b6113b084848460016112b4565b8086048211156113c2576113c261143c565b02949350505050565b60008160001904831182151516156113e5576113e561143c565b500290565b6000828210156113fc576113fc61143c565b500390565b600181811c9082168061141557607f821691505b6020821081141561143657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122056fcb002deb398c3c8e4ae88e8de4f3462fbf2f31365993bc3654f27363bb9cf64736f6c63430008030033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000000000000000000000000000000000000005a49008000000000000000000000000000000000000000000000000000000000000000d47726f2044414f20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347524f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Gro DAO Token
Arg [1] : symbol (string): GRO
Arg [2] : _maxTotalSupply (uint256): 100000000000000000000000000
Arg [3] : nonInflationPeriod (uint256): 94670856

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000005a49008
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 47726f2044414f20546f6b656e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 47524f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

203:3354:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4181:166;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:7;;1841:22;1823:41;;1811:2;1796:18;4181:166:3;1778:92:7;3172:106:3;3259:12;;3172:106;;;9277:25:7;;;9265:2;9250:18;3172:106:3;9232:76:7;308:48:1;;;;;4814:478:3;;;;;;:::i;:::-;;:::i;3221:334:1:-;;;:::i;587:104::-;;;:::i;3021:91:3:-;;;3103:2;9851:36:7;;9839:2;9824:18;3021:91:3;9806:87:7;830:28:1;;;;;;5687:212:3;;;;;;:::i;:::-;;:::i;2811:237:1:-;;;;;;:::i;:::-;;:::i;:::-;;903:33;;;;;;3336:125:3;;;;;;:::i;:::-;;:::i;1605:92:2:-;;;:::i;942:37:1:-;;;;;;864:33;;;;;;973:85:2;1045:6;;-1:-1:-1;;;;;1045:6:2;973:85;;;-1:-1:-1;;;;;1639:32:7;;;1621:51;;1609:2;1594:18;973:85:2;1576:102:7;2295::3;;;:::i;3054:161:1:-;;;;;;:::i;:::-;;:::i;6386:405:3:-;;;;;;:::i;:::-;;:::i;708:26:1:-;;;;;-1:-1:-1;;;;;708:26:1;;;3664:172:3;;;;;;:::i;:::-;;:::i;2011:794:1:-;;;;;;:::i;:::-;;:::i;256:46::-;;;;;3894:149:3;;;;;;:::i;:::-;-1:-1:-1;;;;;4009:18:3;;;3983:7;4009:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3894:149;1739::1;;;;;;:::i;:::-;;:::i;1846:189:2:-;;;;;;:::i;:::-;;:::i;2084:98:3:-;2138:13;2170:5;2163:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2084:98;;:::o;4181:166::-;4264:4;4280:39;666:10:6;4303:7:3;4312:6;4280:8;:39::i;:::-;-1:-1:-1;4336:4:3;4181:166;;;;:::o;4814:478::-;4950:4;4966:36;4976:6;4984:9;4995:6;4966:9;:36::i;:::-;-1:-1:-1;;;;;5040:19:3;;5013:24;5040:19;;;:11;:19;;;;;;;;666:10:6;5040:33:3;;;;;;;;5091:26;;;;5083:79;;;;-1:-1:-1;;;5083:79:3;;5405:2:7;5083:79:3;;;5387:21:7;5444:2;5424:18;;;5417:30;5483:34;5463:18;;;5456:62;-1:-1:-1;;;5534:18:7;;;5527:38;5582:19;;5083:79:3;;;;;;;;;5196:57;5205:6;666:10:6;5246:6:3;5227:16;:25;5196:8;:57::i;:::-;5281:4;5274:11;;;4814:478;;;;;;:::o;3221:334:1:-;3268:7;3309:15;3353:23;3338:38;;3334:215;;3399:21;3392:28;;;;;3334:215;3520:18;;3494:22;;3480:36;;:11;:36;:::i;:::-;3479:59;;;;:::i;:::-;3458:18;;:80;;;;:::i;:::-;3451:87;;;;;587:104;573:32:0;512:1;581:2;573:32;:::i;:::-;271:29;168:2;279;271:29;:::i;:::-;633::1;;:3;:29;:::i;:::-;632:59;;;;:::i;:::-;587:104;:::o;5687:212:3:-;666:10:6;5775:4:3;5823:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5823:34:3;;;;;;;;;;5775:4;;5791:80;;5814:7;;5823:47;;5860:10;;5823:47;:::i;:::-;5791:8;:80::i;2811:237:1:-;2899:11;;-1:-1:-1;;;;;2899:11:1;2885:10;:25;2877:56;;;;-1:-1:-1;;;2877:56:1;;8220:2:7;2877:56:1;;;8202:21:7;8259:2;8239:18;;;8232:30;-1:-1:-1;;;8278:18:7;;;8271:48;8336:18;;2877:56:1;8192:168:7;2877:56:1;2977:16;:14;:16::i;:::-;3259:12:3;;2951:22:1;;:6;:22;:::i;:::-;:42;;2943:66;;;;-1:-1:-1;;;2943:66:1;;3089:2:7;2943:66:1;;;3071:21:7;3128:2;3108:18;;;3101:30;-1:-1:-1;;;3147:18:7;;;3140:41;3198:18;;2943:66:1;3061:161:7;2943:66:1;3019:22;3025:7;3034:6;3019:5;:22::i;:::-;2811:237;;:::o;3336:125:3:-;-1:-1:-1;;;;;3436:18:3;;3410:7;3436:18;;;;;;;;;;;3336:125;;;;:::o;1605:92:2:-;1045:6;;-1:-1:-1;;;;;1045:6:2;666:10:6;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2295:102:3:-;2351:13;2383:7;2376:14;;;;;:::i;3054:161:1:-;3142:11;;-1:-1:-1;;;;;3142:11:1;3128:10;:25;3120:56;;;;-1:-1:-1;;;3120:56:1;;8220:2:7;3120:56:1;;;8202:21:7;8259:2;8239:18;;;8232:30;-1:-1:-1;;;8278:18:7;;;8271:48;8336:18;;3120:56:1;8192:168:7;3120:56:1;3186:22;3192:7;3201:6;3186:5;:22::i;6386:405:3:-;666:10:6;6479:4:3;6522:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6522:34:3;;;;;;;;;;6574:35;;;;6566:85;;;;-1:-1:-1;;;6566:85:3;;8567:2:7;6566:85:3;;;8549:21:7;8606:2;8586:18;;;8579:30;8645:34;8625:18;;;8618:62;-1:-1:-1;;;8696:18:7;;;8689:35;8741:19;;6566:85:3;8539:227:7;6566:85:3;6685:67;666:10:6;6708:7:3;6736:15;6717:16;:34;6685:8;:67::i;:::-;-1:-1:-1;6780:4:3;;6386:405;-1:-1:-1;;;6386:405:3:o;3664:172::-;3750:4;3766:42;666:10:6;3790:9:3;3801:6;3766:9;:42::i;2011:794:1:-;1045:6:2;;-1:-1:-1;;;;;1045:6:2;666:10:6;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;2100:15:1::1;2160:23;2146:37:::0;::::1;2125:155;;;::::0;-1:-1:-1;;;2125:155:1;;6175:2:7;2125:155:1::1;::::0;::::1;6157:21:7::0;6214:2;6194:18;;;6187:30;6253:34;6233:18;;;6226:62;6324:34;6304:18;;;6297:62;-1:-1:-1;;;6375:19:7;;;6368:38;6423:19;;2125:155:1::1;6147:301:7::0;2125:155:1::1;573:32:0;512:1;581:2;573:32;:::i;:::-;271:29;168:2;279;271:29;:::i;:::-;633::1;::::0;:3:::1;:29;:::i;:::-;632:59;;;;:::i;:::-;2298:4;:26;;2290:62;;;::::0;-1:-1:-1;;;2290:62:1;;7463:2:7;2290:62:1::1;::::0;::::1;7445:21:7::0;7502:2;7482:18;;;7475:30;7541:25;7521:18;;;7514:53;7584:18;;2290:62:1::1;7435:173:7::0;2290:62:1::1;2378:13;;2370:4;:21;;2362:61;;;::::0;-1:-1:-1;;;2362:61:1;;5049:2:7;2362:61:1::1;::::0;::::1;5031:21:7::0;5088:2;5068:18;;;5061:30;5127:29;5107:18;;;5100:57;5174:18;;2362:61:1::1;5021:177:7::0;2362:61:1::1;2434:13;:20:::0;;;2527:18:::1;::::0;2501:22:::1;::::0;2487:36:::1;::::0;:11;:36:::1;:::i;:::-;2486:59;;;;:::i;:::-;2464:18;;:81;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;2555:22:1::1;:36:::0;;;807:8:0::1;::::0;271:29:::1;::::0;168:2:::1;::::0;271:29:::1;:::i;:::-;2645:4:1;2624:18;;:25;;;;:::i;:::-;2623:53;;;;:::i;:::-;2622:74;;;;:::i;:::-;2601:18;:95:::0;;;2755:18:::1;::::0;2775:22:::1;::::0;2712:86:::1;::::0;;9544:25:7;;;9600:2;9585:18;;9578:34;;;;9628:18;;9621:34;;;;9686:2;9671:18;;9664:34;2712:86:1::1;::::0;9531:3:7;9516:19;2712:86:1::1;;;;;;;1255:1:2;2011:794:1::0;:::o;1739:149::-;1045:6:2;;-1:-1:-1;;;;;1045:6:2;666:10:6;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;1812:11:1::1;:26:::0;;-1:-1:-1;;;;;;1812:26:1::1;-1:-1:-1::0;;;;;1812:26:1;::::1;::::0;;::::1;::::0;;;1853:28:::1;::::0;1621:51:7;;;1853:28:1::1;::::0;1609:2:7;1594:18;1853:28:1::1;;;;;;;1739:149:::0;:::o;1846:189:2:-;1045:6;;-1:-1:-1;;;;;1045:6:2;666:10:6;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:2;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:2;;3832:2:7;1926:73:2::1;::::0;::::1;3814:21:7::0;3871:2;3851:18;;;3844:30;3910:34;3890:18;;;3883:62;-1:-1:-1;;;3961:18:7;;;3954:36;4007:19;;1926:73:2::1;3804:228:7::0;1926:73:2::1;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;9962:370:3:-;-1:-1:-1;;;;;10093:19:3;;10085:68;;;;-1:-1:-1;;;10085:68:3;;7815:2:7;10085:68:3;;;7797:21:7;7854:2;7834:18;;;7827:30;7893:34;7873:18;;;7866:62;-1:-1:-1;;;7944:18:7;;;7937:34;7988:19;;10085:68:3;7787:226:7;10085:68:3;-1:-1:-1;;;;;10171:21:3;;10163:68;;;;-1:-1:-1;;;10163:68:3;;4239:2:7;10163:68:3;;;4221:21:7;4278:2;4258:18;;;4251:30;4317:34;4297:18;;;4290:62;-1:-1:-1;;;4368:18:7;;;4361:32;4410:19;;10163:68:3;4211:224:7;10163:68:3;-1:-1:-1;;;;;10242:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10293:32;;9277:25:7;;;10293:32:3;;9250:18:7;10293:32:3;;;;;;;;9962:370;;;:::o;7265:713::-;-1:-1:-1;;;;;7400:20:3;;7392:70;;;;-1:-1:-1;;;7392:70:3;;7057:2:7;7392:70:3;;;7039:21:7;7096:2;7076:18;;;7069:30;7135:34;7115:18;;;7108:62;-1:-1:-1;;;7186:18:7;;;7179:35;7231:19;;7392:70:3;7029:227:7;7392:70:3;-1:-1:-1;;;;;7480:23:3;;7472:71;;;;-1:-1:-1;;;7472:71:3;;2685:2:7;7472:71:3;;;2667:21:7;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:7;;;2807:33;2857:19;;7472:71:3;2657:225:7;7472:71:3;-1:-1:-1;;;;;7636:17:3;;7612:21;7636:17;;;;;;;;;;;7671:23;;;;7663:74;;;;-1:-1:-1;;;7663:74:3;;4642:2:7;7663:74:3;;;4624:21:7;4681:2;4661:18;;;4654:30;4720:34;4700:18;;;4693:62;-1:-1:-1;;;4771:18:7;;;4764:36;4817:19;;7663:74:3;4614:228:7;7663:74:3;-1:-1:-1;;;;;7771:17:3;;;:9;:17;;;;;;;;;;;7791:22;;;7771:42;;7833:20;;;;;;;;:30;;7807:6;;7771:9;7833:30;;7807:6;;7833:30;:::i;:::-;;;;;;;;7896:9;-1:-1:-1;;;;;7879:35:3;7888:6;-1:-1:-1;;;;;7879:35:3;;7907:6;7879:35;;;;9277:25:7;;9265:2;9250:18;;9232:76;7879:35:3;;;;;;;;7265:713;;;;:::o;8254:389::-;-1:-1:-1;;;;;8337:21:3;;8329:65;;;;-1:-1:-1;;;8329:65:3;;8973:2:7;8329:65:3;;;8955:21:7;9012:2;8992:18;;;8985:30;9051:33;9031:18;;;9024:61;9102:18;;8329:65:3;8945:181:7;8329:65:3;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8497:18:3;;:9;:18;;;;;;;;;;:28;;8519:6;;8497:9;:28;;8519:6;;8497:28;:::i;:::-;;;;-1:-1:-1;;8540:37:3;;9277:25:7;;;-1:-1:-1;;;;;8540:37:3;;;8557:1;;8540:37;;9265:2:7;9250:18;8540:37:3;;;;;;;8588:48;8963:576;2041:169:2;2115:6;;;-1:-1:-1;;;;;2131:17:2;;;-1:-1:-1;;;;;;2131:17:2;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2041:169;;:::o;8963:576:3:-;-1:-1:-1;;;;;9046:21:3;;9038:67;;;;-1:-1:-1;;;9038:67:3;;6655:2:7;9038:67:3;;;6637:21:7;6694:2;6674:18;;;6667:30;6733:34;6713:18;;;6706:62;-1:-1:-1;;;6784:18:7;;;6777:31;6825:19;;9038:67:3;6627:223:7;9038:67:3;-1:-1:-1;;;;;9201:18:3;;9176:22;9201:18;;;;;;;;;;;9237:24;;;;9229:71;;;;-1:-1:-1;;;9229:71:3;;3429:2:7;9229:71:3;;;3411:21:7;3468:2;3448:18;;;3441:30;3507:34;3487:18;;;3480:62;-1:-1:-1;;;3558:18:7;;;3551:32;3600:19;;9229:71:3;3401:224:7;9229:71:3;-1:-1:-1;;;;;9334:18:3;;:9;:18;;;;;;;;;;9355:23;;;9334:44;;9398:12;:22;;9372:6;;9334:9;9398:22;;9372:6;;9398:22;:::i;:::-;;;;-1:-1:-1;;9436:37:3;;9277:25:7;;;9462:1:3;;-1:-1:-1;;;;;9436:37:3;;;;;9265:2:7;9250:18;9436:37:3;9232:76:7;14:173;82:20;;-1:-1:-1;;;;;131:31:7;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:7:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:7;;1350:120;-1:-1:-1;1350:120:7:o;1875:603::-;;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:7;2441:15;-1:-1:-1;;2437:29:7;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:7:o;5612:356::-;5814:2;5796:21;;;5833:18;;;5826:30;5892:34;5887:2;5872:18;;5865:62;5959:2;5944:18;;5786:182::o;9898:128::-;;9969:1;9965:6;9962:1;9959:13;9956:2;;;9975:18;;:::i;:::-;-1:-1:-1;10011:9:7;;9946:80::o;10031:217::-;;10097:1;10087:2;;-1:-1:-1;;;10122:31:7;;10176:4;10173:1;10166:15;10204:4;10129:1;10194:15;10087:2;-1:-1:-1;10233:9:7;;10077:171::o;10253:453::-;10349:6;10372:5;10386:314;10435:1;10472:2;10462:8;10459:16;10449:2;;10479:5;;;10449:2;10520:4;10515:3;10511:14;10505:4;10502:24;10499:2;;;10529:18;;:::i;:::-;10579:2;10569:8;10565:17;10562:2;;;10594:16;;;;10562:2;10673:17;;;;;10633:15;;10386:314;;;10330:376;;;;;;;:::o;10711:148::-;;10798:55;-1:-1:-1;;10839:4:7;10825:19;;10819:4;10864:922;10948:8;10938:2;;-1:-1:-1;10989:1:7;11003:5;;10938:2;11037:4;11027:2;;-1:-1:-1;11074:1:7;11088:5;;11027:2;11119:4;11137:1;11132:59;;;;11205:1;11200:183;;;;11112:271;;11132:59;11162:1;11153:10;;11176:5;;;11200:183;11237:3;11227:8;11224:17;11221:2;;;11244:18;;:::i;:::-;11300:1;11290:8;11286:16;11277:25;;11328:3;11321:5;11318:14;11315:2;;;11335:18;;:::i;:::-;11368:5;;;11112:271;;11467:2;11457:8;11454:16;11448:3;11442:4;11439:13;11435:36;11429:2;11419:8;11416:16;11411:2;11405:4;11402:12;11398:35;11395:77;11392:2;;;-1:-1:-1;11504:19:7;;;11539:14;;;11536:2;;;11556:18;;:::i;:::-;11589:5;;11392:2;11636:42;11674:3;11664:8;11658:4;11655:1;11636:42;:::i;:::-;11711:6;11706:3;11702:16;11693:7;11690:29;11687:2;;;11722:18;;:::i;:::-;11760:20;;10928:858;-1:-1:-1;;;;10928:858:7:o;11791:168::-;;11897:1;11893;11889:6;11885:14;11882:1;11879:21;11874:1;11867:9;11860:17;11856:45;11853:2;;;11904:18;;:::i;:::-;-1:-1:-1;11944:9:7;;11843:116::o;11964:125::-;;12032:1;12029;12026:8;12023:2;;;12037:18;;:::i;:::-;-1:-1:-1;12074:9:7;;12013:76::o;12094:380::-;12173:1;12169:12;;;;12216;;;12237:2;;12291:4;12283:6;12279:17;12269:27;;12237:2;12344;12336:6;12333:14;12313:18;12310:38;12307:2;;;12390:10;12385:3;12381:20;12378:1;12371:31;12425:4;12422:1;12415:15;12453:4;12450:1;12443:15;12307:2;;12149:325;;;:::o;12479:127::-;12540:10;12535:3;12531:20;12528:1;12521:31;12571:4;12568:1;12561:15;12595:4;12592:1;12585:15

Swarm Source

ipfs://56fcb002deb398c3c8e4ae88e8de4f3462fbf2f31365993bc3654f27363bb9cf

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Gro is a stablecoin yield optimizer that enables leverage and protection through risk tranching. It splits yield and risk into two symbiotic products; Gro Vault and PWRD Stablecoin.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.