ETH Price: $3,405.34 (+2.03%)
 
Transaction Hash
Method
Block
From
To
Approve214744152024-12-24 19:28:238 days ago1735068503IN
0xEed0E3d0...4855D0EEe
0 ETH0.000363147.40452736
Transfer174093212023-06-04 19:31:23577 days ago1685907083IN
0xEed0E3d0...4855D0EEe
0 ETH0.0013513624.04611524
Update User Pric...164312512023-01-18 4:18:35715 days ago1674015515IN
0xEed0E3d0...4855D0EEe
0 ETH0.0009517718.30153286
Transfer163241272023-01-03 5:19:59730 days ago1672723199IN
0xEed0E3d0...4855D0EEe
0 ETH0.0009402214.13772601
Transfer161061052022-12-03 18:34:23760 days ago1670092463IN
0xEed0E3d0...4855D0EEe
0 ETH0.0007635713.36277225
Approve150164332022-06-24 4:05:51923 days ago1656043551IN
0xEed0E3d0...4855D0EEe
0 ETH0.0012527146.17097071
Approve150163922022-06-24 3:55:22923 days ago1656042922IN
0xEed0E3d0...4855D0EEe
0 ETH0.001728935.20894577
Transfer143758642022-03-13 3:00:481026 days ago1647140448IN
0xEed0E3d0...4855D0EEe
0 ETH0.0018481527.7897592
Update User Pric...138379042021-12-19 21:11:431109 days ago1639948303IN
0xEed0E3d0...4855D0EEe
0 ETH0.0041544457.82995463
Update User Pric...137354202021-12-03 19:30:371125 days ago1638559837IN
0xEed0E3d0...4855D0EEe
0 ETH0.00732757102
Update User Pric...135577512021-11-05 16:44:581153 days ago1636130698IN
0xEed0E3d0...4855D0EEe
0 ETH0.00730503140.43548964
Transfer133809562021-10-08 22:47:591181 days ago1633733279IN
0xEed0E3d0...4855D0EEe
0 ETH0.0050579190
Update User Pric...131942862021-09-09 22:30:541210 days ago1631226654IN
0xEed0E3d0...4855D0EEe
0 ETH0.0056037678.00442883
Update User Pric...131616602021-09-04 21:26:031215 days ago1630790763IN
0xEed0E3d0...4855D0EEe
0 ETH0.0068600995.49262109
Update User Pric...131612032021-09-04 19:41:271215 days ago1630784487IN
0xEed0E3d0...4855D0EEe
0 ETH0.0046423789.24732871
Transfer131610672021-09-04 19:12:521215 days ago1630782772IN
0xEed0E3d0...4855D0EEe
0 ETH0.00820007115
Update User Pric...131598442021-09-04 14:52:441215 days ago1630767164IN
0xEed0E3d0...4855D0EEe
0 ETH0.00550421105.84011214
Update User Pric...131591582021-09-04 12:20:441215 days ago1630758044IN
0xEed0E3d0...4855D0EEe
0 ETH0.0044257561.60655848
Update User Pric...131580182021-09-04 8:00:481215 days ago1630742448IN
0xEed0E3d0...4855D0EEe
0 ETH0.0035931369.07608812
Update User Pric...131576972021-09-04 6:51:541215 days ago1630738314IN
0xEed0E3d0...4855D0EEe
0 ETH0.00757833105.49050294
Update User Pric...131546412021-09-03 19:27:111216 days ago1630697231IN
0xEed0E3d0...4855D0EEe
0 ETH0.0061802186
Update User Pric...131545662021-09-03 19:11:151216 days ago1630696275IN
0xEed0E3d0...4855D0EEe
0 ETH0.00780101108.55402428
Update User Pric...131545582021-09-03 19:09:011216 days ago1630696141IN
0xEed0E3d0...4855D0EEe
0 ETH0.00812051113
Update User Pric...131543622021-09-03 18:27:311216 days ago1630693651IN
0xEed0E3d0...4855D0EEe
0 ETH0.01070758149
Update User Pric...131540962021-09-03 17:26:001216 days ago1630689960IN
0xEed0E3d0...4855D0EEe
0 ETH0.00890803124
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
131452942021-09-02 8:50:391217 days ago1630572639  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x85b37C6b...4dC2ADecA
The constructor portion of the code might be different and could alter the actual behaviour of the contract

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"}]

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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