ETH Price: $2,662.77 (+2.14%)

Contract

0x6Db24Ee656843E3fE03eb8762a54D86186bA6B64
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
Age
From
To
0x7249227a93d53baecfcc7f44b96e5471b3040d77fbd5bd016bf5e4bd1d1c9083 Claim(pending)2025-02-10 2:08:263 days ago1739153306IN
ether.fi: LRT2 Claim
0 ETH(Pending)(Pending)
0xe0cb62e8ee62651bf4c3f1fad17cce4e0e49127b45f9ebdb46eb13c09149da6e Claim(pending)2025-02-10 2:07:283 days ago1739153248IN
ether.fi: LRT2 Claim
0 ETH(Pending)(Pending)
Claim218383082025-02-13 14:59:1124 mins ago1739458751IN
ether.fi: LRT2 Claim
0 ETH0.000416354.60994944
Claim218381252025-02-13 14:21:591 hr ago1739456519IN
ether.fi: LRT2 Claim
0 ETH0.000342913.79429723
Claim218380372025-02-13 14:04:231 hr ago1739455463IN
ether.fi: LRT2 Claim
0 ETH0.000183871.71192118
Claim218380172025-02-13 14:00:231 hr ago1739455223IN
ether.fi: LRT2 Claim
0 ETH0.000216152.0130919
Claim218379602025-02-13 13:48:591 hr ago1739454539IN
ether.fi: LRT2 Claim
0 ETH0.000085011.16152253
Claim218379582025-02-13 13:48:351 hr ago1739454515IN
ether.fi: LRT2 Claim
0 ETH0.000092311.26092817
Claim218379582025-02-13 13:48:351 hr ago1739454515IN
ether.fi: LRT2 Claim
0 ETH0.000198121.84417936
Claim218378702025-02-13 13:30:591 hr ago1739453459IN
ether.fi: LRT2 Claim
0 ETH0.000107280.99879467
Claim218378592025-02-13 13:28:471 hr ago1739453327IN
ether.fi: LRT2 Claim
0 ETH0.000207722.3
Claim218378462025-02-13 13:25:591 hr ago1739453159IN
ether.fi: LRT2 Claim
0 ETH0.000095230.88617483
Claim218378392025-02-13 13:24:351 hr ago1739453075IN
ether.fi: LRT2 Claim
0 ETH0.000198822.2
Claim218377852025-02-13 13:13:472 hrs ago1739452427IN
ether.fi: LRT2 Claim
0 ETH0.0001551.44373384
Claim218377152025-02-13 12:59:352 hrs ago1739451575IN
ether.fi: LRT2 Claim
0 ETH0.000046720.97919277
Claim218377142025-02-13 12:59:232 hrs ago1739451563IN
ether.fi: LRT2 Claim
0 ETH0.000168531.56797764
Claim218377102025-02-13 12:58:352 hrs ago1739451515IN
ether.fi: LRT2 Claim
0 ETH0.000090581.00302863
Claim218376912025-02-13 12:54:472 hrs ago1739451287IN
ether.fi: LRT2 Claim
0 ETH0.000096440.89775171
Claim218376792025-02-13 12:52:232 hrs ago1739451143IN
ether.fi: LRT2 Claim
0 ETH0.000096690.9
Claim218376092025-02-13 12:38:112 hrs ago1739450291IN
ether.fi: LRT2 Claim
0 ETH0.000093350.86868825
Claim218375702025-02-13 12:30:232 hrs ago1739449823IN
ether.fi: LRT2 Claim
0 ETH0.000097730.90953105
Claim218375702025-02-13 12:30:232 hrs ago1739449823IN
ether.fi: LRT2 Claim
0 ETH0.000145741.35692729
Claim218375462025-02-13 12:25:352 hrs ago1739449535IN
ether.fi: LRT2 Claim
0 ETH0.000152911.42452841
Claim218375452025-02-13 12:25:232 hrs ago1739449523IN
ether.fi: LRT2 Claim
0 ETH0.000142021.32182652
Claim218375422025-02-13 12:24:472 hrs ago1739449487IN
ether.fi: LRT2 Claim
0 ETH0.000148651.38431304
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UUPSProxy

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 1000 runs

