Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 12 from a total of 12 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 5050897 | 30 hrs ago | IN | 0 ETH | 0.00000242 | ||||
Approve | 5047506 | 31 hrs ago | IN | 0 ETH | 0.00000242 | ||||
Approve | 5041919 | 33 hrs ago | IN | 0 ETH | 0.00000256 | ||||
Approve | 5041713 | 33 hrs ago | IN | 0 ETH | 0.00000256 | ||||
Approve | 5038730 | 34 hrs ago | IN | 0 ETH | 0.00000259 | ||||
Approve | 5038302 | 34 hrs ago | IN | 0 ETH | 0.00000278 | ||||
Approve | 5036607 | 34 hrs ago | IN | 0 ETH | 0.00000278 | ||||
Approve | 5036253 | 34 hrs ago | IN | 0 ETH | 0.00000278 | ||||
Approve | 5036160 | 34 hrs ago | IN | 0 ETH | 0.00000282 | ||||
Approve | 5035446 | 35 hrs ago | IN | 0 ETH | 0.00000317 | ||||
Approve | 5033827 | 35 hrs ago | IN | 0 ETH | 0.00000445 | ||||
Workaround_mint | 5033699 | 35 hrs ago | IN | 0 ETH | 0.00000315 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5051511 | 30 hrs ago | 0 ETH | ||||
5051511 | 30 hrs ago | 0 ETH | ||||
5051511 | 30 hrs ago | 0 ETH | ||||
5051511 | 30 hrs ago | 0 ETH | ||||
5051511 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050905 | 30 hrs ago | 0 ETH | ||||
5050897 | 30 hrs ago | 0 ETH | ||||
5050897 | 30 hrs ago | 0 ETH | ||||
5050897 | 30 hrs ago | 0 ETH | ||||
5050897 | 30 hrs ago | 0 ETH | ||||
5047567 | 31 hrs ago | 0 ETH | ||||
5047567 | 31 hrs ago | 0 ETH | ||||
5047567 | 31 hrs ago | 0 ETH | ||||
5047567 | 31 hrs ago | 0 ETH | ||||
5047567 | 31 hrs ago | 0 ETH | ||||
5047567 | 31 hrs ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20Mock
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.5.10
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.23; import "openzeppelin-contracts/token/ERC20/ERC20.sol"; import "openzeppelin-contracts/utils/Context.sol"; contract ERC20Mock is Context, ERC20 { uint8 private _decimals = 18; constructor(uint256 initialSupply) ERC20("SeedERC20Mock", "SEM") { _mint(_msgSender(), initialSupply); } function workaround_mint(address account, uint256 amount) public { _mint(account, amount); } function setDecimals(uint8 decimals_) public { _decimals = decimals_; } function decimals() public view override returns (uint8) { return _decimals; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
[{"inputs":[{"internalType":"uint256","name":"initialSupply","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":[],"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":[{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"setDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"workaround_mint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000157c7d98027b94b8261f4780644a3edf9bb1dac78cacc81a88bc0c51eef0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000002540be400
Deployed Bytecode
0x0007000000000002000000000801034f00000060011002700000011a0110019700000001002001900000002d0000c13d0000008002000039000000400020043f000000040010008c0000004d0000413d000000000208043b000000e002200270000001280020009c0000006b0000a13d000001290020009c000000780000a13d0000012a0020009c000000d40000213d0000012d0020009c000000f20000613d0000012e0020009c0000004d0000c13d000000440010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000301043b000001390030009c0000004d0000213d0000002401800370000000000401043b000000000003004b0000022b0000c13d0000012601000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000012501000041000000c40010043f0000013c0100004100000467000104300000000002000416000000000002004b0000004d0000c13d0000001f021000390000011b022001970000008002200039000000400020043f0000001f0310018f0000011c0410019800000080024000390000003e0000613d0000008005000039000000000608034f000000006706043c0000000005750436000000000025004b0000003a0000c13d000000000003004b0000004b0000613d000000000448034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000000200010008c0000004f0000813d00000000010000190000046700010430000000400300043d0000011d0030009c000000650000213d000000800600043d0000004001300039000000400010043f0000000d0100003900000000091304360000011e010000410000000000190435000000400700043d0000011d0070009c000000650000213d0000004001700039000000400010043f000000030500003900000000045704360000011f0100004100000000001404350000000008030433000001200080009c000001d00000a13d0000014201000041000000000010043f0000004101000039000000040010043f00000143010000410000046700010430000001320020009c0000009e0000213d000001360020009c000001610000613d000001370020009c000001b20000613d000001380020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d00000002010000390000014d0000013d0000012f0020009c0000013f0000613d000001300020009c000001510000613d000001310020009c0000004d0000c13d0000000001000416000000000001004b0000004d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001d90000c13d000000800010043f000000000005004b000001730000613d000000000030043f000000020020008c0000025b0000413d000001400200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000000950000413d000002720000013d000001330020009c000001790000613d000001340020009c000001c70000613d000001350020009c0000004d0000c13d000000440010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000004d0000213d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c700008010020000390006000000080353046504600000040f000000060300035f00000001002001900000004d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000004d0000613d000000000101043b000000000101041a0000000602000029000000000021001a000003610000413d00000000032100190000025d0000013d0000012b0020009c000001310000613d0000012c0020009c0000004d0000c13d000000440010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000101043b000001390010009c0000004d0000213d0000002402800370000000000302043b000001390030009c0000004d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d046504460000040f0000000702000029000000000020043f000000200010043f000000000100001900000040020000390000014c0000013d000000440010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000004d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000004d0000613d000000000101043b0000000702000029000000000020043f000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000004d0000613d000000000101043b000000000101041a000000060310006c0000025d0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e030000410000000000320435000000240210003900000025030000390000000000320435000001260200004100000000002104350000000402100039000000200300003900000000003204350000011a0010009c0000011a0100804100000040011002100000013f011001c70000046700010430000000440010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000201043b000001390020009c0000004d0000213d0000002401800370000000000301043b0000000001000411046503d30000040f000001bf0000013d000000240010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000101043b000001390010009c0000004d0000213d000000000010043f000000200000043f00000040020000390000000001000019046504460000040f000000000101041a000000800010043f0000013a01000041000004660001042e000000240010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000101043b000000ff0010008c0000004d0000213d0000000502000039000000000302041a0000014603300197000000000113019f000000000012041b0000000001000019000004660001042e0000000001000416000000000001004b0000004d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001d90000c13d000000800010043f000000000005004b000002580000c13d0000014601200197000000a00010043f000000000004004b000000c001000039000000a001006039000002730000013d000000640010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000301043b000001390030009c0000004d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000004d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039000600000003001d046504600000040f00000001002001900000004d0000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f000000060400002900000001002001900000004d0000613d000000000101043b000000000101041a000001470010009c000002f90000613d000000050310006c000002f50000813d000000400100043d00000044021000390000014403000041000000000032043500000024021000390000001d03000039000003280000013d000000440010008c0000004d0000413d0000000001000416000000000001004b0000004d0000c13d0000000401800370000000000201043b000001390020009c0000004d0000213d0000002401800370000000000301043b00000000010004110465037c0000040f0000000101000039000000400200043d00000000001204350000011a0020009c0000011a0200804100000040012002100000013b011001c7000004660001042e0000000001000416000000000001004b0000004d0000c13d0000000501000039000000000101041a000000ff0110018f000000800010043f0000013a01000041000004660001042e000000000105041a0000000102100190000000010a1002700000007f0aa0618f0000001f00a0008c00000000010000390000000101002039000000000012004b000001df0000613d0000014201000041000000000010043f0000002201000039000000040010043f000001430100004100000467000104300000002000a0008c000700000006001d000500000007001d000600000004001d000002090000413d00010000000a001d000200000009001d000300000008001d000400000003001d000000000050043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000121011001c70000801002000039046504600000040f00000001002001900000004d0000613d00000003080000290000001f028000390000000502200270000000200080008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000070600002900000005070000290000000604000029000000030500003900000004030000290000000209000029000002090000813d000000000002041b0000000102200039000000000012004b000002050000413d0000001f0080008c000002200000a13d000300000008001d000400000003001d000000000050043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000121011001c70000801002000039046504600000040f00000001002001900000004d0000613d00000003090000290000014802900198000000000101043b000002860000c13d0000002003000039000000070600002900000005070000290000000408000029000002950000013d000000000008004b0000000001000019000002240000613d00000000010904330000000302800210000001470220027f0000014702200167000000000121016f0000000102800210000000000121019f000002a30000013d0000000201000039000000000201041a000000000042001a000003610000413d000600000004001d0000000002420019000000000021041b000000000030043f000000200000043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039000700000003001d046504600000040f000000070600002900000001002001900000004d0000613d000000000101043b000000000201041a00000006030000290000000002320019000000000021041b000000400100043d00000000003104350000011a0010009c0000011a01008041000000400110021000000000020004140000011a0020009c0000011a02008041000000c002200210000000000112019f00000121011001c70000800d020000390000000303000039000001230400004100000000050000190465045b0000040f00000001002001900000004d0000613d0000000001000019000004660001042e000000000030043f000000020020008c000002680000813d0000002001000039000002770000013d000000000100041100000007020000290465037c0000040f000000400100043d000000010200003900000000002104350000011a0010009c0000011a0100804100000040011002100000013b011001c7000004660001042e000001450200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000026a0000413d000000c001300039000000610110008a0000014801100197000001410010009c000000650000213d0000008001100039000700000001001d000000400010043f0000008002000039046503670000040f000000070200002900000000012100490000011a0010009c0000011a0100804100000060011002100000011a0020009c0000011a020080410000004002200210000000000121019f000004660001042e000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007060000290000000507000029000000040800002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000028e0000c13d000000000092004b0000029f0000813d0000000302900210000000f80220018f000001470220027f000001470220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf00000006040000290000000305000039000000000015041b0000000005070433000001200050009c000000650000213d0000000408000039000000000108041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000001d90000c13d000000200030008c000002d40000413d000300000003001d000400000005001d000000000080043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000121011001c70000801002000039046504600000040f00000001002001900000004d0000613d00000004050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000070600002900000006040000290000000408000039000002d40000813d000000000002041b0000000102200039000000000012004b000002d00000413d0000001f0050008c000002ea0000a13d000400000005001d000000000080043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000121011001c70000801002000039046504600000040f00000001002001900000004d0000613d00000004090000290000014802900198000000000101043b000002fe0000c13d00000020030000390000000706000029000000050700002900000004080000390000030d0000013d000000000005004b0000000001000019000002ee0000613d00000000010404330000000302500210000001470220027f0000014702200167000000000121016f0000000102500210000000000121019f000003190000013d000000000104001900000000020004110465037c0000040f0000000604000029000000000104001900000007020000290000000503000029046503d30000040f000002600000013d000000010320008a000000050330027000000000043100190000002003000039000000010440003900000007060000290000000507000029000000040800003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003060000c13d000000000092004b000003170000813d0000000302900210000000f80220018f000001470220027f000001470220016700000000037300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf000000000018041b0000000501000039000000000201041a000001460220019700000012022001bf000000000021041b0000000003000411000000000003004b000003330000c13d000000400100043d00000044021000390000012503000041000000000032043500000024021000390000001f030000390000000000320435000001260200004100000000002104350000000402100039000000200300003900000000003204350000011a0010009c0000011a01008041000000400110021000000127011001c700000467000104300000000201000039000000000201041a000000000062001a000003610000413d0000000002620019000000000021041b000000000030043f000000200000043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000004d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d00000000003104350000011a0010009c0000011a01008041000000400110021000000000020004140000011a0020009c0000011a02008041000000c002200210000000000121019f00000121011001c70000800d0200003900000003030000390000012304000041000000000500001900000000060004110465045b0000040f00000001002001900000004d0000613d0000002001000039000001000010044300000120000004430000012401000041000004660001042e0000014201000041000000000010043f0000001101000039000000040010043f0000014301000041000004670001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003760000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000036f0000413d000000000321001900000000000304350000001f0220003900000148022001970000000001210019000000000001042d00030000000000020000013901100198000003b50000613d000200000003001d000301390020019c000003bf0000613d000100000001001d000000000010043f0000000101000039000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000000303000029000003b30000613d000000000101043b000000000030043f000000200010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000003060000290000000100200190000003b30000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000011a0010009c0000011a01008041000000400110021000000000020004140000011a0020009c0000011a02008041000000c002200210000000000112019f00000121011001c70000800d020000390000000303000039000001490400004100000001050000290465045b0000040f0000000100200190000003b30000613d000000000001042d00000000010000190000046700010430000000400100043d00000064021000390000014c03000041000000000032043500000044021000390000014d03000041000000000032043500000024021000390000002403000039000003c80000013d000000400100043d00000064021000390000014a03000041000000000032043500000044021000390000014b030000410000000000320435000000240210003900000022030000390000000000320435000001260200004100000000002104350000000402100039000000200300003900000000003204350000011a0010009c0000011a0100804100000040011002100000013f011001c700000467000104300004000000000002000400000003001d00000139011001980000041e0000613d000201390020019c000004280000613d000300000001001d000000000010043f000000200000043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000041c0000613d000000000101043b000000000101041a0001000400100074000004320000413d0000000301000029000000000010043f000000200000043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000041c0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f00000000010004140000011a0010009c0000011a01008041000000c00110021000000122011001c70000801002000039046504600000040f00000001002001900000041c0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d00000000003104350000011a0010009c0000011a01008041000000400110021000000000020004140000011a0020009c0000011a02008041000000c002200210000000000112019f00000121011001c70000800d0200003900000003030000390000012304000041000000030500002900000002060000290465045b0000040f00000001002001900000041c0000613d000000000001042d00000000010000190000046700010430000000400100043d000000640210003900000152030000410000000000320435000000440210003900000153030000410000000000320435000000240210003900000025030000390000043b0000013d000000400100043d000000640210003900000150030000410000000000320435000000440210003900000151030000410000000000320435000000240210003900000023030000390000043b0000013d000000400100043d00000064021000390000014e03000041000000000032043500000044021000390000014f030000410000000000320435000000240210003900000026030000390000000000320435000001260200004100000000002104350000000402100039000000200300003900000000003204350000011a0010009c0000011a0100804100000040011002100000013f011001c700000467000104300000011a0010009c0000011a0100804100000040011002100000011a0020009c0000011a020080410000006002200210000000000112019f00000000020004140000011a0020009c0000011a02008041000000c002200210000000000112019f00000154011001c70000801002000039046504600000040f0000000100200190000004590000613d000000000101043b000000000001042d000000000100001900000467000104300000045e002104210000000102000039000000000001042d0000000002000019000000000001042d00000463002104230000000102000039000000000001042d0000000002000019000000000001042d0000046500000432000004660001042e000004670001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffbf5365656445524332304d6f636b0000000000000000000000000000000000000053454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff02000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a7d1ae280000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000007a1395aa0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000064000000800000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f20616402000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000958fa541493d47e75bdda503f2ba3fa91f095006c17fd83f6faef6f90a5c81b5
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000002540be400
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000002540be400
Loading...
Loading
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.