Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 from a total of 180 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 3190289 | 4 days ago | IN | 0 ETH | 0.00000003 | ||||
Approve | 3190286 | 4 days ago | IN | 0 ETH | 0.00000003 | ||||
Approve | 3190286 | 4 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3189817 | 4 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3189790 | 4 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3189735 | 4 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3189412 | 4 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3164457 | 8 days ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 3164451 | 8 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3157779 | 9 days ago | IN | 0 ETH | 0.00001903 | ||||
Transfer | 3157772 | 9 days ago | IN | 0 ETH | 0.0000722 | ||||
Approve | 3157715 | 9 days ago | IN | 0 ETH | 0.00001589 | ||||
Approve | 3157372 | 9 days ago | IN | 0 ETH | 0.00003015 | ||||
Approve | 3156865 | 9 days ago | IN | 0 ETH | 0.00007127 | ||||
Approve | 3156850 | 9 days ago | IN | 0 ETH | 0.00007644 | ||||
Approve | 3138174 | 12 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3110012 | 16 days ago | IN | 0 ETH | 0.00000005 | ||||
Approve | 3109824 | 16 days ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 3062673 | 23 days ago | IN | 0 ETH | 0.00002072 | ||||
Approve | 2967493 | 37 days ago | IN | 0 ETH | 0.00004937 | ||||
Approve | 2967485 | 37 days ago | IN | 0 ETH | 0.00004938 | ||||
Approve | 2962893 | 38 days ago | IN | 0 ETH | 0.00005535 | ||||
Approve | 2962387 | 38 days ago | IN | 0 ETH | 0.00004474 | ||||
Transfer | 2962379 | 38 days ago | IN | 0 ETH | 0.00003314 | ||||
Approve | 2961888 | 38 days ago | IN | 0 ETH | 0.00000003 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DrippableERC20Token
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.19; import "solmate/tokens/ERC20.sol"; /// SPDX-License-Identifier: GPL-3.0-or-later /// @title Drippable ERC20 token /// @notice A simple drippable ERC20 token to be used in tests. /// @author Federico Luzzi - <[email protected]> contract DrippableERC20Token is ERC20 { uint256 internal immutable multiplier; constructor(string memory _name, string memory _symbol, uint8 _decimals) ERC20(_name, _symbol, _decimals) { multiplier = 10 ** _decimals; } /// @notice Drips some tokens to the caller. Input the amount /// you want and the contract will handle scaling using the token's /// decimals internally, no need to convert manually before calling. /// @param _amount The amount of tests tokens you want. The contract handles /// scaling internally, so type the exact amount you want without /// manual scaling. function drip(uint256 _amount) external { _mint(msg.sender, _amount * multiplier); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER"); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
{ "remappings": [ "forge-std/=lib/forge-std/src/", "solmate/=lib/solmate/src/", "ds-test/=lib/solmate/lib/ds-test/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"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":"amount","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","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":"uint256","name":"_amount","type":"uint256"}],"name":"drip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","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"}]
Contract Creation Code
6101006040523480156200001257600080fd5b5060405162001145380380620011458339810160408190526200003591620001ee565b828282600062000046848262000302565b50600162000055838262000302565b5060ff81166080524660a0526200006b6200008d565b60c05250620000809150829050600a620004e3565b60e0525062000579915050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620000c19190620004fb565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200015157600080fd5b81516001600160401b03808211156200016e576200016e62000129565b604051601f8301601f19908116603f0116810190828211818310171562000199576200019962000129565b81604052838152602092508683858801011115620001b657600080fd5b600091505b83821015620001da5785820183015181830184015290820190620001bb565b600093810190920192909252949350505050565b6000806000606084860312156200020457600080fd5b83516001600160401b03808211156200021c57600080fd5b6200022a878388016200013f565b945060208601519150808211156200024157600080fd5b5062000250868287016200013f565b925050604084015160ff811681146200026857600080fd5b809150509250925092565b600181811c908216806200028857607f821691505b602082108103620002a957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002fd57600081815260208120601f850160051c81016020861015620002d85750805b601f850160051c820191505b81811015620002f957828155600101620002e4565b5050505b505050565b81516001600160401b038111156200031e576200031e62000129565b62000336816200032f845462000273565b84620002af565b602080601f8311600181146200036e5760008415620003555750858301515b600019600386901b1c1916600185901b178555620002f9565b600085815260208120601f198616915b828110156200039f578886015182559484019460019091019084016200037e565b5085821015620003be5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000425578160001904821115620004095762000409620003ce565b808516156200041757918102915b93841c9390800290620003e9565b509250929050565b6000826200043e57506001620004dd565b816200044d57506000620004dd565b8160018114620004665760028114620004715762000491565b6001915050620004dd565b60ff841115620004855762000485620003ce565b50506001821b620004dd565b5060208310610133831016604e8410600b8410161715620004b6575081810a620004dd565b620004c28383620003e4565b8060001904821115620004d957620004d9620003ce565b0290505b92915050565b6000620004f460ff8416836200042d565b9392505050565b60008083546200050b8162000273565b600182811680156200052657600181146200053c576200056d565b60ff19841687528215158302870194506200056d565b8760005260208060002060005b85811015620005645781548a82015290840190820162000549565b50505082870194505b50929695505050505050565b60805160a05160c05160e051610b92620005b3600039600061047f015260006104540152600061041f015260006101440152610b926000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806358326b7a1161008c57806395d89b411161006657806395d89b41146101d5578063a9059cbb146101dd578063d505accf146101f0578063dd62ed3e1461020357600080fd5b806358326b7a1461018057806370a08231146101955780637ecebe00146101b557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f5780633644e51514610178575b600080fd5b6100dc61022e565b6040516100e9919061087f565b60405180910390f35b6101056101003660046108e9565b6102bc565b60405190151581526020016100e9565b61011e60025481565b6040519081526020016100e9565b61010561013a366004610913565b610329565b6101667f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016100e9565b61011e61041b565b61019361018e36600461094f565b610476565b005b61011e6101a3366004610968565b60036020526000908152604090205481565b61011e6101c3366004610968565b60056020526000908152604090205481565b6100dc6104ac565b6101056101eb3660046108e9565b6104b9565b6101936101fe36600461098a565b610531565b61011e6102113660046109fd565b600460209081526000928352604080842090915290825290205481565b6000805461023b90610a30565b80601f016020809104026020016040519081016040528092919081815260200182805461026790610a30565b80156102b45780601f10610289576101008083540402835291602001916102b4565b820191906000526020600020905b81548152906001019060200180831161029757829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103179086815260200190565b60405180910390a35060015b92915050565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610385576103608382610a80565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b038516600090815260036020526040812080548592906103ad908490610a80565b90915550506001600160a01b03808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104089087815260200190565b60405180910390a3506001949350505050565b60007f000000000000000000000000000000000000000000000000000000000000000046146104515761044c61077a565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6104a9336104a47f000000000000000000000000000000000000000000000000000000000000000084610a93565b610814565b50565b6001805461023b90610a30565b336000908152600360205260408120805483919083906104da908490610a80565b90915550506001600160a01b038316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103179086815260200190565b428410156105865760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b6000600161059261041b565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa15801561069e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906106d45750876001600160a01b0316816001600160a01b0316145b6107115760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b604482015260640161057d565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516107ac9190610aaa565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b80600260008282546108269190610b49565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b818110156108ac57858101830151858201604001528201610890565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108e457600080fd5b919050565b600080604083850312156108fc57600080fd5b610905836108cd565b946020939093013593505050565b60008060006060848603121561092857600080fd5b610931846108cd565b925061093f602085016108cd565b9150604084013590509250925092565b60006020828403121561096157600080fd5b5035919050565b60006020828403121561097a57600080fd5b610983826108cd565b9392505050565b600080600080600080600060e0888a0312156109a557600080fd5b6109ae886108cd565b96506109bc602089016108cd565b95506040880135945060608801359350608088013560ff811681146109e057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610a1057600080fd5b610a19836108cd565b9150610a27602084016108cd565b90509250929050565b600181811c90821680610a4457607f821691505b602082108103610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032357610323610a6a565b808202811582820484141761032357610323610a6a565b600080835481600182811c915080831680610ac657607f831692505b60208084108203610ae557634e487b7160e01b86526022600452602486fd5b818015610af95760018114610b0e57610b3b565b60ff1986168952841515850289019650610b3b565b60008a81526020902060005b86811015610b335781548b820152908501908301610b1a565b505084890196505b509498975050505050505050565b8082018082111561032357610323610a6a56fea2646970667358221220f71c4764a4184542bc074cca0c75eb4833926302d90656c76d9d6d4ebcecd9bf64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009546573742055534443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057455534443000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806358326b7a1161008c57806395d89b411161006657806395d89b41146101d5578063a9059cbb146101dd578063d505accf146101f0578063dd62ed3e1461020357600080fd5b806358326b7a1461018057806370a08231146101955780637ecebe00146101b557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f5780633644e51514610178575b600080fd5b6100dc61022e565b6040516100e9919061087f565b60405180910390f35b6101056101003660046108e9565b6102bc565b60405190151581526020016100e9565b61011e60025481565b6040519081526020016100e9565b61010561013a366004610913565b610329565b6101667f000000000000000000000000000000000000000000000000000000000000000681565b60405160ff90911681526020016100e9565b61011e61041b565b61019361018e36600461094f565b610476565b005b61011e6101a3366004610968565b60036020526000908152604090205481565b61011e6101c3366004610968565b60056020526000908152604090205481565b6100dc6104ac565b6101056101eb3660046108e9565b6104b9565b6101936101fe36600461098a565b610531565b61011e6102113660046109fd565b600460209081526000928352604080842090915290825290205481565b6000805461023b90610a30565b80601f016020809104026020016040519081016040528092919081815260200182805461026790610a30565b80156102b45780601f10610289576101008083540402835291602001916102b4565b820191906000526020600020905b81548152906001019060200180831161029757829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103179086815260200190565b60405180910390a35060015b92915050565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610385576103608382610a80565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b038516600090815260036020526040812080548592906103ad908490610a80565b90915550506001600160a01b03808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104089087815260200190565b60405180910390a3506001949350505050565b60007f000000000000000000000000000000000000000000000000000000000000426846146104515761044c61077a565b905090565b507f98ac66577f1fc9d7b9bef9e24e3486ff0a48dd372dedd7121502504e7bad6bf490565b6104a9336104a47f00000000000000000000000000000000000000000000000000000000000f424084610a93565b610814565b50565b6001805461023b90610a30565b336000908152600360205260408120805483919083906104da908490610a80565b90915550506001600160a01b038316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103179086815260200190565b428410156105865760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b6000600161059261041b565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa15801561069e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906106d45750876001600160a01b0316816001600160a01b0316145b6107115760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b604482015260640161057d565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516107ac9190610aaa565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b80600260008282546108269190610b49565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b818110156108ac57858101830151858201604001528201610890565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108e457600080fd5b919050565b600080604083850312156108fc57600080fd5b610905836108cd565b946020939093013593505050565b60008060006060848603121561092857600080fd5b610931846108cd565b925061093f602085016108cd565b9150604084013590509250925092565b60006020828403121561096157600080fd5b5035919050565b60006020828403121561097a57600080fd5b610983826108cd565b9392505050565b600080600080600080600060e0888a0312156109a557600080fd5b6109ae886108cd565b96506109bc602089016108cd565b95506040880135945060608801359350608088013560ff811681146109e057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610a1057600080fd5b610a19836108cd565b9150610a27602084016108cd565b90509250929050565b600181811c90821680610a4457607f821691505b602082108103610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032357610323610a6a565b808202811582820484141761032357610323610a6a565b600080835481600182811c915080831680610ac657607f831692505b60208084108203610ae557634e487b7160e01b86526022600452602486fd5b818015610af95760018114610b0e57610b3b565b60ff1986168952841515850289019650610b3b565b60008a81526020902060005b86811015610b335781548b820152908501908301610b1a565b505084890196505b509498975050505050505050565b8082018082111561032357610323610a6a56fea2646970667358221220f71c4764a4184542bc074cca0c75eb4833926302d90656c76d9d6d4ebcecd9bf64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000009546573742055534443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057455534443000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Test USDC
Arg [1] : _symbol (string): tUSDC
Arg [2] : _decimals (uint8): 6
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5465737420555344430000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 7455534443000000000000000000000000000000000000000000000000000000
Loading...
Loading
[ 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.