ETH Price: $2,398.91 (+2.55%)
Gas: 6.57 Gwei

Contract

0x812A18846375824768baF63b3832C0b52E4F0026
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve152714332022-08-03 19:53:47771 days ago1659556427IN
0x812A1884...52E4F0026
0 ETH0.0005440711.01
Approve151074722022-07-09 9:04:56797 days ago1657357496IN
0x812A1884...52E4F0026
0 ETH0.0005830511.79888131
Approve148250272022-05-22 18:50:02844 days ago1653245402IN
0x812A1884...52E4F0026
0 ETH0.0005970112.08133632
Update User Pric...137028182021-11-28 14:07:451020 days ago1638108465IN
0x812A1884...52E4F0026
0 ETH0.00940409130.90521026
Approve136856002021-11-25 20:34:041022 days ago1637872444IN
0x812A1884...52E4F0026
0 ETH0.00540832109.4448683
Approve135543642021-11-05 4:08:261043 days ago1636085306IN
0x812A1884...52E4F0026
0 ETH0.00541086109.49621741
Approve134690962021-10-22 18:45:031056 days ago1634928303IN
0x812A1884...52E4F0026
0 ETH0.0041253984.11621059
Transfer133025372021-09-26 16:41:311083 days ago1632674491IN
0x812A1884...52E4F0026
0 ETH0.0043406977.18847117
Transfer132986002021-09-26 1:51:061083 days ago1632621066IN
0x812A1884...52E4F0026
0 ETH0.0027512550.75656356
Transfer132985972021-09-26 1:50:361083 days ago1632621036IN
0x812A1884...52E4F0026
0 ETH0.0034706348.6730527
Approve132966822021-09-25 18:47:051083 days ago1632595625IN
0x812A1884...52E4F0026
0 ETH0.0032244765.65021895
Transfer132444652021-09-17 17:01:561091 days ago1631898116IN
0x812A1884...52E4F0026
0 ETH0.00784561110.01044043
Approve132444472021-09-17 16:58:201091 days ago1631897900IN
0x812A1884...52E4F0026
0 ETH0.0045840892.76511087
Approve132443992021-09-17 16:47:411092 days ago1631897261IN
0x812A1884...52E4F0026
0 ETH0.0038298977.50322169

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
132339302021-09-16 2:03:311093 days ago1631757811  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.