Note: Our ETH balance display is temporarily unavailable. Please check back later.
Overview
ETH Balance
The ETH balance display is temporarily unavailable. Please check back later.
ETH Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 40,117 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit To | 125214755 | 3 hrs ago | IN | 0.002 ETH | 0.000000109641 | ||||
Deposit To | 125138516 | 46 hrs ago | IN | 0.002 ETH | 0.000000091336 | ||||
Deposit To | 125116238 | 2 days ago | IN | 0.002 ETH | 0.000000094888 | ||||
Deposit To | 125044051 | 4 days ago | IN | 0.002 ETH | 0.000000049246 | ||||
Deposit To | 125018674 | 4 days ago | IN | 0.002 ETH | 0.00000568814 | ||||
Deposit To | 125016831 | 4 days ago | IN | 0.005 ETH | 0.00000144863 | ||||
Deposit To | 125001784 | 5 days ago | IN | 0.002 ETH | 0.000000046513 | ||||
Deposit To | 124942775 | 6 days ago | IN | 0.001 ETH | 0.000000140036 | ||||
Deposit To | 124933917 | 6 days ago | IN | 0.002 ETH | 0.000002005661 | ||||
Deposit To | 124763734 | 10 days ago | IN | 0.002 ETH | 0.000000061526 | ||||
Deposit To | 124760058 | 10 days ago | IN | 0.002 ETH | 0.000000017164 | ||||
Deposit To | 124671291 | 12 days ago | IN | 0.002 ETH | 0.000000120362 | ||||
Deposit To | 124614517 | 14 days ago | IN | 0.002 ETH | 0.000000059367 | ||||
Deposit To | 124500632 | 16 days ago | IN | 0.002 ETH | 0.000000073984 | ||||
Deposit To | 124488768 | 16 days ago | IN | 0.002 ETH | 0.00000005654 | ||||
Deposit To | 124482574 | 17 days ago | IN | 0.002 ETH | 0.000000015318 | ||||
Deposit To | 124464770 | 17 days ago | IN | 0.002 ETH | 0.000000032055 | ||||
Deposit To | 124461829 | 17 days ago | IN | 0.002 ETH | 0.000000203666 | ||||
Deposit To | 124434116 | 18 days ago | IN | 0.002 ETH | 0.000000021385 | ||||
Deposit To | 124242063 | 22 days ago | IN | 0.002 ETH | 0.000000270325 | ||||
Deposit To | 124030727 | 27 days ago | IN | 0.002 ETH | 0.000000085112 | ||||
Deposit To | 123987922 | 28 days ago | IN | 0.002 ETH | 0.000000166593 | ||||
Deposit To | 123722315 | 34 days ago | IN | 0.001 ETH | 0.000000348261 | ||||
Deposit To | 123710528 | 34 days ago | IN | 0.002 ETH | 0.000000076933 | ||||
Deposit To | 123598045 | 37 days ago | IN | 0.002 ETH | 0.000001889814 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
117380662 | 181 days ago | 0.002497818532819 ETH | ||||
117376822 | 181 days ago | 0.00251010316524 ETH | ||||
117368287 | 181 days ago | 0.001244692694415 ETH | ||||
117367927 | 181 days ago | 0.001242677522697 ETH | ||||
117365828 | 181 days ago | 0.001233321333588 ETH | ||||
117339688 | 182 days ago | 0.001268890215323 ETH | ||||
117338698 | 182 days ago | 0.001263047663111 ETH | ||||
117337456 | 182 days ago | 0.00125593986523 ETH | ||||
117335055 | 182 days ago | 0.00126266754181 ETH | ||||
117332627 | 182 days ago | 0.002582718000769 ETH | ||||
117332602 | 182 days ago | 0.001288723222715 ETH | ||||
117330849 | 182 days ago | 0.001268002103913 ETH | ||||
117322801 | 182 days ago | 0.012419069692358 ETH | ||||
117308165 | 183 days ago | 0.002471853224778 ETH | ||||
117302975 | 183 days ago | 0.001227366468425 ETH | ||||
117301943 | 183 days ago | 0.00244669243113 ETH | ||||
117301467 | 183 days ago | 0.001227841693486 ETH | ||||
117301286 | 183 days ago | 0.002455807739723 ETH | ||||
117301268 | 183 days ago | 0.001227903869861 ETH | ||||
117301102 | 183 days ago | 0.001227903869861 ETH | ||||
117301093 | 183 days ago | 0.002455807739723 ETH | ||||
117301054 | 183 days ago | 0.002455807739723 ETH | ||||
117301036 | 183 days ago | 0.001227903869861 ETH | ||||
117300990 | 183 days ago | 0.00122654445089 ETH | ||||
117300987 | 183 days ago | 0.00122654445089 ETH |
Loading...
Loading
Contract Name:
TokenReceiver
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.14; import { Owned } from "solmate/src/auth/Owned.sol"; /** * @title TokenReceiver * @author CyberConnect * @notice A contract that receive native token and record the amount. * The deposit only record the cumulative amount and withdraw won't affect * the deposit value. */ contract TokenReceiver is Owned { /*////////////////////////////////////////////////////////////// STATES //////////////////////////////////////////////////////////////*/ mapping(address => uint256) public deposits; /*////////////////////////////////////////////////////////////// EVENT //////////////////////////////////////////////////////////////*/ event Deposit(address from, address to, uint256 amount); event Withdraw(address to, uint256 amount); /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address owner) Owned(owner) {} /*////////////////////////////////////////////////////////////// EXTERNAL //////////////////////////////////////////////////////////////*/ function depositTo(address to) external payable { deposits[to] += msg.value; emit Deposit(msg.sender, to, msg.value); } function withdraw(address to, uint256 amount) external onlyOwner { payable(to).transfer(amount); emit Withdraw(to, amount); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Simple single owner authorization mixin. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol) abstract contract Owned { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event OwnershipTransferred(address indexed user, address indexed newOwner); /*////////////////////////////////////////////////////////////// OWNERSHIP STORAGE //////////////////////////////////////////////////////////////*/ address public owner; modifier onlyOwner() virtual { require(msg.sender == owner, "UNAUTHORIZED"); _; } /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address _owner) { owner = _owner; emit OwnershipTransferred(address(0), _owner); } /*////////////////////////////////////////////////////////////// OWNERSHIP LOGIC //////////////////////////////////////////////////////////////*/ function transferOwnership(address newOwner) public virtual onlyOwner { owner = newOwner; emit OwnershipTransferred(msg.sender, newOwner); } }
{ "remappings": [ "@openzeppelin/=lib/kernel/lib/openzeppelin-contracts/", "account-abstraction/=lib/account-abstraction/contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "kernel/=lib/kernel/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solady/=lib/kernel/lib/solady/", "solmate/=lib/solmate/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161047338038061047383398101604081905261002f9161007e565b600080546001600160a01b0319166001600160a01b03831690811782556040518392907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350506100ae565b60006020828403121561009057600080fd5b81516001600160a01b03811681146100a757600080fd5b9392505050565b6103b6806100bd6000396000f3fe60806040526004361061004a5760003560e01c80638da5cb5b1461004f578063b760faf91461008c578063f2fde38b146100a1578063f3fef3a3146100c1578063fc7e286d146100e1575b600080fd5b34801561005b57600080fd5b5060005461006f906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61009f61009a36600461030e565b61011c565b005b3480156100ad57600080fd5b5061009f6100bc36600461030e565b610193565b3480156100cd57600080fd5b5061009f6100dc366004610330565b61022c565b3480156100ed57600080fd5b5061010e6100fc36600461030e565b60016020526000908152604090205481565b604051908152602001610083565b6001600160a01b0381166000908152600160205260408120805434929061014490849061035a565b9091555050604080513381526001600160a01b0383166020820152348183015290517f5548c837ab068cf56a2c2479df0882a4922fd203edb7517321831d95078c5f629181900360600190a150565b6000546001600160a01b031633146101e15760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6000546001600160a01b031633146102755760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064016101d8565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156102ab573d6000803e3d6000fd5b50604080516001600160a01b0384168152602081018390527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364910160405180910390a15050565b80356001600160a01b038116811461030957600080fd5b919050565b60006020828403121561032057600080fd5b610329826102f2565b9392505050565b6000806040838503121561034357600080fd5b61034c836102f2565b946020939093013593505050565b6000821982111561037b57634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122086b8f781cafea27501f18896fa9b56c41d5a15806e818834b53faadeb91d93ae64736f6c634300080e00330000000000000000000000007884f7f04f994da14302a16cf15e597e31eebecf
Deployed Bytecode
0x60806040526004361061004a5760003560e01c80638da5cb5b1461004f578063b760faf91461008c578063f2fde38b146100a1578063f3fef3a3146100c1578063fc7e286d146100e1575b600080fd5b34801561005b57600080fd5b5060005461006f906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61009f61009a36600461030e565b61011c565b005b3480156100ad57600080fd5b5061009f6100bc36600461030e565b610193565b3480156100cd57600080fd5b5061009f6100dc366004610330565b61022c565b3480156100ed57600080fd5b5061010e6100fc36600461030e565b60016020526000908152604090205481565b604051908152602001610083565b6001600160a01b0381166000908152600160205260408120805434929061014490849061035a565b9091555050604080513381526001600160a01b0383166020820152348183015290517f5548c837ab068cf56a2c2479df0882a4922fd203edb7517321831d95078c5f629181900360600190a150565b6000546001600160a01b031633146101e15760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6000546001600160a01b031633146102755760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064016101d8565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156102ab573d6000803e3d6000fd5b50604080516001600160a01b0384168152602081018390527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364910160405180910390a15050565b80356001600160a01b038116811461030957600080fd5b919050565b60006020828403121561032057600080fd5b610329826102f2565b9392505050565b6000806040838503121561034357600080fd5b61034c836102f2565b946020939093013593505050565b6000821982111561037b57634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122086b8f781cafea27501f18896fa9b56c41d5a15806e818834b53faadeb91d93ae64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007884f7f04f994da14302a16cf15e597e31eebecf
-----Decoded View---------------
Arg [0] : owner (address): 0x7884f7F04F994da14302a16Cf15E597e31eebECf
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007884f7f04f994da14302a16cf15e597e31eebecf
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 44.78% | $512.92 | 413.2851 | $211,982.06 | |
OP | Ether (ETH) | 44.14% | $2,334.94 | 89.4929 | $208,960.43 |
ETH | 3.99% | $2,334.19 | 8.0943 | $18,893.64 | |
ARB | 2.73% | $2,334.19 | 5.5464 | $12,946.35 | |
BASE | 2.51% | $2,335.52 | 5.0847 | $11,875.37 | |
BASE | <0.01% | $1.27 | 0.1 | $0.1268 | |
OPBNB | 0.93% | $512.92 | 8.5405 | $4,380.57 | |
LINEA | 0.40% | $2,334.19 | 0.81 | $1,890.76 | |
SCROLL | 0.29% | $2,334.19 | 0.5961 | $1,391.38 | |
POL | 0.14% | $0.373479 | 1,724.566 | $644.09 | |
BLAST | 0.07% | $2,335.27 | 0.1379 | $322.01 | |
MANTLE | 0.03% | $0.559503 | 212.1 | $118.67 | |
ZKSYNC | <0.01% | $2,336.52 | 0.006 | $14.02 |
[ 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.