ETH Price: $1,859.14 (-2.40%)
Gas: 74 Gwei
 

Overview

ETH Balance

4.263104511941020736 ETH

Eth Value

$7,925.71 (@ $1,859.14/ETH)

Sponsored

Transaction Hash
Method
Block
From
To
Value
Cash172834342023-05-18 2:20:3513 days 13 hrs ago1684376435IN
0x9375FB...0978a213
0 ETH0.0018082542.1171615
Cash168690122023-03-20 12:54:1172 days 3 hrs ago1679316851IN
0x9375FB...0978a213
0 ETH0.0008528319.86396896
Cash168689722023-03-20 12:46:1172 days 3 hrs ago1679316371IN
0x9375FB...0978a213
0 ETH0.0009451922.01518189
Cash162259922022-12-20 12:45:23162 days 3 hrs ago1671540323IN
0x9375FB...0978a213
0 ETH0.0005381112.53361194
Transfer158521992022-10-29 7:22:59214 days 8 hrs ago1667028179IN
0x9375FB...0978a213
0 ETH0.000492639.50289325
Cash154859892022-09-06 19:43:48266 days 20 hrs ago1662493428IN
0x9375FB...0978a213
0 ETH0.0010111423.55116541
End154859862022-09-06 19:42:32266 days 20 hrs ago1662493352IN
0x9375FB...0978a213
0 ETH0.0031234221.89815122
Approve154650712022-09-03 11:16:14270 days 4 hrs ago1662203774IN
0x9375FB...0978a213
0 ETH0.000196174
Start154379052022-08-30 3:01:14274 days 13 hrs ago1661828474IN
0x9375FB...0978a213
24.97770745 ETH0.0019584718.4077309
Update User Pric...154379022022-08-30 3:00:26274 days 13 hrs ago1661828426IN
0x9375FB...0978a213
0 ETH0.0008467316.27797187
Approve138357902021-12-19 13:11:13528 days 2 hrs ago1639919473IN
0x9375FB...0978a213
0 ETH0.0016318533.27324686
Update User Pric...135441352021-11-03 13:32:28574 days 2 hrs ago1635946348IN
0x9375FB...0978a213
0 ETH0.01360027189.34760071
Transfer135081032021-10-28 21:29:05579 days 18 hrs ago1635456545IN
0x9375FB...0978a213
0 ETH0.013712243.9901403
Transfer135078942021-10-28 20:37:05579 days 19 hrs ago1635453425IN
0x9375FB...0978a213
0 ETH0.01247069221.90251157
Transfer135075282021-10-28 19:14:58579 days 20 hrs ago1635448498IN
0x9375FB...0978a213
0 ETH0.00929899165.46553274
Transfer135060322021-10-28 13:33:37580 days 2 hrs ago1635428017IN
0x9375FB...0978a213
0 ETH0.00815439145.09860118
Approve134101042021-10-13 12:54:33595 days 3 hrs ago1634129673IN
0x9375FB...0978a213
0 ETH0.0035945472.7404276
Transfer133929852021-10-10 20:16:57597 days 19 hrs ago1633897017IN
0x9375FB...0978a213
0 ETH0.0069165897
Approve133925032021-10-10 18:24:22597 days 21 hrs ago1633890262IN
0x9375FB...0978a213
0 ETH0.00543576110

Latest 6 internal transactions

Advanced mode:
Parent Txn Hash Block From To Value
172834342023-05-18 2:20:3513 days 13 hrs ago1684376435
0x9375FB...0978a213
2.49777074 ETH
168690122023-03-20 12:54:1172 days 3 hrs ago1679316851
0x9375FB...0978a213
0.00284774 ETH
168689722023-03-20 12:46:1172 days 3 hrs ago1679316371
0x9375FB...0978a213
0.00056934 ETH
162259922022-12-20 12:45:23162 days 3 hrs ago1671540323
0x9375FB...0978a213
0.2535194 ETH
154859892022-09-06 19:43:48266 days 20 hrs ago1662493428
0x9375FB...0978a213
17.9598957 ETH
133921832021-10-10 17:10:29597 days 22 hrs ago1633885829  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x85b37C...dC2ADecA

Contract Name:
InitializedProxy

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 1 : InitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title InitializedProxy
 * @author Anna Carroll
 */
contract InitializedProxy {
    // address of logic contract
    address public immutable logic;

    // ======== Constructor =========

    constructor(
        address _logic,
        bytes memory _initializationCalldata
    ) {
        logic = _logic;
        // Delegatecall into the logic contract, supplying initialization calldata
        (bool _ok, bytes memory returnData) =
            _logic.delegatecall(_initializationCalldata);
        // Revert if delegatecall to implementation reverts
        require(_ok, string(returnData));
    }

    // ======== Fallback =========

    fallback() external payable {
        address _impl = logic;
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(ptr, 0, size)

            switch result
                case 0 {
                    revert(ptr, size)
                }
                default {
                    return(ptr, size)
                }
        }
    }

    // ======== Receive =========

    receive() external payable {} // solhint-disable-line no-empty-blocks
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_initializationCalldata","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"logic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405234801561001057600080fd5b5060405161035738038061035783398101604081905261002f916100d7565b6001600160601b0319606083901b1660805260405160009081906001600160a01b0385169061005f9085906101a5565b600060405180830381855af49150503d806000811461009a576040519150601f19603f3d011682016040523d82523d6000602084013e61009f565b606091505b50915091508181906100cd5760405162461bcd60e51b81526004016100c491906101c1565b60405180910390fd5b505050505061023a565b600080604083850312156100ea57600080fd5b82516001600160a01b038116811461010157600080fd5b60208401519092506001600160401b038082111561011e57600080fd5b818501915085601f83011261013257600080fd5b81518181111561014457610144610224565b604051601f8201601f19908116603f0116810190838211818310171561016c5761016c610224565b8160405282815288602084870101111561018557600080fd5b6101968360208301602088016101f4565b80955050505050509250929050565b600082516101b78184602087016101f4565b9190910192915050565b60208152600082518060208401526101e08160408501602087016101f4565b601f01601f19169190910160400192915050565b60005b8381101561020f5781810151838201526020016101f7565b8381111561021e576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60fc61025b60003960008181602a0152607b015260fc6000f3fe608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f00000000000000000000000000000000000000000000000000000000000000009036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c634300080500330000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000184626fb2f000000000000000000000000090e5aa59a9df2add394df81521dbbed5f3c4a1a3000000000000000000000000521f9c7505005cfa19a8e5786a9c3c9c9f5e6f4200000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000008e890a7c0e2a43400000000000000000000000000000000000000000000000000056bc75e2d63100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000f526f677565204d61676520416e647900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003524d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals

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