ETH Price: $2,440.81 (+1.49%)

Contract

0x22FE5BcAdA4E30A7310eFB1DfF7f90168dC42b62
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer From157838092022-10-19 18:01:23717 days ago1666202483IN
MyFinance: MYFI Token
0 ETH0.001523450.78021759
Transfer From157837712022-10-19 17:53:47717 days ago1666202027IN
MyFinance: MYFI Token
0 ETH0.0011053244.24326371
Transfer From157837632022-10-19 17:52:11717 days ago1666201931IN
MyFinance: MYFI Token
0 ETH0.0011018244.10295025
Approve132736152021-09-22 5:07:411110 days ago1632287261IN
MyFinance: MYFI Token
0 ETH0.0035424551.40991622
Approve132435932021-09-17 14:01:481115 days ago1631887308IN
MyFinance: MYFI Token
0 ETH0.0034725550.39552795
Approve132256602021-09-14 19:17:231117 days ago1631647043IN
MyFinance: MYFI Token
0 ETH0.0047689769.58558975
Transfer From132255942021-09-14 19:04:011117 days ago1631646241IN
MyFinance: MYFI Token
0 ETH0.0023421482.26151866
Mint132193032021-09-13 19:38:011118 days ago1631561881IN
MyFinance: MYFI Token
0 ETH0.0011584649.29618949
Change Ownership132192862021-09-13 19:35:151118 days ago1631561715IN
MyFinance: MYFI Token
0 ETH0.0014801455.04042928
Approve130838602021-08-23 20:56:591139 days ago1629752219IN
MyFinance: MYFI Token
0 ETH0.0042594461.81531794
Approve130410382021-08-17 6:11:381146 days ago1629180698IN
MyFinance: MYFI Token
0 ETH0.0013093749
Approve130151052021-08-13 6:08:521150 days ago1628834932IN
MyFinance: MYFI Token
0 ETH0.002062529.93210099
Approve129476612021-08-02 18:54:461160 days ago1627930486IN
MyFinance: MYFI Token
0 ETH0.0030318644
Approve129010282021-07-26 9:21:441168 days ago1627291304IN
MyFinance: MYFI Token
0 ETH0.0011555916.7706
Approve128007202021-07-10 16:28:281184 days ago1625934508IN
MyFinance: MYFI Token
0 ETH0.0011093816.1
Approve127067762021-06-26 1:44:181198 days ago1624671858IN
MyFinance: MYFI Token
0 ETH0.0003201611
Approve127067762021-06-26 1:44:181198 days ago1624671858IN
MyFinance: MYFI Token
0 ETH0.0003201611
Approve127067762021-06-26 1:44:181198 days ago1624671858IN
MyFinance: MYFI Token
0 ETH0.0007579611
Approve124394022021-05-15 14:07:171240 days ago1621087637IN
MyFinance: MYFI Token
0 ETH0.0055813881
Approve124379672021-05-15 8:44:301240 days ago1621068270IN
MyFinance: MYFI Token
0 ETH0.0058570185
Approve124315972021-05-14 9:07:471241 days ago1620983267IN
MyFinance: MYFI Token
0 ETH0.00771747112
Approve124121522021-05-11 8:45:201244 days ago1620722720IN
MyFinance: MYFI Token
0 ETH0.0184668268
Approve123890862021-05-07 19:28:011247 days ago1620415681IN
MyFinance: MYFI Token
0 ETH0.0034108449.5
Transfer123818252021-05-06 16:35:511249 days ago1620318951IN
MyFinance: MYFI Token
0 ETH0.00407658111
Approve123634332021-05-03 20:36:211251 days ago1620074181IN
MyFinance: MYFI Token
0 ETH0.0050990474
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:
MyFiToken

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-22
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.1;