Other Settings:
cancun EvmVersion
File 1 of 9 : UUPSProxy.sol
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
contract UUPSProxy is ERC1967Proxy {
constructor(
address _implementation,
bytes memory _data
) ERC1967Proxy(_implementation, _data) {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 9 : ERC1967Proxy.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Proxy.sol)
pragma solidity ^0.8.20;
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "./ERC1967Utils.sol";
/**
* @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
* implementation address that can be changed. This address is stored in storage in the location specified by
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the
* implementation behind the proxy.
*/
contract ERC1967Proxy is Proxy {
/**
* @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.
*
* If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an
* encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.
*
* Requirements:
*
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address implementation, bytes memory _data) payable {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 9 : Proxy.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)
pragma solidity ^0.8.20;
/**
* @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
* be specified by overriding the virtual {_implementation} function.
*
* Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
* different contract through the {_delegate} function.
*
* The success and return data of the delegated call will be returned back to the caller of the proxy.
*/
abstract contract Proxy {
/**
* @dev Delegates the current call to `implementation`.
*
* This function does not return to its internal call site, it will return directly to the external caller.
*/
function _delegate(address implementation) internal virtual {
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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 9 : ERC1967Utils.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)
pragma solidity ^0.8.21;
import {IBeacon} from "../beacon/IBeacon.sol";
import {IERC1967} from "../../interfaces/IERC1967.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";
/**
* @dev This library provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.
*/
library ERC1967Utils {
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev The `implementation` of the proxy is invalid.
*/
error ERC1967InvalidImplementation(address implementation);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 9 : IBeacon.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.20;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeacon {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {UpgradeableBeacon} will check that this address is a contract.
*/
function implementation() external view returns (address);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 9 : IERC1967.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)
pragma solidity ^0.8.20;
/**
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
*/
interface IERC1967 {
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 9 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
import {Errors} from "./Errors.sol";
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 9 : StorageSlot.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC-1967 implementation slot:
* ```solidity
* contract ERC1967 {
* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 9 : Errors.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @dev Collection of common custom errors used in multiple contracts
*
* IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
* It is recommended to avoid relying on the error API for critical functionality.
*
* _Available since v5.1._
*/
library Errors {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error InsufficientBalance(uint256 balance, uint256 needed);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedCall();
/**
* @dev The deployment failed.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"@openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 1000
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]

60806040523461015b576102a4803803806100198161015f565b92833981019060408183031261015b5780516001600160a01b03811680820361015b5760208381015190936001600160401b03821161015b57019084601f8301121561015b57815161007261006d82610198565b61015f565b928184528584019686838301011161015b57815f9287809301895e84010152823b15610143577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b5f80a251801561013a575f809161012195845af4903d15610131573d61011261006d82610198565b9081525f81943d92013e6101b3565b505b604051608d90816102178239f35b606092506101b3565b50505050610123565b60249060405190634c9c8ce360e01b82526004820152fd5b5f80fd5b6040519190601f01601f191682016001600160401b0381118382101761018457604052565b634e487b7160e01b5f52604160045260245ffd5b6001600160401b03811161018457601f01601f191660200190565b906101da57508051156101c857805190602001fd5b60405163d6bda27560e01b8152600490fd5b8151158061020d575b6101eb575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156101e356fe60806040525f8073ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5416368280378136915af43d5f803e156053573d5ff35b3d5ffdfea26469706673582212200a3848e46e5d3a06889922781bb8e784187525584faf3096382c2201ad97b5dd64736f6c6343000819003300000000000000000000000026542fbe5f320f25747e80831acdd1f27cdd0c650000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006454d1bd930000000000000000000000000000000000000000000000000000000000000078000000000000000000000000f8a86ea1ac39ec529814c377bd484387d395421e000000000000000000000000f8a86ea1ac39ec529814c377bd484387d395421e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040525f8073ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5416368280378136915af43d5f803e156053573d5ff35b3d5ffdfea26469706673582212200a3848e46e5d3a06889922781bb8e784187525584faf3096382c2201ad97b5dd64736f6c63430008190033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000026542fbe5f320f25747e80831acdd1f27cdd0c650000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006454d1bd930000000000000000000000000000000000000000000000000000000000000078000000000000000000000000f8a86ea1ac39ec529814c377bd484387d395421e000000000000000000000000f8a86ea1ac39ec529814c377bd484387d395421e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _implementation (address): 0x26542fbE5f320f25747e80831ACdD1f27CDd0c65
Arg [1] : _data (bytes): 0x54d1bd930000000000000000000000000000000000000000000000000000000000000078000000000000000000000000f8a86ea1ac39ec529814c377bd484387d395421e000000000000000000000000f8a86ea1ac39ec529814c377bd484387d395421e

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000026542fbe5f320f25747e80831acdd1f27cdd0c65
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 54d1bd9300000000000000000000000000000000000000000000000000000000
Arg [4] : 00000078000000000000000000000000f8a86ea1ac39ec529814c377bd484387
Arg [5] : d395421e000000000000000000000000f8a86ea1ac39ec529814c377bd484387
Arg [6] : d395421e00000000000000000000000000000000000000000000000000000000


Block Age Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Age Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Age Amount
View All Withdrawals

Transaction Hash Block Age Value Eth2 PubKey Valid
View All Deposits
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.