ETH Price: $2,967.09 (-1.76%)
Gas: 2 Gwei

Contract

0x809E130E10e787139c54e1d12d3D1971b7A675Bf
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve202377032024-07-05 3:44:472 days ago1720151087IN
0x809E130E...1b7A675Bf
0 ETH0.0010711823.1398095
Transfer202376952024-07-05 3:43:112 days ago1720150991IN
0x809E130E...1b7A675Bf
0 ETH0.0013990927.12373812
Transfer202018742024-06-30 3:39:597 days ago1719718799IN
0x809E130E...1b7A675Bf
0 ETH0.000117922.28679195
Transfer201359702024-06-20 22:38:5916 days ago1718923139IN
0x809E130E...1b7A675Bf
0 ETH0.000213874.57060545
Transfer201149632024-06-18 0:04:4719 days ago1718669087IN
0x809E130E...1b7A675Bf
0 ETH0.000312416.05670797
Transfer200513942024-06-09 2:50:3528 days ago1717901435IN
0x809E130E...1b7A675Bf
0 ETH0.000248984.82689057
Transfer199758422024-05-29 13:33:5939 days ago1716989639IN
0x809E130E...1b7A675Bf
0 ETH0.0008097827.29314652
Transfer199754912024-05-29 12:21:5939 days ago1716985319IN
0x809E130E...1b7A675Bf
0 ETH0.0011056621.44505866
Transfer199569092024-05-26 22:03:1141 days ago1716760991IN
0x809E130E...1b7A675Bf
0 ETH0.000334116.47739227
Transfer199493782024-05-25 20:48:2342 days ago1716670103IN
0x809E130E...1b7A675Bf
0 ETH0.000118034.38688643
Transfer199493462024-05-25 20:41:5942 days ago1716669719IN
0x809E130E...1b7A675Bf
0 ETH0.000210864.50504315
Approve199492932024-05-25 20:31:2342 days ago1716669083IN
0x809E130E...1b7A675Bf
0 ETH0.000300566.4627474
Transfer198887982024-05-17 9:28:1151 days ago1715938091IN
0x809E130E...1b7A675Bf
0 ETH0.00026627.72010314
Transfer197923322024-05-03 21:40:5964 days ago1714772459IN
0x809E130E...1b7A675Bf
0 ETH0.000203526.85120477
Transfer197923082024-05-03 21:35:5964 days ago1714772159IN
0x809E130E...1b7A675Bf
0 ETH0.000306116.54015739
Approve197907692024-05-03 16:26:2364 days ago1714753583IN
0x809E130E...1b7A675Bf
0 ETH0.000463659.96944811
Approve197902552024-05-03 14:42:5965 days ago1714747379IN
0x809E130E...1b7A675Bf
0 ETH0.00043939.48750671
Transfer197435212024-04-27 1:53:2371 days ago1714182803IN
0x809E130E...1b7A675Bf
0 ETH0.000293755.69490079
Transfer196841152024-04-18 18:25:4779 days ago1713464747IN
0x809E130E...1b7A675Bf
0 ETH0.0007683614.89600156
Approve196832432024-04-18 15:29:3579 days ago1713454175IN
0x809E130E...1b7A675Bf
0 ETH0.0010053221.71701813
Transfer195996952024-04-06 22:35:4791 days ago1712442947IN
0x809E130E...1b7A675Bf
0 ETH0.0006744713.07882448
Transfer195211672024-03-26 21:08:11102 days ago1711487291IN
0x809E130E...1b7A675Bf
0 ETH0.0022748544.12225524
Transfer195060272024-03-24 17:58:23104 days ago1711303103IN
0x809E130E...1b7A675Bf
0 ETH0.0014657628.41623817
Approve194496572024-03-16 19:54:47112 days ago1710618887IN
0x809E130E...1b7A675Bf
0 ETH0.0008326934.29006712
Approve193718152024-03-05 22:00:47123 days ago1709676047IN
0x809E130E...1b7A675Bf
0 ETH0.0023126495.23323602
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2f32b390...B9C2A0D19
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CosmosERC20

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-09
*/

// Sources flattened with hardhat v2.10.1 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 contracts/ethereum-side/ICosmosToken.sol

pragma solidity 0.8.10;

/**
 * @dev Interface of the CosmosToken deployed by the gravity contract
 */