/**
 * Library from OpenZeppelin
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * Library from OpenZeppelin
 * @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);
}

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

contract MyFiToken is Context, IERC20, IERC20Metadata {
    
    using SafeMath for uint256;
    
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => mapping (address => bool)) private _is_approved;
    uint256 private _totalSupply;
    uint256 private maxTotalSupply;
    string private _name;
    string private _symbol;
    address public founder;
    
    /*
     * NOTE: Modifier only owner is allowed to send function
    */
    modifier onlyFounder() {
        require(_msgSender() == founder);
        _;
    }

    /*
     * NOTE: Construct run when owner deploy token
     * Set max total supply 80k token. Owner can't mint/generate more token more than 8k.
     * Set token name.
     * Set token symbol.
     * Set token decimals.
     * Set total supply as initial supply.
     * Set founder.
     * Add all initial token to founder.
    */
    constructor(uint256 _initial_supply) {
        uint256 _max_total_supply = 80000;
        _name = "MyFinance";
        _symbol = "MYFI";
        _totalSupply = _initial_supply.mul(1000000000000000000);
        maxTotalSupply = _max_total_supply.mul(1000000000000000000);
        founder = _msgSender();
        _balances[founder] = _totalSupply;
    }
    
    /**
     * @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
     * overloaded;
     *
     * 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 _account, address _contract) override public view returns (uint256) {
        return _allowances[_account][_contract];
    }
    
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address _contract, uint _amount) override public returns (bool) {
        _approve(_msgSender(), _contract, _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 _from, address _to, uint256 _amount) public virtual override returns (bool) {
        _transfer(_from, _to, _amount);

        uint256 currentAllowance = _allowances[_from][_msgSender()];
        require(currentAllowance >= _amount, "ERC20: transfer amount exceeds allowance");
        _approve(_from, _msgSender(), currentAllowance.sub(_amount));

        return true;
    }
    
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance.sub(amount);
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }
    
    /*
     * NOTE: Address approving contract
     * Allowed if sender is found.
     * Allowed if recipient is found.
     * Set sender and recipient approved.
     * Set sender and recipient amount.
    */
    function _approve(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: approve from the zero address");
        require(recipient != address(0), "ERC20: approve to the zero address");

        _is_approved[sender][recipient] = true;
        _allowances[sender][recipient] = amount;
        emit Approval(sender, recipient, amount);
    }
    
    /*
     * NOTE: Show if other contract is approved
    */
    function isApproved(address _account, address _contract) public view returns (bool) {
        return _is_approved[_account][_contract];
    }

    /*
     * NOTE: Set new founder
     * Current founder is able to change ownership to new wallet address.
    */
    function changeOwnership(address _account) public {
        founder = _account;
    }
    
    /*
     * NOTE: Generate some amount of token to address
     * Allowed if only founder use this function.
     * Allowed if total supply plus with amount to generate is still smaller or equal to max total supply.
     * Add total supply with amount to generate.
     * Add address balance with amount to generate.
    */
    function mint(address _to, uint256 _amount) public onlyFounder {
        require(_totalSupply.add(_amount) <= maxTotalSupply);
        _totalSupply += _amount;
        _balances[_to] += _amount;
        emit Transfer(_msgSender(), _to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_initial_supply","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":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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_contract","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","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"}],"name":"changeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"address","name":"_contract","type":"address"}],"name":"isApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","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":"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":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000d3a38038062000d3a8339810160408190526200003491620001e7565b604080518082019091526009808252684d7946696e616e636560b81b602090920191825262013880916200006c916005919062000141565b50604080518082019091526004808252634d59464960e01b60209092019182526200009a9160069162000141565b50620000bd670de0b6b3a7640000836200012860201b620004e21790919060201c565b600355620000e081670de0b6b3a764000062000128602090811b620004e217901c565b600455620000ed6200013d565b600780546001600160a01b0319166001600160a01b039283161790819055600354911660009081526020819052604090205550620002699050565b600062000136828462000200565b9392505050565b3390565b8280546200014f906200022c565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600060208284031215620001f9578081fd5b5051919050565b60008160001904831182151516156200022757634e487b7160e01b81526011600452602481fd5b500290565b6002810460018216806200024157607f821691505b602082108114156200026357634e487b7160e01b600052602260045260246000fd5b50919050565b610ac180620002796000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806340c10f191161008c57806395d89b411161006657806395d89b411461019f578063a389783e146101a7578063a9059cbb146101ba578063dd62ed3e146101cd576100cf565b806340c10f19146101645780634d853ee51461017757806370a082311461018c576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd146101275780632af4c31e1461013a578063313ce5671461014f575b600080fd5b6100dc6101e0565b6040516100e991906107e6565b60405180910390f35b61010561010036600461079e565b610272565b6040516100e991906107db565b61011a61028f565b6040516100e991906109d5565b610105610135366004610763565b610295565b61014d610148366004610717565b610335565b005b610157610357565b6040516100e991906109de565b61014d61017236600461079e565b61035c565b61017f610438565b6040516100e991906107c7565b61011a61019a366004610717565b610447565b6100dc610466565b6101056101b5366004610731565b610475565b6101056101c836600461079e565b6104a3565b61011a6101db366004610731565b6104b7565b6060600580546101ef90610a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461021b90610a3a565b80156102685780601f1061023d57610100808354040283529160200191610268565b820191906000526020600020905b81548152906001019060200180831161024b57829003601f168201915b5050505050905090565b600061028661027f6104f5565b84846104f9565b50600192915050565b60035490565b60006102a28484846105cb565b6001600160a01b0384166000908152600160205260408120816102c36104f5565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561030f5760405162461bcd60e51b815260040161030690610904565b60405180910390fd5b61032a8561031b6104f5565b61032584876106e8565b6104f9565b506001949350505050565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b601290565b6007546001600160a01b03166103706104f5565b6001600160a01b03161461038357600080fd5b60045460035461039390836106f4565b111561039e57600080fd5b80600360008282546103b091906109ec565b90915550506001600160a01b038216600090815260208190526040812080548392906103dd9084906109ec565b90915550506001600160a01b0382166103f46104f5565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161042c91906109d5565b60405180910390a35050565b6007546001600160a01b031681565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600680546101ef90610a3a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b60006102866104b06104f5565b84846105cb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006104ee8284610a04565b9392505050565b3390565b6001600160a01b03831661051f5760405162461bcd60e51b815260040161030690610991565b6001600160a01b0382166105455760405162461bcd60e51b81526004016103069061087c565b6001600160a01b038084166000818152600260209081526040808320948716808452948252808320805460ff19166001908117909155848452825280832085845290915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105be9085906109d5565b60405180910390a3505050565b6001600160a01b0383166105f15760405162461bcd60e51b81526004016103069061094c565b6001600160a01b0382166106175760405162461bcd60e51b815260040161030690610839565b6001600160a01b038316600090815260208190526040902054818110156106505760405162461bcd60e51b8152600401610306906108be565b61065a81836106e8565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106909084906109ec565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106da91906109d5565b60405180910390a350505050565b60006104ee8284610a23565b60006104ee82846109ec565b80356001600160a01b038116811461046157600080fd5b600060208284031215610728578081fd5b6104ee82610700565b60008060408385031215610743578081fd5b61074c83610700565b915061075a60208401610700565b90509250929050565b600080600060608486031215610777578081fd5b61078084610700565b925061078e60208501610700565b9150604084013590509250925092565b600080604083850312156107b0578182fd5b6107b983610700565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610812578581018301518582016040015282016107f6565b818111156108235783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156109ff576109ff610a75565b500190565b6000816000190483118215151615610a1e57610a1e610a75565b500290565b600082821015610a3557610a35610a75565b500390565b600281046001821680610a4e57607f821691505b60208210811415610a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a33e7e124776f1c0c89446671aa954136513a32075258096929193f2edc2ea8b64736f6c634300080100330000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806340c10f191161008c57806395d89b411161006657806395d89b411461019f578063a389783e146101a7578063a9059cbb146101ba578063dd62ed3e146101cd576100cf565b806340c10f19146101645780634d853ee51461017757806370a082311461018c576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd146101275780632af4c31e1461013a578063313ce5671461014f575b600080fd5b6100dc6101e0565b6040516100e991906107e6565b60405180910390f35b61010561010036600461079e565b610272565b6040516100e991906107db565b61011a61028f565b6040516100e991906109d5565b610105610135366004610763565b610295565b61014d610148366004610717565b610335565b005b610157610357565b6040516100e991906109de565b61014d61017236600461079e565b61035c565b61017f610438565b6040516100e991906107c7565b61011a61019a366004610717565b610447565b6100dc610466565b6101056101b5366004610731565b610475565b6101056101c836600461079e565b6104a3565b61011a6101db366004610731565b6104b7565b6060600580546101ef90610a3a565b80601f016020809104026020016040519081016040528092919081815260200182805461021b90610a3a565b80156102685780601f1061023d57610100808354040283529160200191610268565b820191906000526020600020905b81548152906001019060200180831161024b57829003601f168201915b5050505050905090565b600061028661027f6104f5565b84846104f9565b50600192915050565b60035490565b60006102a28484846105cb565b6001600160a01b0384166000908152600160205260408120816102c36104f5565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561030f5760405162461bcd60e51b815260040161030690610904565b60405180910390fd5b61032a8561031b6104f5565b61032584876106e8565b6104f9565b506001949350505050565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b601290565b6007546001600160a01b03166103706104f5565b6001600160a01b03161461038357600080fd5b60045460035461039390836106f4565b111561039e57600080fd5b80600360008282546103b091906109ec565b90915550506001600160a01b038216600090815260208190526040812080548392906103dd9084906109ec565b90915550506001600160a01b0382166103f46104f5565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161042c91906109d5565b60405180910390a35050565b6007546001600160a01b031681565b6001600160a01b0381166000908152602081905260409020545b919050565b6060600680546101ef90610a3a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b60006102866104b06104f5565b84846105cb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006104ee8284610a04565b9392505050565b3390565b6001600160a01b03831661051f5760405162461bcd60e51b815260040161030690610991565b6001600160a01b0382166105455760405162461bcd60e51b81526004016103069061087c565b6001600160a01b038084166000818152600260209081526040808320948716808452948252808320805460ff19166001908117909155848452825280832085845290915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105be9085906109d5565b60405180910390a3505050565b6001600160a01b0383166105f15760405162461bcd60e51b81526004016103069061094c565b6001600160a01b0382166106175760405162461bcd60e51b815260040161030690610839565b6001600160a01b038316600090815260208190526040902054818110156106505760405162461bcd60e51b8152600401610306906108be565b61065a81836106e8565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106909084906109ec565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106da91906109d5565b60405180910390a350505050565b60006104ee8284610a23565b60006104ee82846109ec565b80356001600160a01b038116811461046157600080fd5b600060208284031215610728578081fd5b6104ee82610700565b60008060408385031215610743578081fd5b61074c83610700565b915061075a60208401610700565b90509250929050565b600080600060608486031215610777578081fd5b61078084610700565b925061078e60208501610700565b9150604084013590509250925092565b600080604083850312156107b0578182fd5b6107b983610700565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610812578581018301518582016040015282016107f6565b818111156108235783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b600082198211156109ff576109ff610a75565b500190565b6000816000190483118215151615610a1e57610a1e610a75565b500290565b600082821015610a3557610a35610a75565b500390565b600281046001821680610a4e57607f821691505b60208210811415610a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a33e7e124776f1c0c89446671aa954136513a32075258096929193f2edc2ea8b64736f6c63430008010033

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

