ETH Price: $3,096.16 (-0.49%)
Gas: 3 Gwei

Token

US Crypto Bank (BANK)
 

Overview

Max Total Supply

5,000,000,000 BANK

Holders

20

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
BANK

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-05-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// ----------------------------------------------------------------------------
// US Crypto Bank Token
//
// Deployed to : 0xeD93C9bf1559652dD74CeEFD1192022D32D3DDfe
// Symbol : BANK
// Name : US Crypto Bank
// Total supply: 5,000,000,000
// Decimals :18
//
// Deployed by US Crypto Bank Ecosystem
// ----------------------------------------------------------------------------



/**
 * @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 Burn `amount` tokens from 'owner'
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function burn(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.
 */
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);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable is Context {
  address public owner;

  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }
}

/**
 * @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}.
 *
 * 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 BANK is Context, IERC20, IERC20Metadata, Ownable {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint8 private _decimal;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_, uint8 decimal_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _decimal = decimal_;
        _mint(_msgSender(), totalSupply_);
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * 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 _decimal;
    }

    /**
     * @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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }
    
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual onlyOwner override returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

    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);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimal_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040523480156200001157600080fd5b5060405162001029380380620010298339810160408190526200003491620002d6565b600080546001600160a01b0319163317905583516200005b9060059060208701906200017d565b508251620000719060069060208601906200017d565b506004805460ff191660ff8416179055620000966200008f620000a0565b82620000a4565b5050505062000415565b3390565b6001600160a01b038216620000d65760405162461bcd60e51b8152600401620000cd906200035d565b60405180910390fd5b620000e46000838362000178565b8060036000828254620000f891906200039d565b90915550506001600160a01b03821660009081526001602052604081208054839290620001279084906200039d565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200016c90859062000394565b60405180910390a35050565b505050565b8280546200018b90620003c2565b90600052602060002090601f016020900481019282620001af5760008555620001fa565b82601f10620001ca57805160ff1916838001178555620001fa565b82800160010185558215620001fa579182015b82811115620001fa578251825591602001919060010190620001dd565b50620002089291506200020c565b5090565b5b808211156200020857600081556001016200020d565b600082601f83011262000234578081fd5b81516001600160401b0380821115620002515762000251620003ff565b604051601f8301601f19908116603f011681019082821181831017156200027c576200027c620003ff565b8160405283815260209250868385880101111562000298578485fd5b8491505b83821015620002bb57858201830151818301840152908201906200029c565b83821115620002cc57848385830101525b9695505050505050565b60008060008060808587031215620002ec578384fd5b84516001600160401b038082111562000303578586fd5b620003118883890162000223565b9550602087015191508082111562000327578485fd5b50620003368782880162000223565b935050604085015160ff811681146200034d578283fd5b6060959095015193969295505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003bd57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003d757607f821691505b60208210811415620003f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610c0480620004256000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461019d578063a457c2d7146101a5578063a9059cbb146101b8578063dd62ed3e146101cb576100cf565b806342966c681461016257806370a08231146101755780638da5cb5b14610188576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101de565b6040516100e99190610880565b60405180910390f35b610105610100366004610820565b610270565b6040516100e99190610875565b61011a61028d565b6040516100e99190610b37565b6101056101353660046107e5565b610293565b610142610333565b6040516100e99190610b40565b61010561015d366004610820565b61033c565b610105610170366004610849565b61038b565b61011a610183366004610792565b6103bd565b6101906103d8565b6040516100e99190610861565b6100dc6103e7565b6101056101b3366004610820565b6103f6565b6101056101c6366004610820565b610471565b61011a6101d93660046107b3565b610485565b6060600580546101ed90610b7d565b80601f016020809104026020016040519081016040528092919081815260200182805461021990610b7d565b80156102665780601f1061023b57610100808354040283529160200191610266565b820191906000526020600020905b81548152906001019060200180831161024957829003601f168201915b5050505050905090565b600061028461027d6104b0565b84846104b4565b50600192915050565b60035490565b60006102a0848484610568565b6001600160a01b0384166000908152600260205260408120816102c16104b0565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561030d5760405162461bcd60e51b8152600401610304906109e0565b60405180910390fd5b610328856103196104b0565b6103238685610b66565b6104b4565b506001949350505050565b60045460ff1690565b60006102846103496104b0565b8484600260006103576104b0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103239190610b4e565b600080546001600160a01b031633146103a357600080fd5b6103b46103ae6104b0565b83610690565b5060015b919050565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031681565b6060600680546101ed90610b7d565b600080600260006104056104b0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104515760405162461bcd60e51b815260040161030490610af2565b61046761045c6104b0565b856103238685610b66565b5060019392505050565b600061028461047e6104b0565b8484610568565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104da5760405162461bcd60e51b815260040161030490610aae565b6001600160a01b0382166105005760405162461bcd60e51b815260040161030490610958565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061055b908590610b37565b60405180910390a3505050565b6001600160a01b03831661058e5760405162461bcd60e51b815260040161030490610a69565b6001600160a01b0382166105b45760405162461bcd60e51b8152600401610304906108d3565b6105bf838383610776565b6001600160a01b038316600090815260016020526040902054818110156105f85760405162461bcd60e51b81526004016103049061099a565b6106028282610b66565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610638908490610b4e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106829190610b37565b60405180910390a350505050565b6001600160a01b0382166106b65760405162461bcd60e51b815260040161030490610a28565b6106c282600083610776565b6001600160a01b038216600090815260016020526040902054818110156106fb5760405162461bcd60e51b815260040161030490610916565b6107058282610b66565b6001600160a01b03841660009081526001602052604081209190915560038054849290610733908490610b66565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061055b908690610b37565b505050565b80356001600160a01b03811681146103b857600080fd5b6000602082840312156107a3578081fd5b6107ac8261077b565b9392505050565b600080604083850312156107c5578081fd5b6107ce8361077b565b91506107dc6020840161077b565b90509250929050565b6000806000606084860312156107f9578081fd5b6108028461077b565b92506108106020850161077b565b9150604084013590509250925092565b60008060408385031215610832578182fd5b61083b8361077b565b946020939093013593505050565b60006020828403121561085a578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156108ac57858101830151858201604001528201610890565b818111156108bd5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610b6157610b61610bb8565b500190565b600082821015610b7857610b78610bb8565b500390565b600281046001821680610b9157607f821691505b60208210811415610bb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204aa9e1b7e01806370da826704cf21eb47fb5cc70007f2e0294b7d4e23e26bd0f64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000001027e72f1f12813088000000000000000000000000000000000000000000000000000000000000000000000e55532043727970746f2042616e6b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414e4b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461019d578063a457c2d7146101a5578063a9059cbb146101b8578063dd62ed3e146101cb576100cf565b806342966c681461016257806370a08231146101755780638da5cb5b14610188576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101de565b6040516100e99190610880565b60405180910390f35b610105610100366004610820565b610270565b6040516100e99190610875565b61011a61028d565b6040516100e99190610b37565b6101056101353660046107e5565b610293565b610142610333565b6040516100e99190610b40565b61010561015d366004610820565b61033c565b610105610170366004610849565b61038b565b61011a610183366004610792565b6103bd565b6101906103d8565b6040516100e99190610861565b6100dc6103e7565b6101056101b3366004610820565b6103f6565b6101056101c6366004610820565b610471565b61011a6101d93660046107b3565b610485565b6060600580546101ed90610b7d565b80601f016020809104026020016040519081016040528092919081815260200182805461021990610b7d565b80156102665780601f1061023b57610100808354040283529160200191610266565b820191906000526020600020905b81548152906001019060200180831161024957829003601f168201915b5050505050905090565b600061028461027d6104b0565b84846104b4565b50600192915050565b60035490565b60006102a0848484610568565b6001600160a01b0384166000908152600260205260408120816102c16104b0565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561030d5760405162461bcd60e51b8152600401610304906109e0565b60405180910390fd5b610328856103196104b0565b6103238685610b66565b6104b4565b506001949350505050565b60045460ff1690565b60006102846103496104b0565b8484600260006103576104b0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103239190610b4e565b600080546001600160a01b031633146103a357600080fd5b6103b46103ae6104b0565b83610690565b5060015b919050565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031681565b6060600680546101ed90610b7d565b600080600260006104056104b0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104515760405162461bcd60e51b815260040161030490610af2565b61046761045c6104b0565b856103238685610b66565b5060019392505050565b600061028461047e6104b0565b8484610568565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104da5760405162461bcd60e51b815260040161030490610aae565b6001600160a01b0382166105005760405162461bcd60e51b815260040161030490610958565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061055b908590610b37565b60405180910390a3505050565b6001600160a01b03831661058e5760405162461bcd60e51b815260040161030490610a69565b6001600160a01b0382166105b45760405162461bcd60e51b8152600401610304906108d3565b6105bf838383610776565b6001600160a01b038316600090815260016020526040902054818110156105f85760405162461bcd60e51b81526004016103049061099a565b6106028282610b66565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610638908490610b4e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106829190610b37565b60405180910390a350505050565b6001600160a01b0382166106b65760405162461bcd60e51b815260040161030490610a28565b6106c282600083610776565b6001600160a01b038216600090815260016020526040902054818110156106fb5760405162461bcd60e51b815260040161030490610916565b6107058282610b66565b6001600160a01b03841660009081526001602052604081209190915560038054849290610733908490610b66565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061055b908690610b37565b505050565b80356001600160a01b03811681146103b857600080fd5b6000602082840312156107a3578081fd5b6107ac8261077b565b9392505050565b600080604083850312156107c5578081fd5b6107ce8361077b565b91506107dc6020840161077b565b90509250929050565b6000806000606084860312156107f9578081fd5b6108028461077b565b92506108106020850161077b565b9150604084013590509250925092565b60008060408385031215610832578182fd5b61083b8361077b565b946020939093013593505050565b60006020828403121561085a578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156108ac57858101830151858201604001528201610890565b818111156108bd5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610b6157610b61610bb8565b500190565b600082821015610b7857610b78610bb8565b500390565b600281046001821680610b9157607f821691505b60208210811415610bb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204aa9e1b7e01806370da826704cf21eb47fb5cc70007f2e0294b7d4e23e26bd0f64736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000001027e72f1f12813088000000000000000000000000000000000000000000000000000000000000000000000e55532043727970746f2042616e6b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414e4b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): US Crypto Bank
Arg [1] : symbol_ (string): BANK
Arg [2] : decimal_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 5000000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000001027e72f1f12813088000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 55532043727970746f2042616e6b000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 42414e4b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

5686:8945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6616:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8789:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7742:108::-;;;:::i;:::-;;;;;;;:::i;9440:422::-;;;;;;:::i;:::-;;:::i;7578:99::-;;;:::i;:::-;;;;;;;:::i;10271:215::-;;;;;;:::i;:::-;;:::i;11486:147::-;;;;;;:::i;:::-;;:::i;7913:127::-;;;;;;:::i;:::-;;:::i;4553:20::-;;;:::i;:::-;;;;;;;:::i;6835:104::-;;;:::i;10989:377::-;;;;;;:::i;:::-;;:::i;8253:175::-;;;;;;:::i;:::-;;:::i;8491:151::-;;;;;;:::i;:::-;;:::i;6616:100::-;6670:13;6703:5;6696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6616:100;:::o;8789:169::-;8872:4;8889:39;8898:12;:10;:12::i;:::-;8912:7;8921:6;8889:8;:39::i;:::-;-1:-1:-1;8946:4:0;8789:169;;;;:::o;7742:108::-;7830:12;;7742:108;:::o;9440:422::-;9546:4;9563:36;9573:6;9581:9;9592:6;9563:9;:36::i;:::-;-1:-1:-1;;;;;9639:19:0;;9612:24;9639:19;;;:11;:19;;;;;9612:24;9659:12;:10;:12::i;:::-;-1:-1:-1;;;;;9639:33:0;-1:-1:-1;;;;;9639:33:0;;;;;;;;;;;;;9612:60;;9711:6;9691:16;:26;;9683:79;;;;-1:-1:-1;;;9683:79:0;;;;;;;:::i;:::-;;;;;;;;;9773:57;9782:6;9790:12;:10;:12::i;:::-;9804:25;9823:6;9804:16;:25;:::i;:::-;9773:8;:57::i;:::-;-1:-1:-1;9850:4:0;;9440:422;-1:-1:-1;;;;9440:422:0:o;7578:99::-;7661:8;;;;7578:99;:::o;10271:215::-;10359:4;10376:80;10385:12;:10;:12::i;:::-;10399:7;10445:10;10408:11;:25;10420:12;:10;:12::i;:::-;-1:-1:-1;;;;;10408:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10408:25:0;;;:34;;;;;;;;;;:47;;;;:::i;11486:147::-;11559:4;4880:5;;-1:-1:-1;;;;;4880:5:0;4866:10;:19;4858:28;;;;;;11576:27:::1;11582:12;:10;:12::i;:::-;11596:6;11576:5;:27::i;:::-;-1:-1:-1::0;11621:4:0::1;4893:1;11486:147:::0;;;:::o;7913:127::-;-1:-1:-1;;;;;8014:18:0;7987:7;8014:18;;;:9;:18;;;;;;;7913:127::o;4553:20::-;;;-1:-1:-1;;;;;4553:20:0;;:::o;6835:104::-;6891:13;6924:7;6917:14;;;;;:::i;10989:377::-;11082:4;11099:24;11126:11;:25;11138:12;:10;:12::i;:::-;-1:-1:-1;;;;;11126:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11126:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11179:35:0;;;;11171:85;;;;-1:-1:-1;;;11171:85:0;;;;;;;:::i;:::-;11267:67;11276:12;:10;:12::i;:::-;11290:7;11299:34;11318:15;11299:16;:34;:::i;11267:67::-;-1:-1:-1;11354:4:0;;10989:377;-1:-1:-1;;;10989:377:0:o;8253:175::-;8339:4;8356:42;8366:12;:10;:12::i;:::-;8380:9;8391:6;8356:9;:42::i;8491:151::-;-1:-1:-1;;;;;8607:18:0;;;8580:7;8607:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8491:151::o;3977:98::-;4057:10;3977:98;:::o;14182:346::-;-1:-1:-1;;;;;14284:19:0;;14276:68;;;;-1:-1:-1;;;14276:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14363:21:0;;14355:68;;;;-1:-1:-1;;;14355:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14436:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14488:32;;;;;14466:6;;14488:32;:::i;:::-;;;;;;;;14182:346;;;:::o;12123:604::-;-1:-1:-1;;;;;12229:20:0;;12221:70;;;;-1:-1:-1;;;12221:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12310:23:0;;12302:71;;;;-1:-1:-1;;;12302:71:0;;;;;;;:::i;:::-;12386:47;12407:6;12415:9;12426:6;12386:20;:47::i;:::-;-1:-1:-1;;;;;12470:17:0;;12446:21;12470:17;;;:9;:17;;;;;;12506:23;;;;12498:74;;;;-1:-1:-1;;;12498:74:0;;;;;;;:::i;:::-;12603:22;12619:6;12603:13;:22;:::i;:::-;-1:-1:-1;;;;;12583:17:0;;;;;;;:9;:17;;;;;;:42;;;;12636:20;;;;;;;;:30;;12660:6;;12583:17;12636:30;;12660:6;;12636:30;:::i;:::-;;;;;;;;12701:9;-1:-1:-1;;;;;12684:35:0;12693:6;-1:-1:-1;;;;;12684:35:0;;12712:6;12684:35;;;;;;:::i;:::-;;;;;;;;12123:604;;;;:::o;13680:494::-;-1:-1:-1;;;;;13764:21:0;;13756:67;;;;-1:-1:-1;;;13756:67:0;;;;;;;:::i;:::-;13836:49;13857:7;13874:1;13878:6;13836:20;:49::i;:::-;-1:-1:-1;;;;;13923:18:0;;13898:22;13923:18;;;:9;:18;;;;;;13960:24;;;;13952:71;;;;-1:-1:-1;;;13952:71:0;;;;;;;:::i;:::-;14055:23;14072:6;14055:14;:23;:::i;:::-;-1:-1:-1;;;;;14034:18:0;;;;;;:9;:18;;;;;:44;;;;14089:12;:22;;14105:6;;14034:18;14089:22;;14105:6;;14089:22;:::i;:::-;;;;-1:-1:-1;;14129:37:0;;14155:1;;-1:-1:-1;;;;;14129:37:0;;;;;;;14159:6;;14129:37;:::i;14536:92::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:398::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:32;3692:3;3677:19;;3478:224::o;3707:402::-;3909:2;3891:21;;;3948:2;3928:18;;;3921:30;3987:34;3982:2;3967:18;;3960:62;-1:-1:-1;;;4053:2:1;4038:18;;4031:36;4099:3;4084:19;;3881:228::o;4114:404::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:34;4389:2;4374:18;;4367:62;-1:-1:-1;;;4460:2:1;4445:18;;4438:38;4508:3;4493:19;;4288:230::o;4523:397::-;4725:2;4707:21;;;4764:2;4744:18;;;4737:30;4803:34;4798:2;4783:18;;4776:62;-1:-1:-1;;;4869:2:1;4854:18;;4847:31;4910:3;4895:19;;4697:223::o;4925:401::-;5127:2;5109:21;;;5166:2;5146:18;;;5139:30;5205:34;5200:2;5185:18;;5178:62;-1:-1:-1;;;5271:2:1;5256:18;;5249:35;5316:3;5301:19;;5099:227::o;5331:400::-;5533:2;5515:21;;;5572:2;5552:18;;;5545:30;5611:34;5606:2;5591:18;;5584:62;-1:-1:-1;;;5677:2:1;5662:18;;5655:34;5721:3;5706:19;;5505:226::o;5736:401::-;5938:2;5920:21;;;5977:2;5957:18;;;5950:30;6016:34;6011:2;5996:18;;5989:62;-1:-1:-1;;;6082:2:1;6067:18;;6060:35;6127:3;6112:19;;5910:227::o;6142:177::-;6288:25;;;6276:2;6261:18;;6243:76::o;6324:184::-;6496:4;6484:17;;;;6466:36;;6454:2;6439:18;;6421:87::o;6513:128::-;;6584:1;6580:6;6577:1;6574:13;6571:2;;;6590:18;;:::i;:::-;-1:-1:-1;6626:9:1;;6561:80::o;6646:125::-;;6714:1;6711;6708:8;6705:2;;;6719:18;;:::i;:::-;-1:-1:-1;6756:9:1;;6695:76::o;6776:380::-;6861:1;6851:12;;6908:1;6898:12;;;6919:2;;6973:4;6965:6;6961:17;6951:27;;6919:2;7026;7018:6;7015:14;6995:18;6992:38;6989:2;;;7072:10;7067:3;7063:20;7060:1;7053:31;7107:4;7104:1;7097:15;7135:4;7132:1;7125:15;6989:2;;6831:325;;;:::o;7161:127::-;7222:10;7217:3;7213:20;7210:1;7203:31;7253:4;7250:1;7243:15;7277:4;7274:1;7267:15

Swarm Source

ipfs://4aa9e1b7e01806370da826704cf21eb47fb5cc70007f2e0294b7d4e23e26bd0f
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.