ETH Price: $2,780.41 (+1.57%)

Contract

0xa57e19939263A3a908dfb7087283eE428d459290
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer162299002022-12-21 1:50:11794 days ago1671587411IN
0xa57e1993...28d459290
0 ETH0.0007397713.16002624
Transfer158893882022-11-03 12:06:11842 days ago1667477171IN
0xa57e1993...28d459290
0 ETH0.0009258216.46619808
Transfer157473962022-10-14 15:58:47862 days ago1665763127IN
0xa57e1993...28d459290
0 ETH0.0006367516.27444028
Transfer153070572022-08-09 8:57:23928 days ago1660035443IN
0xa57e1993...28d459290
0 ETH0.0005861410.42710033
Transfer149721102022-06-16 7:24:55982 days ago1655364295IN
0xa57e1993...28d459290
0 ETH0.001774431.57192324
Transfer138946362021-12-28 15:51:081152 days ago1640706668IN
0xa57e1993...28d459290
0 ETH0.0047865485.14862042
Transfer138871362021-12-27 11:53:491153 days ago1640606029IN
0xa57e1993...28d459290
0 ETH0.0045840481.54632934
Transfer138747202021-12-25 13:51:431155 days ago1640440303IN
0xa57e1993...28d459290
0 ETH0.0021594455.2090824
Transfer138717932021-12-25 3:02:451155 days ago1640401365IN
0xa57e1993...28d459290
0 ETH0.0047451984.41311474
Transfer138668182021-12-24 8:26:281156 days ago1640334388IN
0xa57e1993...28d459290
0 ETH0.0025296345
Transfer138104632021-12-15 15:09:001165 days ago1639580940IN
0xa57e1993...28d459290
0 ETH0.0026371976.85468923
Transfer137755832021-12-10 5:47:331170 days ago1639115253IN
0xa57e1993...28d459290
0 ETH0.0042229359.21108305

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
209956592024-10-18 23:13:23126 days ago1729293203
0xa57e1993...28d459290
0 ETH
209956592024-10-18 23:13:23126 days ago1729293203
0xa57e1993...28d459290
0 ETH
209282662024-10-09 13:15:11136 days ago1728479711
0xa57e1993...28d459290
0 ETH
209282662024-10-09 13:15:11136 days ago1728479711
0xa57e1993...28d459290
0 ETH
208957352024-10-05 0:26:23140 days ago1728087983
0xa57e1993...28d459290
0 ETH
208957352024-10-05 0:26:23140 days ago1728087983
0xa57e1993...28d459290
0 ETH
208919402024-10-04 11:44:23141 days ago1728042263
0xa57e1993...28d459290
0 ETH
208919402024-10-04 11:44:23141 days ago1728042263
0xa57e1993...28d459290
0 ETH
208781752024-10-02 13:40:47143 days ago1727876447
0xa57e1993...28d459290
0 ETH
208781752024-10-02 13:40:47143 days ago1727876447
0xa57e1993...28d459290
0 ETH
208608462024-09-30 3:42:35145 days ago1727667755
0xa57e1993...28d459290
0 ETH
208608462024-09-30 3:42:35145 days ago1727667755
0xa57e1993...28d459290
0 ETH
208522682024-09-28 22:58:47146 days ago1727564327
0xa57e1993...28d459290
0 ETH
208522682024-09-28 22:58:47146 days ago1727564327
0xa57e1993...28d459290
0 ETH
208467752024-09-28 4:34:35147 days ago1727498075
0xa57e1993...28d459290
0 ETH
208467752024-09-28 4:34:35147 days ago1727498075
0xa57e1993...28d459290
0 ETH
208408322024-09-27 8:41:59148 days ago1727426519
0xa57e1993...28d459290
0 ETH
208408322024-09-27 8:41:59148 days ago1727426519
0xa57e1993...28d459290
0 ETH
208378602024-09-26 22:45:11148 days ago1727390711
0xa57e1993...28d459290
0 ETH
208378602024-09-26 22:45:11148 days ago1727390711
0xa57e1993...28d459290
0 ETH
208378422024-09-26 22:41:35148 days ago1727390495
0xa57e1993...28d459290
0 ETH
208378422024-09-26 22:41:35148 days ago1727390495
0xa57e1993...28d459290
0 ETH
208377782024-09-26 22:28:47148 days ago1727389727
0xa57e1993...28d459290
0 ETH
208377782024-09-26 22:28:47148 days ago1727389727
0xa57e1993...28d459290
0 ETH
208227192024-09-24 20:02:59150 days ago1727208179
0xa57e1993...28d459290
0 ETH
View All Internal Transactions
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  ]

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.