Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 261 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 16433709 | 781 days ago | IN | 0 ETH | 0.00077297 | ||||
Approve | 16350228 | 793 days ago | IN | 0 ETH | 0.00059912 | ||||
Approve | 15974665 | 845 days ago | IN | 0 ETH | 0.0006728 | ||||
Approve | 15811090 | 868 days ago | IN | 0 ETH | 0.00036242 | ||||
Approve | 15786928 | 871 days ago | IN | 0 ETH | 0.00096242 | ||||
Approve | 15754074 | 876 days ago | IN | 0 ETH | 0.00074534 | ||||
Approve | 15735405 | 879 days ago | IN | 0 ETH | 0.00038955 | ||||
Approve | 15733336 | 879 days ago | IN | 0 ETH | 0.00079793 | ||||
Approve | 15718044 | 881 days ago | IN | 0 ETH | 0.00208428 | ||||
Approve | 15712680 | 882 days ago | IN | 0 ETH | 0.00165813 | ||||
Approve | 15712100 | 882 days ago | IN | 0 ETH | 0.00117421 | ||||
Approve | 15711248 | 882 days ago | IN | 0 ETH | 0.00111001 | ||||
Approve | 15710190 | 882 days ago | IN | 0 ETH | 0.00086931 | ||||
Approve | 15710151 | 882 days ago | IN | 0 ETH | 0.0010198 | ||||
Approve | 15709950 | 882 days ago | IN | 0 ETH | 0.00117222 | ||||
Approve | 15709950 | 882 days ago | IN | 0 ETH | 0.00119555 | ||||
Approve | 15709944 | 882 days ago | IN | 0 ETH | 0.00106232 | ||||
Approve | 15709929 | 882 days ago | IN | 0 ETH | 0.00130501 | ||||
Approve | 15709915 | 882 days ago | IN | 0 ETH | 0.00105074 | ||||
Approve | 15709635 | 882 days ago | IN | 0 ETH | 0.00162492 | ||||
Approve | 15709607 | 882 days ago | IN | 0 ETH | 0.00146228 | ||||
Approve | 15709593 | 882 days ago | IN | 0 ETH | 0.00130101 | ||||
Approve | 15709564 | 882 days ago | IN | 0 ETH | 0.00130014 | ||||
Approve | 15709558 | 882 days ago | IN | 0 ETH | 0.0012833 | ||||
Approve | 15709554 | 882 days ago | IN | 0 ETH | 0.00132911 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
- | 14953360 | 1000 days ago | 0.075 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
StandardERC20
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-13 */ /** *Submitted for verification at Etherscan.io on 2022-06-09 */ /** *Submitted for verification at Etherscan.io on 2022-06-08 */ /** *Submitted for verification at Etherscan.io on 2021-12-08 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 {} } // File: contracts/token/ERC20/behaviours/ERC20Decimals.sol pragma solidity ^0.8.0; /** * @title ERC20Decimals * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot. */ abstract contract ERC20Decimals is ERC20 { uint8 private immutable _decimals; /** * @dev Sets the value of the `decimals`. This value is immutable, it can only be * set once during construction. */ constructor(uint8 decimals_) { _decimals = decimals_; } function decimals() public view virtual override returns (uint8) { return _decimals; } } // File: contracts/service/ServicePayer.sol pragma solidity ^0.8.0; interface IPayable { function pay(string memory serviceName) external payable; } /** * @title ServicePayer * @dev Implementation of the ServicePayer */ abstract contract ServicePayer { constructor(address payable receiver, string memory serviceName) payable { IPayable(receiver).pay{value: msg.value}(serviceName); } } // File: contracts/token/ERC20/StandardERC20.sol pragma solidity ^0.8.0; /** * @title StandardERC20 * @dev Implementation of the StandardERC20 */ contract StandardERC20 is ERC20Decimals, ServicePayer { constructor( string memory name_, string memory symbol_, uint8 decimals_, uint256 initialBalance_, address payable feeReceiver_ ) payable ERC20(name_, symbol_) ERC20Decimals(decimals_) ServicePayer(feeReceiver_, "StandardERC20") { require(initialBalance_ > 0, "StandardERC20: supply cannot be zero"); _mint(_msgSender(), initialBalance_); } function decimals() public view virtual override returns (uint8) { return super.decimals(); } }
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":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"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":"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"}]
Contract Creation Code
60a060405260405162000f8538038062000f8583398101604081905262000026916200036c565b806040518060400160405280600d81526020016c05374616e64617264455243323609c1b8152508487878160039080519060200190620000689291906200023d565b5080516200007e9060049060208401906200023d565b50505060f81b7fff00000000000000000000000000000000000000000000000000000000000000166080526040516315b36b9760e11b81526001600160a01b03831690632b66d72e903490620000d990859060040162000417565b6000604051808303818588803b158015620000f357600080fd5b505af115801562000108573d6000803e3d6000fd5b50505050505050600082116200013b5760405162461bcd60e51b815260040162000132906200044c565b60405180910390fd5b62000150620001496200015b565b836200015f565b50505050506200057b565b3390565b6001600160a01b038216620001885760405162461bcd60e51b8152600401620001329062000490565b620001966000838362000238565b8060026000828254620001aa9190620004d0565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d9908490620004d0565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200021e908590620004c7565b60405180910390a3620002346000838362000238565b5050565b505050565b8280546200024b9062000528565b90600052602060002090601f0160209004810192826200026f5760008555620002ba565b82601f106200028a57805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002ba5782518255916020019190600101906200029d565b50620002c8929150620002cc565b5090565b5b80821115620002c85760008155600101620002cd565b600082601f830112620002f4578081fd5b81516001600160401b038082111562000311576200031162000565565b604051601f8301601f19168101602001828111828210171562000338576200033862000565565b60405282815284830160200186101562000350578384fd5b62000363836020830160208801620004f5565b95945050505050565b600080600080600060a0868803121562000384578081fd5b85516001600160401b03808211156200039b578283fd5b620003a989838a01620002e3565b96506020880151915080821115620003bf578283fd5b50620003ce88828901620002e3565b945050604086015160ff81168114620003e5578182fd5b6060870151608088015191945092506001600160a01b038116811462000409578182fd5b809150509295509295909350565b600060208252825180602084015262000438816040850160208701620004f5565b601f01601f19169190910160400192915050565b60208082526024908201527f5374616e6461726445524332303a20737570706c792063616e6e6f74206265206040820152637a65726f60e01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004f057634e487b7160e01b81526011600452602481fd5b500190565b60005b8381101562000512578181015183820152602001620004f8565b8381111562000522576000848401525b50505050565b6002810460018216806200053d57607f821691505b602082108114156200055f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160f81c6109eb6200059a600039600061060b01526109eb6000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b411461014f578063a457c2d714610157578063a9059cbb1461016a578063dd62ed3e1461017d576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610190565b6040516100c3919061070b565b60405180910390f35b6100df6100da3660046106d7565b610222565b6040516100c39190610700565b6100f461023f565b6040516100c3919061093f565b6100df61010f36600461069c565b610245565b61011c6102de565b6040516100c39190610948565b6100df6101373660046106d7565b6102ed565b6100f461014a366004610649565b610341565b6100b6610360565b6100df6101653660046106d7565b61036f565b6100df6101783660046106d7565b6103e8565b6100f461018b36600461066a565b6103fc565b60606003805461019f9061097a565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb9061097a565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b600061023661022f610427565b848461042b565b50600192915050565b60025490565b60006102528484846104df565b6001600160a01b038416600090815260016020526040812081610273610427565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156102bf5760405162461bcd60e51b81526004016102b690610829565b60405180910390fd5b6102d3856102cb610427565b85840361042b565b506001949350505050565b60006102e8610609565b905090565b60006102366102fa610427565b848460016000610308610427565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461033c9190610956565b61042b565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461019f9061097a565b6000806001600061037e610427565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156103ca5760405162461bcd60e51b81526004016102b6906108fa565b6103de6103d5610427565b8585840361042b565b5060019392505050565b60006102366103f5610427565b84846104df565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104515760405162461bcd60e51b81526004016102b6906108b6565b6001600160a01b0382166104775760405162461bcd60e51b81526004016102b6906107a1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104d290859061093f565b60405180910390a3505050565b6001600160a01b0383166105055760405162461bcd60e51b81526004016102b690610871565b6001600160a01b03821661052b5760405162461bcd60e51b81526004016102b69061075e565b61053683838361062d565b6001600160a01b0383166000908152602081905260409020548181101561056f5760405162461bcd60e51b81526004016102b6906107e3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906105a6908490610956565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516105f0919061093f565b60405180910390a361060384848461062d565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b505050565b80356001600160a01b038116811461035b57600080fd5b60006020828403121561065a578081fd5b61066382610632565b9392505050565b6000806040838503121561067c578081fd5b61068583610632565b915061069360208401610632565b90509250929050565b6000806000606084860312156106b0578081fd5b6106b984610632565b92506106c760208501610632565b9150604084013590509250925092565b600080604083850312156106e9578182fd5b6106f283610632565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156107375785810183015185820160400152820161071b565b818111156107485783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561097557634e487b7160e01b81526011600452602481fd5b500190565b60028104600182168061098e57607f821691505b602082108114156109af57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122024355e191c65c1f34ae379d5280d37f95eb48f97457e6e18c384d4fba776230c64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000003eaa4a5eaf413e73bc00000000000000000000000000000997cd2e739fa7ce2bbec0d18181430bc23effa97000000000000000000000000000000000000000000000000000000000000001de78e8be381aee6adbb207c204465617468206f6620746865204b696e67000000000000000000000000000000000000000000000000000000000000000000000344544b0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b411461014f578063a457c2d714610157578063a9059cbb1461016a578063dd62ed3e1461017d576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ec57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b6610190565b6040516100c3919061070b565b60405180910390f35b6100df6100da3660046106d7565b610222565b6040516100c39190610700565b6100f461023f565b6040516100c3919061093f565b6100df61010f36600461069c565b610245565b61011c6102de565b6040516100c39190610948565b6100df6101373660046106d7565b6102ed565b6100f461014a366004610649565b610341565b6100b6610360565b6100df6101653660046106d7565b61036f565b6100df6101783660046106d7565b6103e8565b6100f461018b36600461066a565b6103fc565b60606003805461019f9061097a565b80601f01602080910402602001604051908101604052809291908181526020018280546101cb9061097a565b80156102185780601f106101ed57610100808354040283529160200191610218565b820191906000526020600020905b8154815290600101906020018083116101fb57829003601f168201915b5050505050905090565b600061023661022f610427565b848461042b565b50600192915050565b60025490565b60006102528484846104df565b6001600160a01b038416600090815260016020526040812081610273610427565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156102bf5760405162461bcd60e51b81526004016102b690610829565b60405180910390fd5b6102d3856102cb610427565b85840361042b565b506001949350505050565b60006102e8610609565b905090565b60006102366102fa610427565b848460016000610308610427565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461033c9190610956565b61042b565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461019f9061097a565b6000806001600061037e610427565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156103ca5760405162461bcd60e51b81526004016102b6906108fa565b6103de6103d5610427565b8585840361042b565b5060019392505050565b60006102366103f5610427565b84846104df565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104515760405162461bcd60e51b81526004016102b6906108b6565b6001600160a01b0382166104775760405162461bcd60e51b81526004016102b6906107a1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104d290859061093f565b60405180910390a3505050565b6001600160a01b0383166105055760405162461bcd60e51b81526004016102b690610871565b6001600160a01b03821661052b5760405162461bcd60e51b81526004016102b69061075e565b61053683838361062d565b6001600160a01b0383166000908152602081905260409020548181101561056f5760405162461bcd60e51b81526004016102b6906107e3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906105a6908490610956565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516105f0919061093f565b60405180910390a361060384848461062d565b50505050565b7f000000000000000000000000000000000000000000000000000000000000001290565b505050565b80356001600160a01b038116811461035b57600080fd5b60006020828403121561065a578081fd5b61066382610632565b9392505050565b6000806040838503121561067c578081fd5b61068583610632565b915061069360208401610632565b90509250929050565b6000806000606084860312156106b0578081fd5b6106b984610632565b92506106c760208501610632565b9150604084013590509250925092565b600080604083850312156106e9578182fd5b6106f283610632565b946020939093013593505050565b901515815260200190565b6000602080835283518082850152825b818110156107375785810183015185820160400152820161071b565b818111156107485783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561097557634e487b7160e01b81526011600452602481fd5b500190565b60028104600182168061098e57607f821691505b602082108114156109af57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122024355e191c65c1f34ae379d5280d37f95eb48f97457e6e18c384d4fba776230c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000003eaa4a5eaf413e73bc00000000000000000000000000000997cd2e739fa7ce2bbec0d18181430bc23effa97000000000000000000000000000000000000000000000000000000000000001de78e8be381aee6adbb207c204465617468206f6620746865204b696e67000000000000000000000000000000000000000000000000000000000000000000000344544b0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): 王の死 | Death of the King
Arg [1] : symbol_ (string): DTK
Arg [2] : decimals_ (uint8): 18
Arg [3] : initialBalance_ (uint256): 1212121200000000000000000000
Arg [4] : feeReceiver_ (address): 0x997Cd2e739fa7cE2bbeC0d18181430BC23Effa97
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000003eaa4a5eaf413e73bc00000
Arg [4] : 000000000000000000000000997cd2e739fa7ce2bbec0d18181430bc23effa97
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [6] : e78e8be381aee6adbb207c204465617468206f6620746865204b696e67000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 44544b0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18115:594:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6903:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9070:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8023:108::-;;;:::i;:::-;;;;;;;:::i;9721:492::-;;;;;;:::i;:::-;;:::i;18599:107::-;;;:::i;:::-;;;;;;;:::i;10622:215::-;;;;;;:::i;:::-;;:::i;8194:127::-;;;;;;:::i;:::-;;:::i;7122:104::-;;;:::i;11340:413::-;;;;;;:::i;:::-;;:::i;8534:175::-;;;;;;:::i;:::-;;:::i;8772:151::-;;;;;;:::i;:::-;;:::i;6903:100::-;6957:13;6990:5;6983:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6903:100;:::o;9070:169::-;9153:4;9170:39;9179:12;:10;:12::i;:::-;9193:7;9202:6;9170:8;:39::i;:::-;-1:-1:-1;9227:4:0;9070:169;;;;:::o;8023:108::-;8111:12;;8023:108;:::o;9721:492::-;9861:4;9878:36;9888:6;9896:9;9907:6;9878:9;:36::i;:::-;-1:-1:-1;;;;;9954:19:0;;9927:24;9954:19;;;:11;:19;;;;;9927:24;9974:12;:10;:12::i;:::-;-1:-1:-1;;;;;9954:33:0;-1:-1:-1;;;;;9954:33:0;;;;;;;;;;;;;9927:60;;10026:6;10006:16;:26;;9998:79;;;;-1:-1:-1;;;9998:79:0;;;;;;;:::i;:::-;;;;;;;;;10113:57;10122:6;10130:12;:10;:12::i;:::-;10163:6;10144:16;:25;10113:8;:57::i;:::-;-1:-1:-1;10201:4:0;;9721:492;-1:-1:-1;;;;9721:492:0:o;18599:107::-;18657:5;18682:16;:14;:16::i;:::-;18675:23;;18599:107;:::o;10622:215::-;10710:4;10727:80;10736:12;:10;:12::i;:::-;10750:7;10796:10;10759:11;:25;10771:12;:10;:12::i;:::-;-1:-1:-1;;;;;10759:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10759:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10727:8;:80::i;8194:127::-;-1:-1:-1;;;;;8295:18:0;;8268:7;8295:18;;;;;;;;;;;8194:127;;;;:::o;7122:104::-;7178:13;7211:7;7204:14;;;;;:::i;11340:413::-;11433:4;11450:24;11477:11;:25;11489:12;:10;:12::i;:::-;-1:-1:-1;;;;;11477:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11477:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11530:35:0;;;;11522:85;;;;-1:-1:-1;;;11522:85:0;;;;;;;:::i;:::-;11643:67;11652:12;:10;:12::i;:::-;11666:7;11694:15;11675:16;:34;11643:8;:67::i;:::-;-1:-1:-1;11741:4:0;;11340:413;-1:-1:-1;;;11340:413:0:o;8534:175::-;8620:4;8637:42;8647:12;:10;:12::i;:::-;8661:9;8672:6;8637:9;:42::i;8772:151::-;-1:-1:-1;;;;;8888:18:0;;;8861:7;8888:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8772:151::o;4558:98::-;4638:10;4558:98;:::o;15024:380::-;-1:-1:-1;;;;;15160:19:0;;15152:68;;;;-1:-1:-1;;;15152:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15239:21:0;;15231:68;;;;-1:-1:-1;;;15231:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15312:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15364:32;;;;;15342:6;;15364:32;:::i;:::-;;;;;;;;15024:380;;;:::o;12243:733::-;-1:-1:-1;;;;;12383:20:0;;12375:70;;;;-1:-1:-1;;;12375:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12464:23:0;;12456:71;;;;-1:-1:-1;;;12456:71:0;;;;;;;:::i;:::-;12540:47;12561:6;12569:9;12580:6;12540:20;:47::i;:::-;-1:-1:-1;;;;;12624:17:0;;12600:21;12624:17;;;;;;;;;;;12660:23;;;;12652:74;;;;-1:-1:-1;;;12652:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12762:17:0;;;:9;:17;;;;;;;;;;;12782:22;;;12762:42;;12826:20;;;;;;;;:30;;12798:6;;12762:9;12826:30;;12798:6;;12826:30;:::i;:::-;;;;;;;;12891:9;-1:-1:-1;;;;;12874:35:0;12883:6;-1:-1:-1;;;;;12874:35:0;;12902:6;12874:35;;;;;;:::i;:::-;;;;;;;;12922:46;12942:6;12950:9;12961:6;12922:19;:46::i;:::-;12243:733;;;;:::o;17405:100::-;17488:9;17405:100;:::o;16004:125::-;;;;:::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:187::-;1459:14;;1452:22;1434:41;;1422:2;1407:18;;1389:92::o;1486:603::-;;1627:2;1656;1645:9;1638:21;1688:6;1682:13;1731:6;1726:2;1715:9;1711:18;1704:34;1756:4;1769:140;1783:6;1780:1;1777:13;1769:140;;;1878:14;;;1874:23;;1868:30;1844:17;;;1863:2;1840:26;1833:66;1798:10;;1769:140;;;1927:6;1924:1;1921:13;1918:2;;;1997:4;1992:2;1983:6;1972:9;1968:22;1964:31;1957:45;1918:2;-1:-1:-1;2073:2:1;2052:15;-1:-1:-1;;2048:29:1;2033:45;;;;2080:2;2029:54;;1607:482;-1:-1:-1;;;1607:482:1:o;2094:399::-;2296:2;2278:21;;;2335:2;2315:18;;;2308:30;2374:34;2369:2;2354:18;;2347:62;-1:-1:-1;;;2440:2:1;2425:18;;2418:33;2483:3;2468:19;;2268:225::o;2498:398::-;2700:2;2682:21;;;2739:2;2719:18;;;2712:30;2778:34;2773:2;2758:18;;2751:62;-1:-1:-1;;;2844:2:1;2829:18;;2822:32;2886:3;2871:19;;2672:224::o;2901:402::-;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:36;3293:3;3278:19;;3075:228::o;3308:404::-;3510:2;3492:21;;;3549:2;3529:18;;;3522:30;3588:34;3583:2;3568:18;;3561:62;-1:-1:-1;;;3654:2:1;3639:18;;3632:38;3702:3;3687:19;;3482:230::o;3717:401::-;3919:2;3901:21;;;3958:2;3938:18;;;3931:30;3997:34;3992:2;3977:18;;3970:62;-1:-1:-1;;;4063:2:1;4048:18;;4041:35;4108:3;4093:19;;3891:227::o;4123:400::-;4325:2;4307:21;;;4364:2;4344:18;;;4337:30;4403:34;4398:2;4383:18;;4376:62;-1:-1:-1;;;4469:2:1;4454:18;;4447:34;4513:3;4498:19;;4297:226::o;4528:401::-;4730:2;4712:21;;;4769:2;4749:18;;;4742:30;4808:34;4803:2;4788:18;;4781:62;-1:-1:-1;;;4874:2:1;4859:18;;4852:35;4919:3;4904:19;;4702:227::o;4934:177::-;5080:25;;;5068:2;5053:18;;5035:76::o;5116:184::-;5288:4;5276:17;;;;5258:36;;5246:2;5231:18;;5213:87::o;5305:229::-;;5376:1;5372:6;5369:1;5366:13;5363:2;;;-1:-1:-1;;;5402:33:1;;5458:4;5455:1;5448:15;5488:4;5409:3;5476:17;5363:2;-1:-1:-1;5519:9:1;;5353:181::o;5539:380::-;5624:1;5614:12;;5671:1;5661:12;;;5682:2;;5736:4;5728:6;5724:17;5714:27;;5682:2;5789;5781:6;5778:14;5758:18;5755:38;5752:2;;;5835:10;5830:3;5826:20;5823:1;5816:31;5870:4;5867:1;5860:15;5898:4;5895:1;5888:15;5752:2;;5594:325;;;:::o
Swarm Source
ipfs://24355e191c65c1f34ae379d5280d37f95eb48f97457e6e18c384d4fba776230c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.