Token
Wrapped Ether Tester (WETH)
ERC-20
Overview
Max Total Supply
25.0375 WETH
Holders
2
Total Transfers
-
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
WETHTester
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.18;import {ERC20Faucet} from "./ERC20Faucet.sol";import "../../Interfaces/IWETH.sol";contract WETHTester is ERC20Faucet, IWETH {event Deposit(address indexed dst, uint256 wad);event Withdrawal(address indexed src, uint256 wad);constructor(uint256 _tapAmount, uint256 _tapPeriod)ERC20Faucet("Wrapped Ether Tester", "WETH", _tapAmount, _tapPeriod){}receive() external payable {deposit();}function deposit() public payable {_mint(msg.sender, msg.value);emit Deposit(msg.sender, msg.value);}function withdraw(uint256 wad) public {require(balanceOf(msg.sender) >= wad);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0pragma solidity 0.8.24;import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";import "openzeppelin-contracts/contracts/access/Ownable.sol";contract ERC20Faucet is ERC20, Ownable {uint256 public immutable tapAmount;uint256 public immutable tapPeriod;mapping(address => uint256) public lastTapped;constructor(string memory _name, string memory _symbol, uint256 _tapAmount, uint256 _tapPeriod)ERC20(_name, _symbol)Ownable(msg.sender){tapAmount = _tapAmount;tapPeriod = _tapPeriod;}function mint(address _to, uint256 _amount) external onlyOwner {_mint(_to, _amount);}function tapTo(address receiver) public {uint256 timeNow = _requireNotRecentlyTapped(receiver);
12345678910// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol";interface IWETH is IERC20Metadata {function deposit() external payable;function withdraw(uint256 wad) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.20;import {IERC20} from "./IERC20.sol";import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";import {Context} from "../../utils/Context.sol";import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.** 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 ERC-20
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.20;import {IERC20} from "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC-20 standard.*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/function decimals() external view returns (uint8);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-20 standard as defined in the ERC.*/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 value of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC-20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526{"remappings": ["@chimera/=lib/V2-gov/lib/chimera/src/","@ensdomains/=lib/V2-gov/lib/v4-core/node_modules/@ensdomains/","@openzeppelin/=lib/V2-gov/lib/v4-core/lib/openzeppelin-contracts/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","Solady/=lib/Solady/src/","V2-gov/=lib/V2-gov/","chimera/=lib/V2-gov/lib/chimera/src/","ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-gas-snapshot/=lib/V2-gov/lib/v4-core/lib/forge-gas-snapshot/src/","forge-std/=lib/forge-std/src/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","hardhat/=lib/V2-gov/lib/v4-core/node_modules/hardhat/","openzeppelin-contracts/=lib/openzeppelin-contracts/","openzeppelin/=lib/V2-gov/lib/openzeppelin-contracts/","solmate/=lib/V2-gov/lib/v4-core/lib/solmate/src/","v4-core/=lib/V2-gov/lib/v4-core/"],"optimizer": {"enabled": true,"runs": 200},"metadata": {"useLiteralContent": false,
[{"inputs":[{"internalType":"uint256","name":"_tapAmount","type":"uint256"},{"internalType":"uint256","name":"_tapPeriod","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"dst","type":"address"},{"indexed":false,"internalType":"uint256","name":"wad","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"src","type":"address"},{"indexed":false,"internalType":"uint256","name":"wad","type":"uint256"}],"name":"Withdrawal","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":"value","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":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tapPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"tapTo","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wad","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801562000010575f80fd5b5060405162000f9d38038062000f9d83398101604081905262000033916200014d565b6040518060400160405280601481526020017f5772617070656420457468657220546573746572000000000000000000000000815250604051806040016040528060048152602001630ae8aa8960e31b815250838333848481600390816200009c91906200020e565b506004620000ab82826200020e565b5050506001600160a01b038116620000dc57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000e781620000fc565b5060809190915260a05250620002da92505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f80604083850312156200015f575f80fd5b505080516020909101519092909150565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200019957607f821691505b602082108103620001b857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200020957805f5260205f20601f840160051c81016020851015620001e55750805b601f840160051c820191505b8181101562000206575f8155600101620001f1565b50505b505050565b81516001600160401b038111156200022a576200022a62000170565b62000242816200023b845462000184565b84620001be565b602080601f83116001811462000278575f8415620002605750858301515b5f19600386901b1c1916600185901b178555620002d2565b5f85815260208120601f198616915b82811015620002a85788860151825594840194600190910190840162000287565b5085821015620002c657878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b60805160a051610c936200030a5f395f81816102f6015261085601525f818161025c01526105c00152610c935ff3fe60806040526004361061011e575f3560e01c8063715018a61161009d578063a9059cbb11610062578063a9059cbb14610353578063d0e30db014610372578063dd62ed3e1461037a578063f2fde38b146103be578063fd221031146103dd575f80fd5b8063715018a6146102b2578063727e2bc9146102c6578063844c827a146102e55780638da5cb5b1461031857806395d89b411461033f575f80fd5b8063313ce567116100e3578063313ce567146101e657806340c10f19146102015780634865701b14610220578063542522071461024b57806370a082311461027e575f80fd5b806306fdde0314610131578063095ea7b31461015b57806318160ddd1461018a57806323b872dd146101a85780632e1a7d4d146101c7575f80fd5b3661012d5761012b6103f1565b005b5f80fd5b34801561013c575f80fd5b50610145610432565b6040516101529190610adb565b60405180910390f35b348015610166575f80fd5b5061017a610175366004610b3d565b6104c2565b6040519015158152602001610152565b348015610195575f80fd5b506002545b604051908152602001610152565b3480156101b3575f80fd5b5061017a6101c2366004610b65565b6104db565b3480156101d2575f80fd5b5061012b6101e1366004610b9e565b6104fe565b3480156101f1575f80fd5b5060405160128152602001610152565b34801561020c575f80fd5b5061012b61021b366004610b3d565b610585565b34801561022b575f80fd5b5061019a61023a366004610bb5565b60066020525f908152604090205481565b348015610256575f80fd5b5061019a7f000000000000000000000000000000000000000000000000000000000000000081565b348015610289575f80fd5b5061019a610298366004610bb5565b6001600160a01b03165f9081526020819052604090205490565b3480156102bd575f80fd5b5061012b61059b565b3480156102d1575f80fd5b5061012b6102e0366004610bb5565b6105ae565b3480156102f0575f80fd5b5061019a7f000000000000000000000000000000000000000000000000000000000000000081565b348015610323575f80fd5b506005546040516001600160a01b039091168152602001610152565b34801561034a575f80fd5b506101456105ff565b34801561035e575f80fd5b5061017a61036d366004610b3d565b61060e565b61012b6103f1565b348015610385575f80fd5b5061019a610394366004610bd5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156103c9575f80fd5b5061012b6103d8366004610bb5565b61061b565b3480156103e8575f80fd5b5061012b61065d565b6103fb3334610666565b60405134815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2565b60606003805461044190610c06565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90610c06565b80156104b85780601f1061048f576101008083540402835291602001916104b8565b820191905f5260205f20905b81548152906001019060200180831161049b57829003601f168201915b5050505050905090565b5f336104cf81858561069a565b60019150505b92915050565b5f336104e88582856106ac565b6104f3858585610727565b506001949350505050565b335f90815260208190526040902054811115610518575f80fd5b6105223382610784565b604051339082156108fc029083905f818181858888f1935050505015801561054c573d5f803e3d5ffd5b5060405181815233907f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b659060200160405180910390a250565b61058d6107b8565b6105978282610666565b5050565b6105a36107b8565b6105ac5f6107e5565b565b5f6105b882610836565b90506105e4827f0000000000000000000000000000000000000000000000000000000000000000610666565b6001600160a01b039091165f90815260066020526040902055565b60606004805461044190610c06565b5f336104cf818585610727565b6106236107b8565b6001600160a01b03811661065157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61065a816107e5565b50565b6105ac336105ae565b6001600160a01b03821661068f5760405163ec442f0560e01b81525f6004820152602401610648565b6105975f83836108e3565b6106a78383836001610a09565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610721578181101561071357604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610648565b61072184848484035f610a09565b50505050565b6001600160a01b03831661075057604051634b637e8f60e11b81525f6004820152602401610648565b6001600160a01b0382166107795760405163ec442f0560e01b81525f6004820152602401610648565b6106a78383836108e3565b6001600160a01b0382166107ad57604051634b637e8f60e11b81525f6004820152602401610648565b610597825f836108e3565b6005546001600160a01b031633146105ac5760405163118cdaa760e01b8152336004820152602401610648565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0381165f90815260066020526040902054429061087b907f000000000000000000000000000000000000000000000000000000000000000090610c3e565b8110156108de5760405162461bcd60e51b815260206004820152602b60248201527f45524332304661756365743a206d7573742077616974206265666f726520746160448201526a383834b7339030b3b0b4b760a91b6064820152608401610648565b919050565b6001600160a01b03831661090d578060025f8282546109029190610c3e565b9091555061097d9050565b6001600160a01b0383165f908152602081905260409020548181101561095f5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610648565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610999576002805482900390556109b7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109fc91815260200190565b60405180910390a3505050565b6001600160a01b038416610a325760405163e602df0560e01b81525f6004820152602401610648565b6001600160a01b038316610a5b57604051634a1406b160e11b81525f6004820152602401610648565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561072157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610acd91815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610b0757858101830151858201604001528201610aeb565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108de575f80fd5b5f8060408385031215610b4e575f80fd5b610b5783610b27565b946020939093013593505050565b5f805f60608486031215610b77575f80fd5b610b8084610b27565b9250610b8e60208501610b27565b9150604084013590509250925092565b5f60208284031215610bae575f80fd5b5035919050565b5f60208284031215610bc5575f80fd5b610bce82610b27565b9392505050565b5f8060408385031215610be6575f80fd5b610bef83610b27565b9150610bfd60208401610b27565b90509250929050565b600181811c90821680610c1a57607f821691505b602082108103610c3857634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156104d557634e487b7160e01b5f52601160045260245ffdfea26469706673582212203fc62920211544b28b6769203c5439f10149bd1a633b8336b8e72c94fb6dde9964736f6c634300081800330000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
Deployed Bytecode
0x60806040526004361061011e575f3560e01c8063715018a61161009d578063a9059cbb11610062578063a9059cbb14610353578063d0e30db014610372578063dd62ed3e1461037a578063f2fde38b146103be578063fd221031146103dd575f80fd5b8063715018a6146102b2578063727e2bc9146102c6578063844c827a146102e55780638da5cb5b1461031857806395d89b411461033f575f80fd5b8063313ce567116100e3578063313ce567146101e657806340c10f19146102015780634865701b14610220578063542522071461024b57806370a082311461027e575f80fd5b806306fdde0314610131578063095ea7b31461015b57806318160ddd1461018a57806323b872dd146101a85780632e1a7d4d146101c7575f80fd5b3661012d5761012b6103f1565b005b5f80fd5b34801561013c575f80fd5b50610145610432565b6040516101529190610adb565b60405180910390f35b348015610166575f80fd5b5061017a610175366004610b3d565b6104c2565b6040519015158152602001610152565b348015610195575f80fd5b506002545b604051908152602001610152565b3480156101b3575f80fd5b5061017a6101c2366004610b65565b6104db565b3480156101d2575f80fd5b5061012b6101e1366004610b9e565b6104fe565b3480156101f1575f80fd5b5060405160128152602001610152565b34801561020c575f80fd5b5061012b61021b366004610b3d565b610585565b34801561022b575f80fd5b5061019a61023a366004610bb5565b60066020525f908152604090205481565b348015610256575f80fd5b5061019a7f000000000000000000000000000000000000000000000000000000000000000081565b348015610289575f80fd5b5061019a610298366004610bb5565b6001600160a01b03165f9081526020819052604090205490565b3480156102bd575f80fd5b5061012b61059b565b3480156102d1575f80fd5b5061012b6102e0366004610bb5565b6105ae565b3480156102f0575f80fd5b5061019a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b348015610323575f80fd5b506005546040516001600160a01b039091168152602001610152565b34801561034a575f80fd5b506101456105ff565b34801561035e575f80fd5b5061017a61036d366004610b3d565b61060e565b61012b6103f1565b348015610385575f80fd5b5061019a610394366004610bd5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156103c9575f80fd5b5061012b6103d8366004610bb5565b61061b565b3480156103e8575f80fd5b5061012b61065d565b6103fb3334610666565b60405134815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a2565b60606003805461044190610c06565b80601f016020809104026020016040519081016040528092919081815260200182805461046d90610c06565b80156104b85780601f1061048f576101008083540402835291602001916104b8565b820191905f5260205f20905b81548152906001019060200180831161049b57829003601f168201915b5050505050905090565b5f336104cf81858561069a565b60019150505b92915050565b5f336104e88582856106ac565b6104f3858585610727565b506001949350505050565b335f90815260208190526040902054811115610518575f80fd5b6105223382610784565b604051339082156108fc029083905f818181858888f1935050505015801561054c573d5f803e3d5ffd5b5060405181815233907f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b659060200160405180910390a250565b61058d6107b8565b6105978282610666565b5050565b6105a36107b8565b6105ac5f6107e5565b565b5f6105b882610836565b90506105e4827f0000000000000000000000000000000000000000000000000000000000000000610666565b6001600160a01b039091165f90815260066020526040902055565b60606004805461044190610c06565b5f336104cf818585610727565b6106236107b8565b6001600160a01b03811661065157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61065a816107e5565b50565b6105ac336105ae565b6001600160a01b03821661068f5760405163ec442f0560e01b81525f6004820152602401610648565b6105975f83836108e3565b6106a78383836001610a09565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610721578181101561071357604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610648565b61072184848484035f610a09565b50505050565b6001600160a01b03831661075057604051634b637e8f60e11b81525f6004820152602401610648565b6001600160a01b0382166107795760405163ec442f0560e01b81525f6004820152602401610648565b6106a78383836108e3565b6001600160a01b0382166107ad57604051634b637e8f60e11b81525f6004820152602401610648565b610597825f836108e3565b6005546001600160a01b031633146105ac5760405163118cdaa760e01b8152336004820152602401610648565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0381165f90815260066020526040902054429061087b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90610c3e565b8110156108de5760405162461bcd60e51b815260206004820152602b60248201527f45524332304661756365743a206d7573742077616974206265666f726520746160448201526a383834b7339030b3b0b4b760a91b6064820152608401610648565b919050565b6001600160a01b03831661090d578060025f8282546109029190610c3e565b9091555061097d9050565b6001600160a01b0383165f908152602081905260409020548181101561095f5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610648565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610999576002805482900390556109b7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109fc91815260200190565b60405180910390a3505050565b6001600160a01b038416610a325760405163e602df0560e01b81525f6004820152602401610648565b6001600160a01b038316610a5b57604051634a1406b160e11b81525f6004820152602401610648565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561072157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610acd91815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610b0757858101830151858201604001528201610aeb565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108de575f80fd5b5f8060408385031215610b4e575f80fd5b610b5783610b27565b946020939093013593505050565b5f805f60608486031215610b77575f80fd5b610b8084610b27565b9250610b8e60208501610b27565b9150604084013590509250925092565b5f60208284031215610bae575f80fd5b5035919050565b5f60208284031215610bc5575f80fd5b610bce82610b27565b9392505050565b5f8060408385031215610be6575f80fd5b610bef83610b27565b9150610bfd60208401610b27565b90509250929050565b600181811c90821680610c1a57607f821691505b602082108103610c3857634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156104d557634e487b7160e01b5f52601160045260245ffdfea26469706673582212203fc62920211544b28b6769203c5439f10149bd1a633b8336b8e72c94fb6dde9964736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
-----Decoded View---------------
Arg [0] : _tapAmount (uint256): 0
Arg [1] : _tapPeriod (uint256): 115792089237316195423570985008687907853269984665640564039457584007913129639935
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
[ 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.