ETH Price: $2,156.02 (+8.42%)
Gas: 0.16 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve242687242026-01-19 12:09:1144 days ago1768824551IN
0x6aa8B576...478fbde9C
0 ETH0.000002840.05755586
Transfer158921632022-11-03 21:26:231216 days ago1667510783IN
0x6aa8B576...478fbde9C
0 ETH0.0010995616.5246438
Update User Pric...152235662022-07-27 8:55:531316 days ago1658912153IN
0x6aa8B576...478fbde9C
0 ETH0.000320686.16645943
Approve144781032022-03-29 1:11:131436 days ago1648516273IN
0x6aa8B576...478fbde9C
0 ETH0.0015733731.83940824
Update User Pric...144780052022-03-29 0:51:201436 days ago1648515080IN
0x6aa8B576...478fbde9C
0 ETH0.0019027736.57992636
Update User Pric...144779562022-03-29 0:42:001436 days ago1648514520IN
0x6aa8B576...478fbde9C
0 ETH0.0022875243.98657271
Update User Pric...144779402022-03-29 0:37:421436 days ago1648514262IN
0x6aa8B576...478fbde9C
0 ETH0.0024568847.24333461
Transfer144779292022-03-29 0:34:411436 days ago1648514081IN
0x6aa8B576...478fbde9C
0 ETH0.0027510238.58116162
Approve135446352021-11-03 15:26:301582 days ago1635953190IN
0x6aa8B576...478fbde9C
0 ETH0.00905282184.58577224
Update User Pric...135446172021-11-03 15:21:141582 days ago1635952874IN
0x6aa8B576...478fbde9C
0 ETH0.00899316172.88891907
Update User Pric...133197802021-09-29 9:08:391617 days ago1632906519IN
0x6aa8B576...478fbde9C
0 ETH0.0025613649.24095128
Approve133196702021-09-29 8:41:261617 days ago1632904886IN
0x6aa8B576...478fbde9C
0 ETH0.0041278584.16629944
Approve133021312021-09-26 15:16:481620 days ago1632669408IN
0x6aa8B576...478fbde9C
0 ETH0.0020352541.49851478
Approve132946892021-09-25 11:27:341621 days ago1632569254IN
0x6aa8B576...478fbde9C
0 ETH0.0014108228.76659419
Approve132944592021-09-25 10:34:381621 days ago1632566078IN
0x6aa8B576...478fbde9C
0 ETH0.0016068232.76290595
Approve132940532021-09-25 9:04:231621 days ago1632560663IN
0x6aa8B576...478fbde9C
0 ETH0.0017165935.00104985
Approve132932802021-09-25 6:21:031621 days ago1632550863IN
0x6aa8B576...478fbde9C
0 ETH0.0016065132.75655308
Approve132928052021-09-25 4:34:041621 days ago1632544444IN
0x6aa8B576...478fbde9C
0 ETH0.0019260639.27219441
Approve132611712021-09-20 7:06:461626 days ago1632121606IN
0x6aa8B576...478fbde9C
0 ETH0.0021568543.97787799
Approve132556292021-09-19 10:33:361627 days ago1632047616IN
0x6aa8B576...478fbde9C
0 ETH0.0019386839.529531
Approve132552642021-09-19 9:08:341627 days ago1632042514IN
0x6aa8B576...478fbde9C
0 ETH0.0015503731.61196644
Approve132551082021-09-19 8:36:221627 days ago1632040582IN
0x6aa8B576...478fbde9C
0 ETH0.0016685834.02225107
Approve132549282021-09-19 7:56:421627 days ago1632038202IN
0x6aa8B576...478fbde9C
0 ETH0.0016220333.07299664
Approve132547332021-09-19 7:13:021627 days ago1632035582IN
0x6aa8B576...478fbde9C
0 ETH0.0016796634.24808272
Approve132545982021-09-19 6:43:101627 days ago1632033790IN
0x6aa8B576...478fbde9C
0 ETH0.0014740830.05639315
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-130963672021-08-25 19:25:321651 days ago1629919532  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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

Contract Source Code (Solidity Standard Json-Input format)

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

API
[{"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"}]

0x60a060405234801561001057600080fd5b5060405161035738038061035783398101604081905261002f916100d7565b6001600160601b0319606083901b1660805260405160009081906001600160a01b0385169061005f9085906101a5565b600060405180830381855af49150503d806000811461009a576040519150601f19603f3d011682016040523d82523d6000602084013e61009f565b606091505b50915091508181906100cd5760405162461bcd60e51b81526004016100c491906101c1565b60405180910390fd5b505050505061023a565b600080604083850312156100ea57600080fd5b82516001600160a01b038116811461010157600080fd5b60208401519092506001600160401b038082111561011e57600080fd5b818501915085601f83011261013257600080fd5b81518181111561014457610144610224565b604051601f8201601f19908116603f0116810190838211818310171561016c5761016c610224565b8160405282815288602084870101111561018557600080fd5b6101968360208301602088016101f4565b80955050505050509250929050565b600082516101b78184602087016101f4565b9190910192915050565b60208152600082518060208401526101e08160408501602087016101f4565b601f01601f19169190910160400192915050565b60005b8381101561020f5781810151838201526020016101f7565b8381111561021e576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60fc61025b60003960008181602a0152607b015260fc6000f3fe608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f00000000000000000000000000000000000000000000000000000000000000009036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c634300080500330000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000184626fb2f0000000000000000000000000e54c65316e8967c25c1357773b5e85bc063b7efd000000000000000000000000b6dae651468e9593e4581705a09c10a76ac1e0c800000000000000000000000000000000000000000000000000000000000004ba00000000000000000000000000000000000000000000021e19e0c9bab240000000000000000000000000000000000000000000000000001107d4fa03a7f1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000114e7978206279204070706c706c6561737200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e595850504c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.