ETH Price: $3,134.46 (+1.18%)

Contract

0x49d30ac2b4d953C85A8717aF9C5397415c444f14
 

Overview

ETH Balance

0.089876403594236864 ETH

Eth Value

$281.71 (@ $3,134.46/ETH)

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Cash211734502024-11-12 18:39:476 days ago1731436787IN
0x49d30ac2...15c444f14
0 ETH0.0015332435.71176736
Approve187998432023-12-16 16:34:47338 days ago1702744487IN
0x49d30ac2...15c444f14
0 ETH0.0018919169.73014255
Cash176039902023-07-02 4:36:35505 days ago1688272595IN
0x49d30ac2...15c444f14
0 ETH0.0005517812.85188482
End176038762023-07-02 4:13:11505 days ago1688271191IN
0x49d30ac2...15c444f14
0 ETH0.0021181813.24271152
Start175820102023-06-29 2:33:23508 days ago1688006003IN
0x49d30ac2...15c444f14
4.69 ETH0.0032111430.18163496
Update User Pric...175820062023-06-29 2:32:35508 days ago1688005955IN
0x49d30ac2...15c444f14
0 ETH0.0013217830.94634215
Transfer174877022023-06-15 20:39:11521 days ago1686861551IN
0x49d30ac2...15c444f14
0 ETH0.0007686915.54417677
Update User Pric...174819052023-06-15 1:03:11522 days ago1686790991IN
0x49d30ac2...15c444f14
0 ETH0.0007111516.65007656
Approve174818502023-06-15 0:52:11522 days ago1686790331IN
0x49d30ac2...15c444f14
0 ETH0.0004149114.18995085
Approve174818462023-06-15 0:51:23522 days ago1686790283IN
0x49d30ac2...15c444f14
0 ETH0.0004626115.82119181
Approve174818432023-06-15 0:50:47522 days ago1686790247IN
0x49d30ac2...15c444f14
0 ETH0.0004361414.91597585
Approve174818382023-06-15 0:49:47522 days ago1686790187IN
0x49d30ac2...15c444f14
0 ETH0.0004331814.81480205
Approve174818352023-06-15 0:49:11522 days ago1686790151IN
0x49d30ac2...15c444f14
0 ETH0.0004367514.93687736
Approve174818312023-06-15 0:48:23522 days ago1686790103IN
0x49d30ac2...15c444f14
0 ETH0.0004625715.81984383
Approve174818282023-06-15 0:47:47522 days ago1686790067IN
0x49d30ac2...15c444f14
0 ETH0.000718714.6256475
Update Auction L...174811452023-06-14 22:28:23522 days ago1686781703IN
0x49d30ac2...15c444f14
0 ETH0.0008009820.18620753
Approve173320372023-05-24 22:33:59543 days ago1684967639IN
0x49d30ac2...15c444f14
0 ETH0.0016232833.08229283
Approve173320282023-05-24 22:32:11543 days ago1684967531IN
0x49d30ac2...15c444f14
0 ETH0.000959432.82482711
Approve173320172023-05-24 22:29:59543 days ago1684967399IN
0x49d30ac2...15c444f14
0 ETH0.0010427332.55693788
Approve173320062023-05-24 22:27:47543 days ago1684967267IN
0x49d30ac2...15c444f14
0 ETH0.0016399833.38191913
Approve169774832023-04-04 19:08:35594 days ago1680635315IN
0x49d30ac2...15c444f14
0 ETH0.0041591984.80532615
Approve168689942023-03-20 12:50:35609 days ago1679316635IN
0x49d30ac2...15c444f14
0 ETH0.0009597719.56964967
Approve168688102023-03-20 12:13:11609 days ago1679314391IN
0x49d30ac2...15c444f14
0 ETH0.0007510715.31424268
Approve168686412023-03-20 11:38:59609 days ago1679312339IN
0x49d30ac2...15c444f14
0 ETH0.0006768813.80158857
Approve166584182023-02-18 22:15:23638 days ago1676758523IN
0x49d30ac2...15c444f14
0 ETH0.0004741917.47723795
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
211734502024-11-12 18:39:476 days ago1731436787
0x49d30ac2...15c444f14
0.00322189 ETH
176039902023-07-02 4:36:35505 days ago1688272595
0x49d30ac2...15c444f14
4.5969017 ETH
129410852021-08-01 17:56:371205 days ago1627840597  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.