ETH Price: $2,876.44 (-2.47%)
 

Overview

Max Total Supply

100,000,000 RUNWAGO

Holders

2,877 (0.00%)

Market

Price

$0.0244 @ 0.000008 ETH (-16.45%)

Onchain Market Cap

$2,444,387.00

Circulating Supply Market Cap

$770,173.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
trailero123.base.eth
Balance
694.08129004652869713 RUNWAGO

Value
$16.97 ( ~0.00589964536854106 ETH) [0.0007%]
0xa715e42b6474b34bf8e51ba80bd115aa379205db
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Runwago is the first 100% sustainable App, allowing users to monetize their running goals! The app is already available on the App Store and Google Play, supported by GARMIN! Learn more & download NOW at Runwago.com

Market

Volume (24H):$217,307.00
Market Capitalization:$770,173.00
Circulating Supply:31,509,335.00 RUNWAGO
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
Runwago

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
cancun EvmVersion
File 1 of 6 : RunwagoToken.sol
/*
*** Runwago ***

Welcome to the SportFi revolution!
Runwago: Monetize your running goals!

Website: https://runwago.com
Telegram: https://t.me/runwago
Twitter: https://x.com/runwago
Discord: https://discord.com/invite/runwago
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

import {ERC20} from "openzeppelin/token/ERC20/ERC20.sol";

contract Runwago is ERC20 {
    constructor(address supplyRecipient) ERC20("Runwago", "RUNWAGO") {
        _mint(supplyRecipient, 100_000_000 * 10 ** decimals());
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

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

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

Settings
{
  "remappings": [
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "chainlink/=lib/chainlink/contracts/src/v0.8/",
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "cancun",
  "viaIR": true
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"supplyRecipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523461002f576100196100146100f4565b610273565b610021610034565b610d196108cc8239610d1990f35b61003a565b60405190565b5f80fd5b601f801991011690565b634e487b7160e01b5f52604160045260245ffd5b906100669061003e565b810190811060018060401b0382111761007e57604052565b610048565b9061009661008f610034565b928361005c565b565b5f80fd5b60018060a01b031690565b6100b09061009c565b90565b6100bc816100a7565b036100c357565b5f80fd5b905051906100d4826100b3565b565b906020828203126100ef576100ec915f016100c7565b90565b610098565b6101126115e58038038061010781610083565b9283398101906100d6565b90565b60018060401b0381116101315761012d60209161003e565b0190565b610048565b9061014861014383610115565b610083565b918252565b5f7f52756e7761676f00000000000000000000000000000000000000000000000000910152565b61017e6007610136565b9061018b6020830161014d565b565b610195610174565b90565b5f7f52554e5741474f00000000000000000000000000000000000000000000000000910152565b6101c96007610136565b906101d660208301610198565b565b6101e06101bf565b90565b90565b90565b60ff1690565b634e487b7160e01b5f52601160045260245ffd5b61020c906101e9565b604d811161021a57600a0a90565b6101ef565b90565b61023661023161023b9261021f565b6101e6565b6101e3565b90565b61024d610253919392936101e3565b926101e3565b9161025f8382026101e3565b92818404149015171561026e57565b6101ef565b6102bc9061029061028261018d565b61028a6101d8565b9061050f565b6102b66305f5e1006102b16102ab6102a661054a565b610203565b91610222565b61023e565b906105ad565b565b5190565b634e487b7160e01b5f52602260045260245ffd5b90600160028304921680156102f6575b60208310146102f157565b6102c2565b91607f16916102e6565b5f5260205f2090565b601f602091010490565b1b90565b9190600861033291029161032c5f1984610313565b92610313565b9181191691161790565b61035061034b610355926101e3565b6101e6565b6101e3565b90565b90565b919061037161036c6103799361033c565b610358565b908354610317565b9055565b5f90565b6103939161038d61037d565b9161035b565b565b5b8181106103a1575050565b806103ae5f600193610381565b01610396565b9190601f81116103c4575b505050565b6103d06103f593610300565b9060206103dc84610309565b830193106103fd575b6103ee90610309565b0190610395565b5f80806103bf565b91506103ee819290506103e5565b1c90565b9061041f905f199060080261040b565b191690565b8161042e9161040f565b906002021790565b90610440816102be565b9060018060401b0382116104fe576104628261045c85546102d6565b856103b4565b602090601f831160011461049657918091610485935f9261048a575b5050610424565b90555b565b90915001515f8061047e565b601f198316916104a585610300565b925f5b8181106104e6575091600293918560019694106104cc575b50505002019055610488565b6104dc910151601f84169061040f565b90555f80806104c0565b919360206001819287870151815501950192016104a8565b610048565b9061050d91610436565b565b9061051e610525926003610503565b6004610503565b565b5f90565b90565b61054261053d6105479261052b565b6101e6565b6101e9565b90565b610552610527565b5061055d601261052e565b90565b90565b61057761057261057c92610560565b6101e6565b61009c565b90565b61058890610563565b90565b610594906100a7565b9052565b91906105ab905f6020850194019061058b565b565b806105c86105c26105bd5f61057f565b6100a7565b916100a7565b146105e4576105e2916105da5f61057f565b919091610755565b565b61060e6105f05f61057f565b6105f8610034565b91829163ec442f0560e01b835260048301610598565b0390fd5b61062661062161062b9261009c565b6101e6565b61009c565b90565b61063790610612565b90565b6106439061062e565b90565b906106509061063a565b5f5260205260405f2090565b5f1c90565b90565b6106706106759161065c565b610661565b90565b6106829054610664565b90565b61068e906101e3565b9052565b6040906106bb6106c294969593966106b160608401985f85019061058b565b6020830190610685565b0190610685565b565b906106cf91036101e3565b90565b5f1b90565b906106e35f19916106d2565b9181191691161790565b906107026106fd6107099261033c565b610358565b82546106d7565b9055565b61071c610722919392936101e3565b926101e3565b820180921161072d57565b6101ef565b9061073d91016101e3565b90565b9190610753905f60208501940190610685565b565b9190918061077361076d6107685f61057f565b6100a7565b916100a7565b145f14610854576107976107908361078b6002610678565b61070d565b60026106ed565b5b826107b36107ad6107a85f61057f565b6100a7565b916100a7565b145f14610828576107d76107d0836107cb6002610678565b6106c4565b60026106ed565b5b91909161082361081161080b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9361063a565b9361063a565b9361081a610034565b91829182610740565b0390a3565b61084f8261084961083a5f8790610646565b9161084483610678565b610732565b906106ed565b6107d8565b6108676108625f8390610646565b610678565b8061087a610874856101e3565b916101e3565b106108a25761088d61089d9184906106c4565b6108985f8490610646565b6106ed565b610798565b906108c79091926108b1610034565b93849363391434e360e21b855260048501610692565b0390fdfe60806040526004361015610013575b61049e565b61001d5f356100ac565b806306fdde03146100a7578063095ea7b3146100a257806318160ddd1461009d57806323b872dd14610098578063313ce5671461009357806370a082311461008e57806395d89b4114610089578063a9059cbb146100845763dd62ed3e0361000e57610468565b610405565b6103d0565b61039b565b610348565b6102ea565b61027b565b610223565b61013a565b60e01c90565b60405190565b5f80fd5b5f80fd5b5f9103126100ca57565b6100bc565b5190565b60209181520190565b90825f9392825e0152565b601f801991011690565b61011061011960209361011e93610107816100cf565b938480936100d3565b958691016100dc565b6100e7565b0190565b6101379160208201915f8184039101526100f1565b90565b3461016a5761014a3660046100c0565b6101666101556105fb565b61015d6100b2565b91829182610122565b0390f35b6100b8565b60018060a01b031690565b6101839061016f565b90565b61018f8161017a565b0361019657565b5f80fd5b905035906101a782610186565b565b90565b6101b5816101a9565b036101bc57565b5f80fd5b905035906101cd826101ac565b565b91906040838203126101f757806101eb6101f4925f860161019a565b936020016101c0565b90565b6100bc565b151590565b61020a906101fc565b9052565b9190610221905f60208501940190610201565b565b346102545761025061023f6102393660046101cf565b90610615565b6102476100b2565b9182918261020e565b0390f35b6100b8565b610262906101a9565b9052565b9190610279905f60208501940190610259565b565b346102ab5761028b3660046100c0565b6102a7610296610664565b61029e6100b2565b91829182610266565b0390f35b6100b8565b90916060828403126102e5576102e26102cb845f850161019a565b936102d9816020860161019a565b936040016101c0565b90565b6100bc565b3461031b576103176103066103003660046102b0565b9161067a565b61030e6100b2565b9182918261020e565b0390f35b6100b8565b60ff1690565b61032f90610320565b9052565b9190610346905f60208501940190610326565b565b34610378576103583660046100c0565b6103746103636106cf565b61036b6100b2565b91829182610333565b0390f35b6100b8565b9060208282031261039657610393915f0161019a565b90565b6100bc565b346103cb576103c76103b66103b136600461037d565b61072f565b6103be6100b2565b91829182610266565b0390f35b6100b8565b34610400576103e03660046100c0565b6103fc6103eb61074d565b6103f36100b2565b91829182610122565b0390f35b6100b8565b346104365761043261042161041b3660046101cf565b90610763565b6104296100b2565b9182918261020e565b0390f35b6100b8565b91906040838203126104635780610457610460925f860161019a565b9360200161019a565b90565b6100bc565b346104995761049561048461047e36600461043b565b9061079b565b61048c6100b2565b91829182610266565b0390f35b6100b8565b5f80fd5b606090565b634e487b7160e01b5f52602260045260245ffd5b90600160028304921680156104db575b60208310146104d657565b6104a7565b91607f16916104cb565b60209181520190565b5f5260205f2090565b905f929180549061051161050a836104bb565b80946104e5565b916001811690815f14610568575060011461052c575b505050565b61053991929394506104ee565b915f925b81841061055057505001905f8080610527565b6001816020929593955484860152019101929061053d565b92949550505060ff19168252151560200201905f8080610527565b9061058d916104f7565b90565b634e487b7160e01b5f52604160045260245ffd5b906105ae906100e7565b810190811067ffffffffffffffff8211176105c857604052565b610590565b906105ed6105e6926105dd6100b2565b93848092610583565b03836105a4565b565b6105f8906105cd565b90565b6106036104a2565b5061060e60036105ef565b90565b5f90565b61063291610621610611565b5061062a6107c7565b9190916107d4565b600190565b5f90565b5f1c90565b90565b61064f6106549161063b565b610640565b90565b6106619054610643565b90565b61066c610637565b506106776002610657565b90565b916106a492610687610611565b5061069c6106936107c7565b82908491610831565b919091610904565b600190565b5f90565b90565b90565b6106c76106c26106cc926106ad565b6106b0565b610320565b90565b6106d76106a9565b506106e260126106b3565b90565b6106f96106f46106fe9261016f565b6106b0565b61016f565b90565b61070a906106e5565b90565b61071690610701565b90565b906107239061070d565b5f5260205260405f2090565b61074561074a9161073e610637565b505f610719565b610657565b90565b6107556104a2565b5061076060046105ef565b90565b6107809161076f610611565b506107786107c7565b919091610904565b600190565b9061078f9061070d565b5f5260205260405f2090565b6107c0916107b66107bb926107ae610637565b506001610785565b610719565b610657565b90565b5f90565b6107cf6107c3565b503390565b916107e29291600192610a09565b565b6107ed9061017a565b9052565b60409061081a610821949695939661081060608401985f8501906107e4565b6020830190610259565b0190610259565b565b9061082e91036101a9565b90565b92919261083f81839061079b565b908161085461084e5f196101a9565b916101a9565b03610861575b5050509050565b8161087461086e876101a9565b916101a9565b1061089a576108919394610889919392610823565b905f92610a09565b805f808061085a565b506108c0849291926108aa6100b2565b938493637dc7a0d960e11b8552600485016107f1565b0390fd5b90565b6108db6108d66108e0926108c4565b6106b0565b61016f565b90565b6108ec906108c7565b90565b9190610902905f602085019401906107e4565b565b918261092061091a6109155f6108e3565b61017a565b9161017a565b14610981578161094061093a6109355f6108e3565b61017a565b9161017a565b146109535761095192919091610b6d565b565b61097d61095f5f6108e3565b6109676100b2565b91829163ec442f0560e01b8352600483016108ef565b0390fd5b6109ab61098d5f6108e3565b6109956100b2565b918291634b637e8f60e11b8352600483016108ef565b0390fd5b5f1b90565b906109c05f19916109af565b9181191691161790565b6109de6109d96109e3926101a9565b6106b0565b6101a9565b90565b90565b906109fe6109f9610a05926109ca565b6109e6565b82546109b4565b9055565b909281610a26610a20610a1b5f6108e3565b61017a565b9161017a565b14610af85783610a46610a40610a3b5f6108e3565b61017a565b9161017a565b14610aca57610a6a83610a65610a5e60018690610785565b8790610719565b6109e9565b610a74575b505050565b919091610abf610aad610aa77f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259361070d565b9361070d565b93610ab66100b2565b91829182610266565b0390a35f8080610a6f565b610af4610ad65f6108e3565b610ade6100b2565b918291634a1406b160e11b8352600483016108ef565b0390fd5b610b22610b045f6108e3565b610b0c6100b2565b91829163e602df0560e01b8352600483016108ef565b0390fd5b634e487b7160e01b5f52601160045260245ffd5b610b49610b4f919392936101a9565b926101a9565b8201809211610b5a57565b610b26565b90610b6a91016101a9565b90565b91909180610b8b610b85610b805f6108e3565b61017a565b9161017a565b145f14610c6c57610baf610ba883610ba36002610657565b610b3a565b60026109e9565b5b82610bcb610bc5610bc05f6108e3565b61017a565b9161017a565b145f14610c4057610bef610be883610be36002610657565b610823565b60026109e9565b5b919091610c3b610c29610c237fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9361070d565b9361070d565b93610c326100b2565b91829182610266565b0390a3565b610c6782610c61610c525f8790610719565b91610c5c83610657565b610b5f565b906109e9565b610bf0565b610c7f610c7a5f8390610719565b610657565b80610c92610c8c856101a9565b916101a9565b10610cba57610ca5610cb5918490610823565b610cb05f8490610719565b6109e9565b610bb0565b90610cdf909192610cc96100b2565b93849363391434e360e21b8552600485016107f1565b0390fdfea2646970667358221220e899da9de78db17c20c25af111c4a3b64e92a116d671e80f0fb10e1fdcc233cb64736f6c63430008190033000000000000000000000000490bd14b362cc8e3cac7b1d583876fc8522f6cd0

Deployed Bytecode

0x60806040526004361015610013575b61049e565b61001d5f356100ac565b806306fdde03146100a7578063095ea7b3146100a257806318160ddd1461009d57806323b872dd14610098578063313ce5671461009357806370a082311461008e57806395d89b4114610089578063a9059cbb146100845763dd62ed3e0361000e57610468565b610405565b6103d0565b61039b565b610348565b6102ea565b61027b565b610223565b61013a565b60e01c90565b60405190565b5f80fd5b5f80fd5b5f9103126100ca57565b6100bc565b5190565b60209181520190565b90825f9392825e0152565b601f801991011690565b61011061011960209361011e93610107816100cf565b938480936100d3565b958691016100dc565b6100e7565b0190565b6101379160208201915f8184039101526100f1565b90565b3461016a5761014a3660046100c0565b6101666101556105fb565b61015d6100b2565b91829182610122565b0390f35b6100b8565b60018060a01b031690565b6101839061016f565b90565b61018f8161017a565b0361019657565b5f80fd5b905035906101a782610186565b565b90565b6101b5816101a9565b036101bc57565b5f80fd5b905035906101cd826101ac565b565b91906040838203126101f757806101eb6101f4925f860161019a565b936020016101c0565b90565b6100bc565b151590565b61020a906101fc565b9052565b9190610221905f60208501940190610201565b565b346102545761025061023f6102393660046101cf565b90610615565b6102476100b2565b9182918261020e565b0390f35b6100b8565b610262906101a9565b9052565b9190610279905f60208501940190610259565b565b346102ab5761028b3660046100c0565b6102a7610296610664565b61029e6100b2565b91829182610266565b0390f35b6100b8565b90916060828403126102e5576102e26102cb845f850161019a565b936102d9816020860161019a565b936040016101c0565b90565b6100bc565b3461031b576103176103066103003660046102b0565b9161067a565b61030e6100b2565b9182918261020e565b0390f35b6100b8565b60ff1690565b61032f90610320565b9052565b9190610346905f60208501940190610326565b565b34610378576103583660046100c0565b6103746103636106cf565b61036b6100b2565b91829182610333565b0390f35b6100b8565b9060208282031261039657610393915f0161019a565b90565b6100bc565b346103cb576103c76103b66103b136600461037d565b61072f565b6103be6100b2565b91829182610266565b0390f35b6100b8565b34610400576103e03660046100c0565b6103fc6103eb61074d565b6103f36100b2565b91829182610122565b0390f35b6100b8565b346104365761043261042161041b3660046101cf565b90610763565b6104296100b2565b9182918261020e565b0390f35b6100b8565b91906040838203126104635780610457610460925f860161019a565b9360200161019a565b90565b6100bc565b346104995761049561048461047e36600461043b565b9061079b565b61048c6100b2565b91829182610266565b0390f35b6100b8565b5f80fd5b606090565b634e487b7160e01b5f52602260045260245ffd5b90600160028304921680156104db575b60208310146104d657565b6104a7565b91607f16916104cb565b60209181520190565b5f5260205f2090565b905f929180549061051161050a836104bb565b80946104e5565b916001811690815f14610568575060011461052c575b505050565b61053991929394506104ee565b915f925b81841061055057505001905f8080610527565b6001816020929593955484860152019101929061053d565b92949550505060ff19168252151560200201905f8080610527565b9061058d916104f7565b90565b634e487b7160e01b5f52604160045260245ffd5b906105ae906100e7565b810190811067ffffffffffffffff8211176105c857604052565b610590565b906105ed6105e6926105dd6100b2565b93848092610583565b03836105a4565b565b6105f8906105cd565b90565b6106036104a2565b5061060e60036105ef565b90565b5f90565b61063291610621610611565b5061062a6107c7565b9190916107d4565b600190565b5f90565b5f1c90565b90565b61064f6106549161063b565b610640565b90565b6106619054610643565b90565b61066c610637565b506106776002610657565b90565b916106a492610687610611565b5061069c6106936107c7565b82908491610831565b919091610904565b600190565b5f90565b90565b90565b6106c76106c26106cc926106ad565b6106b0565b610320565b90565b6106d76106a9565b506106e260126106b3565b90565b6106f96106f46106fe9261016f565b6106b0565b61016f565b90565b61070a906106e5565b90565b61071690610701565b90565b906107239061070d565b5f5260205260405f2090565b61074561074a9161073e610637565b505f610719565b610657565b90565b6107556104a2565b5061076060046105ef565b90565b6107809161076f610611565b506107786107c7565b919091610904565b600190565b9061078f9061070d565b5f5260205260405f2090565b6107c0916107b66107bb926107ae610637565b506001610785565b610719565b610657565b90565b5f90565b6107cf6107c3565b503390565b916107e29291600192610a09565b565b6107ed9061017a565b9052565b60409061081a610821949695939661081060608401985f8501906107e4565b6020830190610259565b0190610259565b565b9061082e91036101a9565b90565b92919261083f81839061079b565b908161085461084e5f196101a9565b916101a9565b03610861575b5050509050565b8161087461086e876101a9565b916101a9565b1061089a576108919394610889919392610823565b905f92610a09565b805f808061085a565b506108c0849291926108aa6100b2565b938493637dc7a0d960e11b8552600485016107f1565b0390fd5b90565b6108db6108d66108e0926108c4565b6106b0565b61016f565b90565b6108ec906108c7565b90565b9190610902905f602085019401906107e4565b565b918261092061091a6109155f6108e3565b61017a565b9161017a565b14610981578161094061093a6109355f6108e3565b61017a565b9161017a565b146109535761095192919091610b6d565b565b61097d61095f5f6108e3565b6109676100b2565b91829163ec442f0560e01b8352600483016108ef565b0390fd5b6109ab61098d5f6108e3565b6109956100b2565b918291634b637e8f60e11b8352600483016108ef565b0390fd5b5f1b90565b906109c05f19916109af565b9181191691161790565b6109de6109d96109e3926101a9565b6106b0565b6101a9565b90565b90565b906109fe6109f9610a05926109ca565b6109e6565b82546109b4565b9055565b909281610a26610a20610a1b5f6108e3565b61017a565b9161017a565b14610af85783610a46610a40610a3b5f6108e3565b61017a565b9161017a565b14610aca57610a6a83610a65610a5e60018690610785565b8790610719565b6109e9565b610a74575b505050565b919091610abf610aad610aa77f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259361070d565b9361070d565b93610ab66100b2565b91829182610266565b0390a35f8080610a6f565b610af4610ad65f6108e3565b610ade6100b2565b918291634a1406b160e11b8352600483016108ef565b0390fd5b610b22610b045f6108e3565b610b0c6100b2565b91829163e602df0560e01b8352600483016108ef565b0390fd5b634e487b7160e01b5f52601160045260245ffd5b610b49610b4f919392936101a9565b926101a9565b8201809211610b5a57565b610b26565b90610b6a91016101a9565b90565b91909180610b8b610b85610b805f6108e3565b61017a565b9161017a565b145f14610c6c57610baf610ba883610ba36002610657565b610b3a565b60026109e9565b5b82610bcb610bc5610bc05f6108e3565b61017a565b9161017a565b145f14610c4057610bef610be883610be36002610657565b610823565b60026109e9565b5b919091610c3b610c29610c237fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9361070d565b9361070d565b93610c326100b2565b91829182610266565b0390a3565b610c6782610c61610c525f8790610719565b91610c5c83610657565b610b5f565b906109e9565b610bf0565b610c7f610c7a5f8390610719565b610657565b80610c92610c8c856101a9565b916101a9565b10610cba57610ca5610cb5918490610823565b610cb05f8490610719565b6109e9565b610bb0565b90610cdf909192610cc96100b2565b93849363391434e360e21b8552600485016107f1565b0390fdfea2646970667358221220e899da9de78db17c20c25af111c4a3b64e92a116d671e80f0fb10e1fdcc233cb64736f6c63430008190033

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

000000000000000000000000490bd14b362cc8e3cac7b1d583876fc8522f6cd0

-----Decoded View---------------
Arg [0] : supplyRecipient (address): 0x490Bd14b362CC8e3caC7b1D583876fC8522f6cd0

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


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.