0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initial_supply (uint256): 0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19017:7947:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20438:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22635:164;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21570:108::-;;;:::i;:::-;;;;;;;:::i;23285:413::-;;;;;;:::i;:::-;;:::i;26273:87::-;;;;;;:::i;:::-;;:::i;:::-;;21408:93;;;:::i;:::-;;;;;;;:::i;26705:256::-;;;;;;:::i;:::-;;:::i;19454:22::-;;;:::i;:::-;;;;;;;:::i;21745:127::-;;;;;;:::i;:::-;;:::i;20661:104::-;;;:::i;26001:143::-;;;;;;:::i;:::-;;:::i;22089:175::-;;;;;;:::i;:::-;;:::i;22331:153::-;;;;;;:::i;:::-;;:::i;20438:100::-;20492:13;20525:5;20518:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20438:100;:::o;22635:164::-;22710:4;22727:42;22736:12;:10;:12::i;:::-;22750:9;22761:7;22727:8;:42::i;:::-;-1:-1:-1;22787:4:0;22635:164;;;;:::o;21570:108::-;21658:12;;21570:108;:::o;23285:413::-;23385:4;23402:30;23412:5;23419:3;23424:7;23402:9;:30::i;:::-;-1:-1:-1;;;;;23472:18:0;;23445:24;23472:18;;;:11;:18;;;;;23445:24;23491:12;:10;:12::i;:::-;-1:-1:-1;;;;;23472:32:0;-1:-1:-1;;;;;23472:32:0;;;;;;;;;;;;;23445:59;;23543:7;23523:16;:27;;23515:80;;;;-1:-1:-1;;;23515:80:0;;;;;;;:::i;:::-;;;;;;;;;23606:60;23615:5;23622:12;:10;:12::i;:::-;23636:29;:16;23657:7;23636:20;:29::i;:::-;23606:8;:60::i;:::-;-1:-1:-1;23686:4:0;;23285:413;-1:-1:-1;;;;23285:413:0:o;26273:87::-;26334:7;:18;;-1:-1:-1;;;;;;26334:18:0;-1:-1:-1;;;;;26334:18:0;;;;;;;;;;26273:87::o;21408:93::-;21491:2;21408:93;:::o;26705:256::-;19625:7;;-1:-1:-1;;;;;19625:7:0;19609:12;:10;:12::i;:::-;-1:-1:-1;;;;;19609:23:0;;19601:32;;;;;;26816:14:::1;::::0;26787:12:::1;::::0;:25:::1;::::0;26804:7;26787:16:::1;:25::i;:::-;:43;;26779:52;;;::::0;::::1;;26858:7;26842:12;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;26876:14:0;::::1;:9;:14:::0;;;::::1;::::0;;;;;;:25;;26894:7;;26876:9;:25:::1;::::0;26894:7;;26876:25:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;26917:36:0;::::1;26926:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;26917:36:0::1;;26945:7;26917:36;;;;;;:::i;:::-;;;;;;;;26705:256:::0;;:::o;19454:22::-;;;-1:-1:-1;;;;;19454:22:0;;:::o;21745:127::-;-1:-1:-1;;;;;21846:18:0;;21819:7;21846:18;;;;;;;;;;;21745:127;;;;:::o;20661:104::-;20717:13;20750:7;20743:14;;;;;:::i;26001:143::-;-1:-1:-1;;;;;26103:22:0;;;26079:4;26103:22;;;:12;:22;;;;;;;;:33;;;;;;;;;;;;;;;26001:143::o;22089:175::-;22175:4;22192:42;22202:12;:10;:12::i;:::-;22216:9;22227:6;22192:9;:42::i;22331:153::-;-1:-1:-1;;;;;22444:21:0;;;22417:7;22444:21;;;:11;:21;;;;;;;;:32;;;;;;;;;;;;;22331:153::o;3381:98::-;3439:7;3466:5;3470:1;3466;:5;:::i;:::-;3459:12;3381:98;-1:-1:-1;;;3381:98:0:o;10215:::-;10295:10;10215:98;:::o;25525:399::-;-1:-1:-1;;;;;25622:20:0;;25614:69;;;;-1:-1:-1;;;25614:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25702:23:0;;25694:70;;;;-1:-1:-1;;;25694:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25777:20:0;;;;;;;:12;:20;;;;;;;;:31;;;;;;;;;;;;:38;;-1:-1:-1;;25777:38:0;25811:4;25777:38;;;;;;25826:19;;;;;;;;:30;;;;;;;;;;:39;;;25881:35;;;;;25859:6;;25881:35;:::i;:::-;;;;;;;;25525:399;;;:::o;24192:545::-;-1:-1:-1;;;;;24298:20:0;;24290:70;;;;-1:-1:-1;;;24290:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24379:23:0;;24371:71;;;;-1:-1:-1;;;24371:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24477:17:0;;24453:21;24477:17;;;;;;;;;;;24513:23;;;;24505:74;;;;-1:-1:-1;;;24505:74:0;;;;;;;:::i;:::-;24610:25;:13;24628:6;24610:17;:25::i;:::-;-1:-1:-1;;;;;24590:17:0;;;:9;:17;;;;;;;;;;;:45;;;;24646:20;;;;;;;;:30;;24670:6;;24590:9;24646:30;;24670:6;;24646:30;:::i;:::-;;;;;;;;24711:9;-1:-1:-1;;;;;24694:35:0;24703:6;-1:-1:-1;;;;;24694:35:0;;24722:6;24694:35;;;;;;:::i;:::-;;;;;;;;24192:545;;;;:::o;3024:98::-;3082:7;3109:5;3113:1;3109;:5;:::i;2643:98::-;2701:7;2728:5;2732:1;2728;:5;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:398::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:32;3094:3;3079:19;;2880:224::o;3109:402::-;3311:2;3293:21;;;3350:2;3330:18;;;3323:30;3389:34;3384:2;3369:18;;3362:62;-1:-1:-1;;;3455:2:1;3440:18;;3433:36;3501:3;3486:19;;3283:228::o;3516:404::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:34;3791:2;3776:18;;3769:62;-1:-1:-1;;;3862:2:1;3847:18;;3840:38;3910:3;3895:19;;3690:230::o;3925:401::-;4127:2;4109:21;;;4166:2;4146:18;;;4139:30;4205:34;4200:2;4185:18;;4178:62;-1:-1:-1;;;4271:2:1;4256:18;;4249:35;4316:3;4301:19;;4099:227::o;4331:400::-;4533:2;4515:21;;;4572:2;4552:18;;;4545:30;4611:34;4606:2;4591:18;;4584:62;-1:-1:-1;;;4677:2:1;4662:18;;4655:34;4721:3;4706:19;;4505:226::o;4736:177::-;4882:25;;;4870:2;4855:18;;4837:76::o;4918:184::-;5090:4;5078:17;;;;5060:36;;5048:2;5033:18;;5015:87::o;5107:128::-;;5178:1;5174:6;5171:1;5168:13;5165:2;;;5184:18;;:::i;:::-;-1:-1:-1;5220:9:1;;5155:80::o;5240:168::-;;5346:1;5342;5338:6;5334:14;5331:1;5328:21;5323:1;5316:9;5309:17;5305:45;5302:2;;;5353:18;;:::i;:::-;-1:-1:-1;5393:9:1;;5292:116::o;5413:125::-;;5481:1;5478;5475:8;5472:2;;;5486:18;;:::i;:::-;-1:-1:-1;5523:9:1;;5462:76::o;5543:380::-;5628:1;5618:12;;5675:1;5665:12;;;5686:2;;5740:4;5732:6;5728:17;5718:27;;5686:2;5793;5785:6;5782:14;5762:18;5759:38;5756:2;;;5839:10;5834:3;5830:20;5827:1;5820:31;5874:4;5871:1;5864:15;5902:4;5899:1;5892:15;5756:2;;5598:325;;;:::o;5928:127::-;5989:10;5984:3;5980:20;5977:1;5970:31;6020:4;6017:1;6010:15;6044:4;6041:1;6034:15

Swarm Source

ipfs://a33e7e124776f1c0c89446671aa954136513a32075258096929193f2edc2ea8b

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

DeFi Liquidity Aggregators Protocol will be launched by MyFi. It will benefit investor who use our Liquidity Aggregator because it will show the best DeFi token with the highest liquidity and APY so it can reduce risk for investment by our Aggregators.

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.