ETH Price: $3,502.72 (-0.19%)
Gas: 2 Gwei

Token

RUSH (RUSH)
 

Overview

Max Total Supply

100,000,000 RUSH

Holders

292

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
spuro.eth
Balance
151.461041655945243244 RUSH

Value
$0.00
0xb5e8add227067bf3db9989686285919fb669b580
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RushCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 600 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-10-16
*/

/*
Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
.*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;









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





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


/**
 * @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 guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


contract RushCoin is ERC20 {
   constructor(uint256 initialSupply,string memory tokenName,string memory tokenSymbol) ERC20(tokenName,tokenSymbol) {
        _mint(msg.sender, initialSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":[{"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000c9738038062000c978339810160408190526200003491620002c2565b8151829082906200004d90600390602085019062000169565b5080516200006390600490602084019062000169565b5050506200007833846200008160201b60201c565b505050620003ab565b6001600160a01b038216620000dc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620000f0919062000333565b90915550506001600160a01b038216600090815260208190526040812080548392906200011f90849062000333565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001779062000358565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600082601f83011262000220578081fd5b81516001600160401b03808211156200023d576200023d62000395565b604051601f8301601f19908116603f0116810190828211818310171562000268576200026862000395565b8160405283815260209250868385880101111562000284578485fd5b8491505b83821015620002a7578582018301518183018401529082019062000288565b83821115620002b857848385830101525b9695505050505050565b600080600060608486031215620002d7578283fd5b835160208501519093506001600160401b0380821115620002f6578384fd5b62000304878388016200020f565b935060408601519150808211156200031a578283fd5b5062000329868287016200020f565b9150509250925092565b600082198211156200035357634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200036d57607f821691505b602082108114156200038f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6108dc80620003bb6000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e391906107f4565b60405180910390f35b6100ff6100fa3660046107cb565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f366004610790565b61028e565b604051601281526020016100e3565b6100ff6101513660046107cb565b61033d565b61011361016436600461073d565b6001600160a01b031660009081526020819052604090205490565b6100d6610379565b6100ff6101953660046107cb565b610388565b6100ff6101a83660046107cb565b610421565b6101136101bb36600461075e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f59061086b565b80601f01602080910402602001604051908101604052809291908181526020018280546102219061086b565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b600061028533848461042e565b50600192915050565b600061029b848484610552565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103255760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610332853385840361042e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610374908690610847565b61042e565b6060600480546101f59061086b565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561040a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161031c565b610417338585840361042e565b5060019392505050565b6000610285338484610552565b6001600160a01b0383166104905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161031c565b6001600160a01b0382166104f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161031c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161031c565b6001600160a01b0382166106185760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161031c565b6001600160a01b038316600090815260208190526040902054818110156106905760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161031c565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106c7908490610847565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161071391815260200190565b60405180910390a350505050565b80356001600160a01b038116811461073857600080fd5b919050565b60006020828403121561074e578081fd5b61075782610721565b9392505050565b60008060408385031215610770578081fd5b61077983610721565b915061078760208401610721565b90509250929050565b6000806000606084860312156107a4578081fd5b6107ad84610721565b92506107bb60208501610721565b9150604084013590509250925092565b600080604083850312156107dd578182fd5b6107e683610721565b946020939093013593505050565b6000602080835283518082850152825b8181101561082057858101830151858201604001528201610804565b818111156108315783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561086657634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168061087f57607f821691505b602082108114156108a057634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212208d367c1b5ae8cadc6f8938ec4d8630b138a7b3b1bb240238d297eece6c964cfc64736f6c6343000804003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004525553480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045255534800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e391906107f4565b60405180910390f35b6100ff6100fa3660046107cb565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f366004610790565b61028e565b604051601281526020016100e3565b6100ff6101513660046107cb565b61033d565b61011361016436600461073d565b6001600160a01b031660009081526020819052604090205490565b6100d6610379565b6100ff6101953660046107cb565b610388565b6100ff6101a83660046107cb565b610421565b6101136101bb36600461075e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f59061086b565b80601f01602080910402602001604051908101604052809291908181526020018280546102219061086b565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b600061028533848461042e565b50600192915050565b600061029b848484610552565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103255760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610332853385840361042e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610374908690610847565b61042e565b6060600480546101f59061086b565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561040a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161031c565b610417338585840361042e565b5060019392505050565b6000610285338484610552565b6001600160a01b0383166104905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161031c565b6001600160a01b0382166104f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161031c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161031c565b6001600160a01b0382166106185760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161031c565b6001600160a01b038316600090815260208190526040902054818110156106905760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161031c565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906106c7908490610847565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161071391815260200190565b60405180910390a350505050565b80356001600160a01b038116811461073857600080fd5b919050565b60006020828403121561074e578081fd5b61075782610721565b9392505050565b60008060408385031215610770578081fd5b61077983610721565b915061078760208401610721565b90509250929050565b6000806000606084860312156107a4578081fd5b6107ad84610721565b92506107bb60208501610721565b9150604084013590509250925092565b600080604083850312156107dd578182fd5b6107e683610721565b946020939093013593505050565b6000602080835283518082850152825b8181101561082057858101830151858201604001528201610804565b818111156108315783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561086657634e487b7160e01b81526011600452602481fd5b500190565b600181811c9082168061087f57607f821691505b602082108114156108a057634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212208d367c1b5ae8cadc6f8938ec4d8630b138a7b3b1bb240238d297eece6c964cfc64736f6c63430008040033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004525553480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045255534800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000000000000000000
Arg [1] : tokenName (string): RUSH
Arg [2] : tokenSymbol (string): RUSH

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 5255534800000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5255534800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16185:201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6222:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8389:169;;;;;;:::i;:::-;;:::i;:::-;;;1468:14:1;;1461:22;1443:41;;1431:2;1416:18;8389:169:0;1398:92:1;7342:108:0;7430:12;;7342:108;;;5089:25:1;;;5077:2;5062:18;7342:108:0;5044:76:1;9040:492:0;;;;;;:::i;:::-;;:::i;7184:93::-;;;7267:2;5267:36:1;;5255:2;5240:18;7184:93:0;5222:87:1;9941:215:0;;;;;;:::i;:::-;;:::i;7513:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7614:18:0;7587:7;7614:18;;;;;;;;;;;;7513:127;6441:104;;;:::i;10659:413::-;;;;;;:::i;:::-;;:::i;7853:175::-;;;;;;:::i;:::-;;:::i;8091:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8207:18:0;;;8180:7;8207:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8091:151;6222:100;6276:13;6309:5;6302:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6222:100;:::o;8389:169::-;8472:4;8489:39;4119:10;8512:7;8521:6;8489:8;:39::i;:::-;-1:-1:-1;8546:4:0;8389:169;;;;:::o;9040:492::-;9180:4;9197:36;9207:6;9215:9;9226:6;9197:9;:36::i;:::-;-1:-1:-1;;;;;9273:19:0;;9246:24;9273:19;;;:11;:19;;;;;;;;4119:10;9273:33;;;;;;;;9325:26;;;;9317:79;;;;-1:-1:-1;;;9317:79:0;;3519:2:1;9317:79:0;;;3501:21:1;3558:2;3538:18;;;3531:30;3597:34;3577:18;;;3570:62;-1:-1:-1;;;3648:18:1;;;3641:38;3696:19;;9317:79:0;;;;;;;;;9432:57;9441:6;4119:10;9482:6;9463:16;:25;9432:8;:57::i;:::-;-1:-1:-1;9520:4:0;;9040:492;-1:-1:-1;;;;9040:492:0:o;9941:215::-;4119:10;10029:4;10078:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10078:34:0;;;;;;;;;;10029:4;;10046:80;;10069:7;;10078:47;;10115:10;;10078:47;:::i;:::-;10046:8;:80::i;6441:104::-;6497:13;6530:7;6523:14;;;;;:::i;10659:413::-;4119:10;10752:4;10796:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10796:34:0;;;;;;;;;;10849:35;;;;10841:85;;;;-1:-1:-1;;;10841:85:0;;4739:2:1;10841:85:0;;;4721:21:1;4778:2;4758:18;;;4751:30;4817:34;4797:18;;;4790:62;-1:-1:-1;;;4868:18:1;;;4861:35;4913:19;;10841:85:0;4711:227:1;10841:85:0;10962:67;4119:10;10985:7;11013:15;10994:16;:34;10962:8;:67::i;:::-;-1:-1:-1;11060:4:0;;10659:413;-1:-1:-1;;;10659:413:0:o;7853:175::-;7939:4;7956:42;4119:10;7980:9;7991:6;7956:9;:42::i;14343:380::-;-1:-1:-1;;;;;14479:19:0;;14471:68;;;;-1:-1:-1;;;14471:68:0;;4334:2:1;14471:68:0;;;4316:21:1;4373:2;4353:18;;;4346:30;4412:34;4392:18;;;4385:62;-1:-1:-1;;;4463:18:1;;;4456:34;4507:19;;14471:68:0;4306:226:1;14471:68:0;-1:-1:-1;;;;;14558:21:0;;14550:68;;;;-1:-1:-1;;;14550:68:0;;2709:2:1;14550:68:0;;;2691:21:1;2748:2;2728:18;;;2721:30;2787:34;2767:18;;;2760:62;-1:-1:-1;;;2838:18:1;;;2831:32;2880:19;;14550:68:0;2681:224:1;14550:68:0;-1:-1:-1;;;;;14631:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14683:32;;5089:25:1;;;14683:32:0;;5062:18:1;14683:32:0;;;;;;;14343:380;;;:::o;11562:733::-;-1:-1:-1;;;;;11702:20:0;;11694:70;;;;-1:-1:-1;;;11694:70:0;;3928:2:1;11694:70:0;;;3910:21:1;3967:2;3947:18;;;3940:30;4006:34;3986:18;;;3979:62;-1:-1:-1;;;4057:18:1;;;4050:35;4102:19;;11694:70:0;3900:227:1;11694:70:0;-1:-1:-1;;;;;11783:23:0;;11775:71;;;;-1:-1:-1;;;11775:71:0;;2305:2:1;11775:71:0;;;2287:21:1;2344:2;2324:18;;;2317:30;2383:34;2363:18;;;2356:62;-1:-1:-1;;;2434:18:1;;;2427:33;2477:19;;11775:71:0;2277:225:1;11775:71:0;-1:-1:-1;;;;;11943:17:0;;11919:21;11943:17;;;;;;;;;;;11979:23;;;;11971:74;;;;-1:-1:-1;;;11971:74:0;;3112:2:1;11971:74:0;;;3094:21:1;3151:2;3131:18;;;3124:30;3190:34;3170:18;;;3163:62;-1:-1:-1;;;3241:18:1;;;3234:36;3287:19;;11971:74:0;3084:228:1;11971:74:0;-1:-1:-1;;;;;12081:17:0;;;:9;:17;;;;;;;;;;;12101:22;;;12081:42;;12145:20;;;;;;;;:30;;12117:6;;12081:9;12145:30;;12117:6;;12145:30;:::i;:::-;;;;;;;;12210:9;-1:-1:-1;;;;;12193:35:0;12202:6;-1:-1:-1;;;;;12193:35:0;;12221:6;12193:35;;;;5089:25:1;;5077:2;5062:18;;5044:76;12193:35:0;;;;;;;;11562:733;;;;:::o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;:::-;366:39;285:126;-1:-1:-1;;;285:126:1:o;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:1:o;1495:603::-;1607:4;1636:2;1665;1654:9;1647:21;1697:6;1691:13;1740:6;1735:2;1724:9;1720:18;1713:34;1765:4;1778:140;1792:6;1789:1;1786:13;1778:140;;;1887:14;;;1883:23;;1877:30;1853:17;;;1872:2;1849:26;1842:66;1807:10;;1778:140;;;1936:6;1933:1;1930:13;1927:2;;;2006:4;2001:2;1992:6;1981:9;1977:22;1973:31;1966:45;1927:2;-1:-1:-1;2082:2:1;2061:15;-1:-1:-1;;2057:29:1;2042:45;;;;2089:2;2038:54;;1616:482;-1:-1:-1;;;1616:482:1:o;5314:229::-;5354:3;5385:1;5381:6;5378:1;5375:13;5372:2;;;-1:-1:-1;;;5411:33:1;;5467:4;5464:1;5457:15;5497:4;5418:3;5485:17;5372:2;-1:-1:-1;5528:9:1;;5362:181::o;5548:380::-;5627:1;5623:12;;;;5670;;;5691:2;;5745:4;5737:6;5733:17;5723:27;;5691:2;5798;5790:6;5787:14;5767:18;5764:38;5761:2;;;5844:10;5839:3;5835:20;5832:1;5825:31;5879:4;5876:1;5869:15;5907:4;5904:1;5897:15;5761:2;;5603:325;;;:::o

Swarm Source

ipfs://8d367c1b5ae8cadc6f8938ec4d8630b138a7b3b1bb240238d297eece6c964cfc
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.