Source Code
Overview
ETH Balance
0 ETH
Token Holdings
More Info
ContractCreator
Multichain Info
N/A
Latest 25 from a total of 21,098 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Update Rewards | 3043161 | 44 days ago | IN | 0 ETH | 0.00000011 | ||||
Update Rewards | 3042609 | 44 days ago | IN | 0 ETH | 0.00006861 | ||||
Update Rewards | 3042329 | 44 days ago | IN | 0 ETH | 0.00007327 | ||||
Update Rewards | 3042040 | 44 days ago | IN | 0 ETH | 0.00006826 | ||||
Update Rewards | 3041748 | 44 days ago | IN | 0 ETH | 0.0000558 | ||||
Update Rewards | 3041196 | 44 days ago | IN | 0 ETH | 0.00006487 | ||||
Update Rewards | 3040906 | 44 days ago | IN | 0 ETH | 0.00006143 | ||||
Update Rewards | 3040620 | 44 days ago | IN | 0 ETH | 0.00007807 | ||||
Update Rewards | 3040057 | 44 days ago | IN | 0 ETH | 0.0000834 | ||||
Update Rewards | 3039780 | 44 days ago | IN | 0 ETH | 0.00008544 | ||||
Update Rewards | 3039502 | 44 days ago | IN | 0 ETH | 0.00009651 | ||||
Update Rewards | 3039221 | 44 days ago | IN | 0 ETH | 0.00010533 | ||||
Update Rewards | 3038935 | 44 days ago | IN | 0 ETH | 0.00011898 | ||||
Update Rewards | 3038371 | 44 days ago | IN | 0 ETH | 0.00011208 | ||||
Update Rewards | 3038083 | 44 days ago | IN | 0 ETH | 0.00011208 | ||||
Update Rewards | 3037800 | 44 days ago | IN | 0 ETH | 0.00010063 | ||||
Update Rewards | 3037519 | 44 days ago | IN | 0 ETH | 0.00011898 | ||||
Update Rewards | 3037238 | 44 days ago | IN | 0 ETH | 0.00011898 | ||||
Update Rewards | 3036671 | 45 days ago | IN | 0 ETH | 0.00006704 | ||||
Update Rewards | 3036390 | 45 days ago | IN | 0 ETH | 0.00010164 | ||||
Update Rewards | 3036109 | 45 days ago | IN | 0 ETH | 0.00010063 | ||||
Update Rewards | 3035549 | 45 days ago | IN | 0 ETH | 0.00010858 | ||||
Update Rewards | 3035263 | 45 days ago | IN | 0 ETH | 0.00006302 | ||||
Update Rewards | 3034693 | 45 days ago | IN | 0 ETH | 0.00007887 | ||||
Update Rewards | 3034406 | 45 days ago | IN | 0 ETH | 0.00010858 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
3029403 | 46 days ago | 1 ETH | ||||
3029179 | 46 days ago | 0.00009144 ETH | ||||
3029121 | 46 days ago | 1 ETH | ||||
3028966 | 46 days ago | 0.00009135 ETH | ||||
3027156 | 46 days ago | 0.51 ETH | ||||
3027080 | 46 days ago | 0.0001074 ETH | ||||
3027079 | 46 days ago | 0.00594058 ETH | ||||
3027074 | 46 days ago | 0.00594058 ETH | ||||
3027069 | 46 days ago | 0.00594058 ETH | ||||
3004086 | 49 days ago | 0.5 ETH | ||||
3003859 | 49 days ago | 0.00006183 ETH | ||||
2979721 | 53 days ago | 30 ETH | ||||
2979592 | 53 days ago | 0.00006217 ETH | ||||
2973253 | 54 days ago | 0.09 ETH | ||||
2973097 | 54 days ago | 0.00006192 ETH | ||||
2973092 | 54 days ago | 0.00006192 ETH | ||||
2973068 | 54 days ago | 0.02495397 ETH | ||||
2969875 | 54 days ago | 66 ETH | ||||
2969753 | 54 days ago | 0.00006174 ETH | ||||
2967910 | 55 days ago | 0.5 ETH | ||||
2967712 | 55 days ago | 0.00005584 ETH | ||||
2953156 | 57 days ago | 0.2 ETH | ||||
2952899 | 57 days ago | 0.05268558 ETH | ||||
2952887 | 57 days ago | 0.05268558 ETH | ||||
2952877 | 57 days ago | 486.813902 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x174D7a30...a45ABC437 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Proxy
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.24; /** * @title Proxy Contract * @author RohitAudit * @dev This is the UUPS proxy contract on which the transactions are sent */ contract Proxy{ // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7" bytes32 internal constant IMPLEMENTATION_SLOT = 0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7; error ConstructorFailed(); constructor(bytes memory constructData, address contractLogic) { // save the code address setImplementation(contractLogic); (bool success, ) = contractLogic.delegatecall(constructData); // solium-disable-line if (!success) revert ConstructorFailed(); } function setImplementation(address implementation) internal { assembly { sstore(IMPLEMENTATION_SLOT, implementation) } } function getImplementation() external view returns (address) { address impl; assembly { impl := sload(IMPLEMENTATION_SLOT) } return impl; } receive() external payable { _proxy_call(); } fallback() external payable { _proxy_call(); } function _proxy_call() internal { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall( gas(), sload(IMPLEMENTATION_SLOT), 0x0, calldatasize(), 0, 0 ) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"bytes","name":"constructData","type":"bytes"},{"internalType":"address","name":"contractLogic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ConstructorFailed","type":"error"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x608060405260043610601f5760003560e01c8063aaf10f4214603157602b565b36602b576029607b565b005b6029607b565b348015603c57600080fd5b507fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7546040516001600160a01b03909116815260200160405180910390f35b36600080376000803660007fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7545af43d6000803e80801560ba573d6000f35b3d6000fdfea264697066735822122083c684828a67ff18ff8860d7bdeaf914a03dbc8e724f01daf9c122964c7a84ce64736f6c63430008180033
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.