interface ICosmosToken {
    /**
    * @dev Sets the gravity contract and transfer the balance to the new address.
	 *
	 * Requirements:
	 *
	 * - `msg.sender` must be the current gravity contract
	 */
    function setGravityContract(address _gravityAddress) external;

}


// File contracts/ethereum-side/CosmosToken.sol

pragma solidity ^0.8.10;


contract CosmosERC20 is ERC20, ICosmosToken {
    uint256 private MAX_UINT = 2**256 - 1;

    address public gravity;

    uint8 private cosmosDecimals;

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


    modifier onlyGravity() {
        require(msg.sender == gravity, "Not gravity");
        _;
    }

    constructor(
        address _gravityAddress,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) ERC20(_name, _symbol)  {
        cosmosDecimals = _decimals;
        gravity = _gravityAddress;
        _mint(_gravityAddress, MAX_UINT);

    }


    // This is not an accurate total supply. Instead this is the total supply
    // of the given cosmos asset on Ethereum at this moment in time. Keeping
    // a totally accurate supply would require constant updates from the Cosmos
    // side, while in theory this could be piggy-backed on some existing bridge
    // operation it's a lot of complextiy to add so we chose to forgoe it.

    /**
     * @dev Returns the number of tokens not currently held by the gravity address
	 *
	 */
    function totalSupply() public view virtual override returns (uint256) {
        return MAX_UINT - balanceOf(gravity);
    }


    /**
     * @dev Sets the gravity contract and transfer the balance to the new address.
	 *
	 * Requirements:
	 *
	 * - `msg.sender` must be the current gravity contract
	 */
    function setGravityContract(address _gravityAddress) external onlyGravity {
        require(balanceOf(_gravityAddress) == 0, "new gravity address balance should be zero");
        _transfer(gravity, _gravityAddress, balanceOf(gravity));
        gravity = _gravityAddress;
    }

    /**
     * @dev Overrides the decimal function in the base ERC20 contract.
	 * This override is needed to Ethereum wallets display tokens consistently
	 * with how Cosmos wallets display the native version of the token.
	 */

    function decimals()public view override returns (uint8){
        return cosmosDecimals;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_gravityAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gravity","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_gravityAddress","type":"address"}],"name":"setGravityContract","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":"to","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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80635fd130a91161008c578063a457c2d711610066578063a457c2d7146101b6578063a9059cbb146101c9578063cbf0a64e146101dc578063dd62ed3e1461020757600080fd5b80635fd130a91461017057806370a082311461018557806395d89b41146101ae57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012b578063313ce5671461013e578063395093511461015d575b600080fd5b6100dc61021a565b6040516100e99190610875565b60405180910390f35b6101056101003660046108e6565b6102ac565b60405190151581526020016100e9565b61011d6102c4565b6040519081526020016100e9565b610105610139366004610910565b6102f1565b600654600160a01b900460ff1660405160ff90911681526020016100e9565b61010561016b3660046108e6565b610315565b61018361017e36600461094c565b610337565b005b61011d61019336600461094c565b6001600160a01b031660009081526020819052604090205490565b6100dc610446565b6101056101c43660046108e6565b610455565b6101056101d73660046108e6565b6104d0565b6006546101ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011d61021536600461096e565b6104de565b606060038054610229906109a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610255906109a1565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905090565b6000336102ba818585610509565b5060019392505050565b6006546001600160a01b03166000908152602081905260408120546005546102ec91906109f2565b905090565b6000336102ff85828561062d565b61030a8585856106a7565b506001949350505050565b6000336102ba81858561032883836104de565b6103329190610a09565b610509565b6006546001600160a01b031633146103845760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206772617669747960a81b60448201526064015b60405180910390fd5b6001600160a01b038116600090815260208190526040902054156103fd5760405162461bcd60e51b815260206004820152602a60248201527f6e6577206772617669747920616464726573732062616c616e63652073686f756044820152696c64206265207a65726f60b01b606482015260840161037b565b6006546001600160a01b0316600081815260208190526040902054610424919083906106a7565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610229906109a1565b6000338161046382866104de565b9050838110156104c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037b565b61030a8286868403610509565b6000336102ba8185856106a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661056b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037b565b6001600160a01b0382166105cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061063984846104de565b905060001981146106a157818110156106945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037b565b6106a18484848403610509565b50505050565b6001600160a01b03831661070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037b565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037b565b6001600160a01b038316600090815260208190526040902054818110156107e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061081c908490610a09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086891815260200190565b60405180910390a36106a1565b600060208083528351808285015260005b818110156108a257858101830151858201604001528201610886565b818111156108b4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146108e157600080fd5b919050565b600080604083850312156108f957600080fd5b610902836108ca565b946020939093013593505050565b60008060006060848603121561092557600080fd5b61092e846108ca565b925061093c602085016108ca565b9150604084013590509250925092565b60006020828403121561095e57600080fd5b610967826108ca565b9392505050565b6000806040838503121561098157600080fd5b61098a836108ca565b9150610998602084016108ca565b90509250929050565b600181811c908216806109b557607f821691505b602082108114156109d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610a0457610a046109dc565b500390565b60008219821115610a1c57610a1c6109dc565b50019056fea26469706673582212208a50ee3c57fd9323054bc0e201aca916319d424a626afb75b1f91d15df7259af64736f6c634300080a0033

Deployed Bytecode Sourcemap

18085:2096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6769:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9120:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9120:201:0;1053:187:1;19236:125:0;;;:::i;:::-;;;1391:25:1;;;1379:2;1364:18;19236:125:0;1245:177:1;9901:295:0;;;;;;:::i;:::-;;:::i;20081:95::-;20154:14;;-1:-1:-1;;;20154:14:0;;;;20081:95;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;20081:95:0;1760:184:1;10605:238:0;;;;;;:::i;:::-;;:::i;19556:281::-;;;;;;:::i;:::-;;:::i;:::-;;8060:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8161:18:0;8134:7;8161:18;;;;;;;;;;;;8060:127;6988:104;;;:::i;11346:436::-;;;;;;:::i;:::-;;:::i;8393:193::-;;;;;;:::i;:::-;;:::i;18182:22::-;;;;;-1:-1:-1;;;;;18182:22:0;;;;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;18182:22:0;2140:203:1;8649:151:0;;;;;;:::i;:::-;;:::i;6769:100::-;6823:13;6856:5;6849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6769:100;:::o;9120:201::-;9203:4;4485:10;9259:32;4485:10;9275:7;9284:6;9259:8;:32::i;:::-;-1:-1:-1;9309:4:0;;9120:201;-1:-1:-1;;;9120:201:0:o;19236:125::-;19345:7;;-1:-1:-1;;;;;19345:7:0;19297;8161:18;;;;;;;;;;;19324:8;;:29;;;;:::i;:::-;19317:36;;19236:125;:::o;9901:295::-;10032:4;4485:10;10090:38;10106:4;4485:10;10121:6;10090:15;:38::i;:::-;10139:27;10149:4;10155:2;10159:6;10139:9;:27::i;:::-;-1:-1:-1;10184:4:0;;9901:295;-1:-1:-1;;;;9901:295:0:o;10605:238::-;10693:4;4485:10;10749:64;4485:10;10765:7;10802:10;10774:25;4485:10;10765:7;10774:9;:25::i;:::-;:38;;;;:::i;:::-;10749:8;:64::i;19556:281::-;18384:7;;-1:-1:-1;;;;;18384:7:0;18370:10;:21;18362:45;;;;-1:-1:-1;;;18362:45:0;;3595:2:1;18362:45:0;;;3577:21:1;3634:2;3614:18;;;3607:30;-1:-1:-1;;;3653:18:1;;;3646:41;3704:18;;18362:45:0;;;;;;;;;-1:-1:-1;;;;;8161:18:0;;8134:7;8161:18;;;;;;;;;;;19649:31;19641:86:::1;;;::::0;-1:-1:-1;;;19641:86:0;;3935:2:1;19641:86:0::1;::::0;::::1;3917:21:1::0;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;-1:-1:-1;;;4064:18:1;;;4057:40;4114:19;;19641:86:0::1;3733:406:1::0;19641:86:0::1;19748:7;::::0;-1:-1:-1;;;;;19748:7:0::1;8134::::0;8161:18;;;;;;;;;;;19738:55:::1;::::0;19748:7;19757:15;;19738:9:::1;:55::i;:::-;19804:7;:25:::0;;-1:-1:-1;;;;;;19804:25:0::1;-1:-1:-1::0;;;;;19804:25:0;;;::::1;::::0;;;::::1;::::0;;19556:281::o;6988:104::-;7044:13;7077:7;7070:14;;;;;:::i;11346:436::-;11439:4;4485:10;11439:4;11522:25;4485:10;11539:7;11522:9;:25::i;:::-;11495:52;;11586:15;11566:16;:35;;11558:85;;;;-1:-1:-1;;;11558:85:0;;4346:2:1;11558:85:0;;;4328:21:1;4385:2;4365:18;;;4358:30;4424:34;4404:18;;;4397:62;-1:-1:-1;;;4475:18:1;;;4468:35;4520:19;;11558:85:0;4144:401:1;11558:85:0;11679:60;11688:5;11695:7;11723:15;11704:16;:34;11679:8;:60::i;8393:193::-;8472:4;4485:10;8528:28;4485:10;8545:2;8549:6;8528:9;:28::i;8649:151::-;-1:-1:-1;;;;;8765:18:0;;;8738:7;8765:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8649:151::o;14971:380::-;-1:-1:-1;;;;;15107:19:0;;15099:68;;;;-1:-1:-1;;;15099:68:0;;4752:2:1;15099:68:0;;;4734:21:1;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;-1:-1:-1;;;4881:18:1;;;4874:34;4925:19;;15099:68:0;4550:400:1;15099:68:0;-1:-1:-1;;;;;15186:21:0;;15178:68;;;;-1:-1:-1;;;15178:68:0;;5157:2:1;15178:68:0;;;5139:21:1;5196:2;5176:18;;;5169:30;5235:34;5215:18;;;5208:62;-1:-1:-1;;;5286:18:1;;;5279:32;5328:19;;15178:68:0;4955:398:1;15178:68:0;-1:-1:-1;;;;;15259:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15311:32;;1391:25:1;;;15311:32:0;;1364:18:1;15311:32:0;;;;;;;14971:380;;;:::o;15642:453::-;15777:24;15804:25;15814:5;15821:7;15804:9;:25::i;:::-;15777:52;;-1:-1:-1;;15844:16:0;:37;15840:248;;15926:6;15906:16;:26;;15898:68;;;;-1:-1:-1;;;15898:68:0;;5560:2:1;15898:68:0;;;5542:21:1;5599:2;5579:18;;;5572:30;5638:31;5618:18;;;5611:59;5687:18;;15898:68:0;5358:353:1;15898:68:0;16010:51;16019:5;16026:7;16054:6;16035:16;:25;16010:8;:51::i;:::-;15766:329;15642:453;;;:::o;12252:671::-;-1:-1:-1;;;;;12383:18:0;;12375:68;;;;-1:-1:-1;;;12375:68:0;;5918:2:1;12375:68:0;;;5900:21:1;5957:2;5937:18;;;5930:30;5996:34;5976:18;;;5969:62;-1:-1:-1;;;6047:18:1;;;6040:35;6092:19;;12375:68:0;5716:401:1;12375:68:0;-1:-1:-1;;;;;12462:16:0;;12454:64;;;;-1:-1:-1;;;12454:64:0;;6324:2:1;12454:64:0;;;6306:21:1;6363:2;6343:18;;;6336:30;6402:34;6382:18;;;6375:62;-1:-1:-1;;;6453:18:1;;;6446:33;6496:19;;12454:64:0;6122:399:1;12454:64:0;-1:-1:-1;;;;;12604:15:0;;12582:19;12604:15;;;;;;;;;;;12638:21;;;;12630:72;;;;-1:-1:-1;;;12630:72:0;;6728:2:1;12630:72:0;;;6710:21:1;6767:2;6747:18;;;6740:30;6806:34;6786:18;;;6779:62;-1:-1:-1;;;6857:18:1;;;6850:36;6903:19;;12630:72:0;6526:402:1;12630:72:0;-1:-1:-1;;;;;12738:15:0;;;:9;:15;;;;;;;;;;;12756:20;;;12738:38;;12798:13;;;;;;;;:23;;12770:6;;12738:9;12798:23;;12770:6;;12798:23;:::i;:::-;;;;;;;;12854:2;-1:-1:-1;;;;;12839:26:0;12848:4;-1:-1:-1;;;;;12839:26:0;;12858:6;12839:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;12839:26:0;;;;;;;;12878:37;16695:125;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;3260:128::-;3300:3;3331:1;3327:6;3324:1;3321:13;3318:39;;;3337:18;;:::i;:::-;-1:-1:-1;3373:9:1;;3260:128::o

Swarm Source

ipfs://8a50ee3c57fd9323054bc0e201aca916319d424a626afb75b1f91d15df7259af

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

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.