ERC-20
Overview
Max Total Supply
1,000,000,000 井井
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
762,354.227040152270719581 井井Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
INURAI
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-18 */ /** telegram - https://t.me/InuRaiETH website - https://inurai.net twitter - https://twitter.com/InuRaiEth */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint256); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; 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; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _decimals; 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) { _name = name_; _symbol = symbol_; _totalSupply = initialBalance_* 10**decimals_; _balances[tokenOwner] = _totalSupply; _decimals = decimals_; emit Transfer(address(0), tokenOwner, _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 (uint256) { return _decimals; } /** * @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; } function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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); } } pragma solidity ^0.8.0; contract INURAI is ERC20 { constructor( string memory name_, string memory symbol_, uint256 decimals_, uint256 initialBalance_, address tokenOwner_, address payable feeReceiver_ ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) { payable(feeReceiver_).transfer(msg.value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
608060405260405162000dbe38038062000dbe83398101604081905262000026916200026e565b858584868584600490805190602001906200004392919062000115565b5083516200005990600590602087019062000115565b506200006782600a6200035c565b62000073908462000427565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f1935050505015801562000108573d6000803e3d6000fd5b50505050505050620004cb565b828054620001239062000449565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600082601f830112620001cc578081fd5b81516001600160401b0380821115620001e957620001e96200049c565b604051601f8301601f19908116603f011681019082821181831017156200021457620002146200049c565b8160405283815260209250868385880101111562000230578485fd5b8491505b8382101562000253578582018301518183018401529082019062000234565b838211156200026457848385830101525b9695505050505050565b60008060008060008060c0878903121562000287578182fd5b86516001600160401b03808211156200029e578384fd5b620002ac8a838b01620001bb565b97506020890151915080821115620002c2578384fd5b50620002d189828a01620001bb565b95505060408701519350606087015192506080870151620002f281620004b2565b60a08801519092506200030581620004b2565b809150509295509295509295565b600181815b808511156200035457816000190482111562000338576200033862000486565b808516156200034657918102915b93841c939080029062000318565b509250929050565b60006200036a838362000371565b9392505050565b600082620003825750600162000421565b81620003915750600062000421565b8160018114620003aa5760028114620003b557620003d5565b600191505062000421565b60ff841115620003c957620003c962000486565b50506001821b62000421565b5060208310610133831016604e8410600b8410161715620003fa575081810a62000421565b62000406838362000313565b80600019048211156200041d576200041d62000486565b0290505b92915050565b600081600019048311821515161562000444576200044462000486565b500290565b600181811c908216806200045e57607f821691505b602082108114156200048057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004c857600080fd5b50565b6108e380620004db6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c391906107da565b60405180910390f35b6100df6100da3660046107b1565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610776565b610267565b6003546100f3565b6100df61012a3660046107b1565b61031d565b6100f361013d366004610723565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e3660046107b1565b610363565b6100df6101813660046107b1565b6103fe565b6100f3610194366004610744565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce9061085c565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa9061085c565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610845565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061082d565b6060600580546101ce9061085c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610845565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610845565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061082d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461071e57600080fd5b919050565b600060208284031215610734578081fd5b61073d82610707565b9392505050565b60008060408385031215610756578081fd5b61075f83610707565b915061076d60208401610707565b90509250929050565b60008060006060848603121561078a578081fd5b61079384610707565b92506107a160208501610707565b9150604084013590509250925092565b600080604083850312156107c3578182fd5b6107cc83610707565b946020939093013593505050565b6000602080835283518082850152825b81811015610806578581018301518582016040015282016107ea565b818111156108175783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561084057610840610897565b500190565b60008282101561085757610857610897565b500390565b600181811c9082168061087057607f821691505b6020821081141561089157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a678ec4f080173ee003d590490b1387fd673c743a98c8d7c5255da8c29d6040e64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000009ab2cb3aaed0c921101b7fd46fe3514d934165f20000000000000000000000009ab2cb3aaed0c921101b7fd46fe3514d934165f20000000000000000000000000000000000000000000000000000000000000007496e7520526169000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e4ba95e4ba950000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c391906107da565b60405180910390f35b6100df6100da3660046107b1565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610776565b610267565b6003546100f3565b6100df61012a3660046107b1565b61031d565b6100f361013d366004610723565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e3660046107b1565b610363565b6100df6101813660046107b1565b6103fe565b6100f3610194366004610744565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce9061085c565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa9061085c565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610845565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061082d565b6060600580546101ce9061085c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610845565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610845565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061082d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461071e57600080fd5b919050565b600060208284031215610734578081fd5b61073d82610707565b9392505050565b60008060408385031215610756578081fd5b61075f83610707565b915061076d60208401610707565b90509250929050565b60008060006060848603121561078a578081fd5b61079384610707565b92506107a160208501610707565b9150604084013590509250925092565b600080604083850312156107c3578182fd5b6107cc83610707565b946020939093013593505050565b6000602080835283518082850152825b81811015610806578581018301518582016040015282016107ea565b818111156108175783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561084057610840610897565b500190565b60008282101561085757610857610897565b500390565b600181811c9082168061087057607f821691505b6020821081141561089157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a678ec4f080173ee003d590490b1387fd673c743a98c8d7c5255da8c29d6040e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000009ab2cb3aaed0c921101b7fd46fe3514d934165f20000000000000000000000009ab2cb3aaed0c921101b7fd46fe3514d934165f20000000000000000000000000000000000000000000000000000000000000007496e7520526169000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006e4ba95e4ba950000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Inu Rai
Arg [1] : symbol_ (string): 井井
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 1000000000
Arg [4] : tokenOwner_ (address): 0x9ab2Cb3AAed0c921101B7Fd46fe3514D934165f2
Arg [5] : feeReceiver_ (address): 0x9ab2Cb3AAed0c921101B7Fd46fe3514D934165f2
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000009ab2cb3aaed0c921101b7fd46fe3514d934165f2
Arg [5] : 0000000000000000000000009ab2cb3aaed0c921101b7fd46fe3514d934165f2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 496e752052616900000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : e4ba95e4ba950000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
10961:375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5244:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7420:169;;;;;;:::i;:::-;;:::i;:::-;;;1445:14:1;;1438:22;1420:41;;1408:2;1393:18;7420:169:0;1375:92:1;6373:108:0;6461:12;;6373:108;;;5066:25:1;;;5054:2;5039:18;6373:108:0;5021:76:1;8071:422:0;;;;;;:::i;:::-;;:::i;6206:102::-;6291:9;;6206:102;;8902:215;;;;;;:::i;:::-;;:::i;6544:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6645:18:0;6618:7;6645:18;;;;;;;;;;;;6544:127;5463:104;;;:::i;9620:377::-;;;;;;:::i;:::-;;:::i;6884:175::-;;;;;;:::i;:::-;;:::i;7122:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7238:18:0;;;7211:7;7238:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7122:151;5244:100;5298:13;5331:5;5324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5244:100;:::o;7420:169::-;7503:4;7520:39;3812:10;7543:7;7552:6;7520:8;:39::i;:::-;-1:-1:-1;7577:4:0;7420:169;;;;:::o;8071:422::-;8177:4;8194:36;8204:6;8212:9;8223:6;8194:9;:36::i;:::-;-1:-1:-1;;;;;8270:19:0;;8243:24;8270:19;;;:11;:19;;;;;;;;3812:10;8270:33;;;;;;;;8322:26;;;;8314:79;;;;-1:-1:-1;;;8314:79:0;;3496:2:1;8314:79:0;;;3478:21:1;3535:2;3515:18;;;3508:30;3574:34;3554:18;;;3547:62;-1:-1:-1;;;3625:18:1;;;3618:38;3673:19;;8314:79:0;;;;;;;;;8404:57;8413:6;3812:10;8435:25;8454:6;8435:16;:25;:::i;:::-;8404:8;:57::i;:::-;-1:-1:-1;8481:4:0;;8071:422;-1:-1:-1;;;;8071:422:0:o;8902:215::-;3812:10;8990:4;9039:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9039:34:0;;;;;;;;;;8990:4;;9007:80;;9030:7;;9039:47;;9076:10;;9039:47;:::i;5463:104::-;5519:13;5552:7;5545:14;;;;;:::i;9620:377::-;3812:10;9713:4;9757:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9757:34:0;;;;;;;;;;9810:35;;;;9802:85;;;;-1:-1:-1;;;9802:85:0;;4716:2:1;9802:85:0;;;4698:21:1;4755:2;4735:18;;;4728:30;4794:34;4774:18;;;4767:62;-1:-1:-1;;;4845:18:1;;;4838:35;4890:19;;9802:85:0;4688:227:1;9802:85:0;9898:67;3812:10;9921:7;9930:34;9949:15;9930:16;:34;:::i;9898:67::-;-1:-1:-1;9985:4:0;;9620:377;-1:-1:-1;;;9620:377:0:o;6884:175::-;6970:4;6987:42;3812:10;7011:9;7022:6;6987:9;:42::i;10565:346::-;-1:-1:-1;;;;;10667:19:0;;10659:68;;;;-1:-1:-1;;;10659:68:0;;4311:2:1;10659:68:0;;;4293:21:1;4350:2;4330:18;;;4323:30;4389:34;4369:18;;;4362:62;-1:-1:-1;;;4440:18:1;;;4433:34;4484:19;;10659:68:0;4283:226:1;10659:68:0;-1:-1:-1;;;;;10746:21:0;;10738:68;;;;-1:-1:-1;;;10738:68:0;;2686:2:1;10738:68:0;;;2668:21:1;2725:2;2705:18;;;2698:30;2764:34;2744:18;;;2737:62;-1:-1:-1;;;2815:18:1;;;2808:32;2857:19;;10738:68:0;2658:224:1;10738:68:0;-1:-1:-1;;;;;10819:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10871:32;;5066:25:1;;;10871:32:0;;5039:18:1;10871:32:0;;;;;;;10565:346;;;:::o;10007:546::-;-1:-1:-1;;;;;10113:20:0;;10105:70;;;;-1:-1:-1;;;10105:70:0;;3905:2:1;10105:70:0;;;3887:21:1;3944:2;3924:18;;;3917:30;3983:34;3963:18;;;3956:62;-1:-1:-1;;;4034:18:1;;;4027:35;4079:19;;10105:70:0;3877:227:1;10105:70:0;-1:-1:-1;;;;;10194:23:0;;10186:71;;;;-1:-1:-1;;;10186:71:0;;2282:2:1;10186:71:0;;;2264:21:1;2321:2;2301:18;;;2294:30;2360:34;2340:18;;;2333:62;-1:-1:-1;;;2411:18:1;;;2404:33;2454:19;;10186:71:0;2254:225:1;10186:71:0;-1:-1:-1;;;;;10296:17:0;;10272:21;10296:17;;;;;;;;;;;10332:23;;;;10324:74;;;;-1:-1:-1;;;10324:74:0;;3089:2:1;10324:74:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:36;3264:19;;10324:74:0;3061:228:1;10324:74:0;10429:22;10445:6;10429:13;:22;:::i;:::-;-1:-1:-1;;;;;10409:17:0;;;:9;:17;;;;;;;;;;;:42;;;;10462:20;;;;;;;;:30;;10486:6;;10409:9;10462:30;;10486:6;;10462:30;:::i;:::-;;;;;;;;10527:9;-1:-1:-1;;;;;10510:35:0;10519:6;-1:-1:-1;;;;;10510:35:0;;10538:6;10510:35;;;;5066:25:1;;5054:2;5039:18;;5021:76;10510:35:0;;;;;;;;10007:546;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1472:603::-;1584:4;1613:2;1642;1631:9;1624:21;1674:6;1668:13;1717:6;1712:2;1701:9;1697:18;1690:34;1742:4;1755:140;1769:6;1766:1;1763:13;1755:140;;;1864:14;;;1860:23;;1854:30;1830:17;;;1849:2;1826:26;1819:66;1784:10;;1755:140;;;1913:6;1910:1;1907:13;1904:2;;;1983:4;1978:2;1969:6;1958:9;1954:22;1950:31;1943:45;1904:2;-1:-1:-1;2059:2:1;2038:15;-1:-1:-1;;2034:29:1;2019:45;;;;2066:2;2015:54;;1593:482;-1:-1:-1;;;1593:482:1:o;5102:128::-;5142:3;5173:1;5169:6;5166:1;5163:13;5160:2;;;5179:18;;:::i;:::-;-1:-1:-1;5215:9:1;;5150:80::o;5235:125::-;5275:4;5303:1;5300;5297:8;5294:2;;;5308:18;;:::i;:::-;-1:-1:-1;5345:9:1;;5284:76::o;5365:380::-;5444:1;5440:12;;;;5487;;;5508:2;;5562:4;5554:6;5550:17;5540:27;;5508:2;5615;5607:6;5604:14;5584:18;5581:38;5578:2;;;5661:10;5656:3;5652:20;5649:1;5642:31;5696:4;5693:1;5686:15;5724:4;5721:1;5714:15;5578:2;;5420:325;;;:::o;5750:127::-;5811:10;5806:3;5802:20;5799:1;5792:31;5842:4;5839:1;5832:15;5866:4;5863:1;5856:15
Swarm Source
ipfs://a678ec4f080173ee003d590490b1387fd673c743a98c8d7c5255da8c29d6040e
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.