ETH Price: $3,495.59 (-0.14%)
Gas: 4 Gwei

Contract

0xa25651667c004518eb9c421f3416380c32A9A2d0
 
Transaction Hash
Method
Block
From
To
Update User Pric...169692852023-04-03 15:08:47476 days ago1680534527IN
0xa2565166...c32A9A2d0
0 ETH0.0017049732.77101142
Update User Pric...169657382023-04-03 3:06:59477 days ago1680491219IN
0xa2565166...c32A9A2d0
0 ETH0.0012387417.24091368
Update User Pric...169108312023-03-26 9:52:47485 days ago1679824367IN
0xa2565166...c32A9A2d0
0 ETH0.0009462813.17052643
Update User Pric...165182092023-01-30 7:40:47540 days ago1675064447IN
0xa2565166...c32A9A2d0
0 ETH0.0007112513.67080766
Update User Pric...164953942023-01-27 3:12:35543 days ago1674789155IN
0xa2565166...c32A9A2d0
0 ETH0.000895817.21816087
Update User Pric...164915172023-01-26 14:14:23543 days ago1674742463IN
0xa2565166...c32A9A2d0
0 ETH0.0009199617.68254626
Update User Pric...164742412023-01-24 4:20:11546 days ago1674534011IN
0xa2565166...c32A9A2d0
0 ETH0.0010962315.25747203
Update User Pric...164672732023-01-23 5:00:35547 days ago1674450035IN
0xa2565166...c32A9A2d0
0 ETH0.0011671116.24400528
Update User Pric...163953632023-01-13 4:03:11557 days ago1673582591IN
0xa2565166...c32A9A2d0
0 ETH0.0011981216.67555258
Update User Pric...163844492023-01-11 15:24:47558 days ago1673450687IN
0xa2565166...c32A9A2d0
0 ETH0.0009364818
Update User Pric...163838382023-01-11 13:22:23558 days ago1673443343IN
0xa2565166...c32A9A2d0
0 ETH0.0007823715.03789294
Update User Pric...163695812023-01-09 13:35:47560 days ago1673271347IN
0xa2565166...c32A9A2d0
0 ETH0.0007508614.42893014
Update User Pric...163237522023-01-03 4:04:59567 days ago1672718699IN
0xa2565166...c32A9A2d0
0 ETH0.0015975222.23445408
Update User Pric...162958232022-12-30 6:33:47571 days ago1672382027IN
0xa2565166...c32A9A2d0
0 ETH0.0012183216.95677709
Update User Pric...158956242022-11-04 9:02:23627 days ago1667552543IN
0xa2565166...c32A9A2d0
0 ETH0.0011722816.31592807
Update User Pric...158597602022-10-30 8:44:11632 days ago1667119451IN
0xa2565166...c32A9A2d0
0 ETH0.000583378.11946324
Update User Pric...158592712022-10-30 7:05:47632 days ago1667113547IN
0xa2565166...c32A9A2d0
0 ETH0.00040525.63973509
Update User Pric...158585352022-10-30 4:37:47632 days ago1667104667IN
0xa2565166...c32A9A2d0
0 ETH0.000572717.97113389
Update User Pric...156751042022-10-04 13:35:59657 days ago1664890559IN
0xa2565166...c32A9A2d0
0 ETH0.0009350217.9718479
Update User Pric...156604512022-10-02 12:26:35659 days ago1664713595IN
0xa2565166...c32A9A2d0
0 ETH0.000380985.30258783
Update User Pric...156580172022-10-02 4:17:47660 days ago1664684267IN
0xa2565166...c32A9A2d0
0 ETH0.000528947.36067053
Update User Pric...156144282022-09-26 2:01:11666 days ago1664157671IN
0xa2565166...c32A9A2d0
0 ETH0.000213314.1
Update User Pric...156094302022-09-25 9:16:11667 days ago1664097371IN
0xa2565166...c32A9A2d0
0 ETH0.000418995.83162379
Update User Pric...156089512022-09-25 7:39:59667 days ago1664091599IN
0xa2565166...c32A9A2d0
0 ETH0.00041885.82893528
Update User Pric...156065462022-09-24 23:37:23667 days ago1664062643IN
0xa2565166...c32A9A2d0
0 ETH0.000252243.5108019
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
152996312022-08-08 5:06:18715 days ago1659935178  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB9b100DC...753e9F734
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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.