ETH Price: $3,498.34 (+2.63%)

Contract

0x36bab1cb5a50330B5b7e789752a768FD553785c2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update User Pric...196623602024-04-15 17:20:35253 days ago1713201635IN
0x36bab1cb...D553785c2
0 ETH0.0007928615.24602444
Approve150084052022-06-22 15:59:17916 days ago1655913557IN
0x36bab1cb...D553785c2
0 ETH0.0018405337.52832698
Transfer149861242022-06-18 17:10:42920 days ago1655572242IN
0x36bab1cb...D553785c2
0 ETH0.00178631.76639198
Approve146305462022-04-21 20:57:43978 days ago1650574663IN
0x36bab1cb...D553785c2
0 ETH0.0033145867.58393344
Update User Pric...144808432022-03-29 11:35:501001 days ago1648553750IN
0x36bab1cb...D553785c2
0 ETH0.0023140432.21157296
Approve144003482022-03-16 22:50:511014 days ago1647471051IN
0x36bab1cb...D553785c2
0 ETH0.0022303445.13409322
Transfer131094352021-08-27 19:51:551215 days ago1630093915IN
0x36bab1cb...D553785c2
0 ETH0.00762487125
Transfer130969462021-08-25 21:33:411217 days ago1629927221IN
0x36bab1cb...D553785c2
0 ETH0.0043187876.84802149
Transfer130969192021-08-25 21:28:131217 days ago1629926893IN
0x36bab1cb...D553785c2
0 ETH0.00725888119
Transfer130767272021-08-22 18:26:361220 days ago1629656796IN
0x36bab1cb...D553785c2
0 ETH0.0021363643.22093689
Update User Pric...130720122021-08-22 0:59:361221 days ago1629593976IN
0x36bab1cb...D553785c2
0 ETH0.0012982224.95778325
Update User Pric...130600072021-08-20 4:28:511223 days ago1629433731IN
0x36bab1cb...D553785c2
0 ETH0.0014732528.32251536
Update User Pric...130558252021-08-19 12:57:161223 days ago1629377836IN
0x36bab1cb...D553785c2
0 ETH0.0017628724.53921427
Update User Pric...130317652021-08-15 19:51:571227 days ago1629057117IN
0x36bab1cb...D553785c2
0 ETH0.0030022257.71616443
Update User Pric...130150772021-08-13 6:03:281230 days ago1628834608IN
0x36bab1cb...D553785c2
0 ETH0.0016136431.02145715
Update User Pric...130150592021-08-13 5:59:561230 days ago1628834396IN
0x36bab1cb...D553785c2
0 ETH0.0014565428.00125405
Update User Pric...129865942021-08-08 20:23:501234 days ago1628454230IN
0x36bab1cb...D553785c2
0 ETH0.0021418541.17606445
Update User Pric...129821292021-08-08 4:09:481235 days ago1628395788IN
0x36bab1cb...D553785c2
0 ETH0.0021130640.62260958
Update User Pric...129798972021-08-07 19:37:361235 days ago1628365056IN
0x36bab1cb...D553785c2
0 ETH0.0023134344.47454797
Approve129621322021-08-05 1:37:461238 days ago1628127466IN
0x36bab1cb...D553785c2
0 ETH0.001456629.7000016
Approve129597722021-08-04 16:38:181238 days ago1628095098IN
0x36bab1cb...D553785c2
0 ETH0.0024031549
Approve129573802021-08-04 7:42:151239 days ago1628062935IN
0x36bab1cb...D553785c2
0 ETH0.001235425
Approve129562602021-08-04 3:15:391239 days ago1628046939IN
0x36bab1cb...D553785c2
0 ETH0.001425429
Approve129555442021-08-04 0:32:461239 days ago1628037166IN
0x36bab1cb...D553785c2
0 ETH0.0020754742
Approve129528582021-08-03 14:38:281239 days ago1628001508IN
0x36bab1cb...D553785c2
0 ETH0.0025110551.2
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
129495392021-08-03 1:51:261240 days ago1627955486  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.