ETH Price: $2,609.08 (-1.45%)

Contract

0x6A59972C7c0Ac4F75A8fDc13652c38f7f95a59E6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve195444302024-03-30 4:33:59145 days ago1711773239IN
0x6A59972C...7f95a59E6
0 ETH0.0006817225.12615462
Approve188233352023-12-19 23:43:35246 days ago1703029415IN
0x6A59972C...7f95a59E6
0 ETH0.0009873736.39137217
Transfer185373932023-11-09 22:32:59286 days ago1699569179IN
0x6A59972C...7f95a59E6
0 ETH0.002894751.49706005
Update User Pric...177996382023-07-29 15:38:23390 days ago1690645103IN
0x6A59972C...7f95a59E6
0 ETH0.0018266425.42266283
Update User Pric...176430402023-07-07 16:13:47412 days ago1688746427IN
0x6A59972C...7f95a59E6
0 ETH0.002853139.71523182
Transfer174862132023-06-15 15:36:35434 days ago1686843395IN
0x6A59972C...7f95a59E6
0 ETH0.0010664621.68094597
Update User Pric...173016762023-05-20 15:58:35460 days ago1684598315IN
0x6A59972C...7f95a59E6
0 ETH0.0024975548.01415292
Transfer172927302023-05-19 9:45:11461 days ago1684489511IN
0x6A59972C...7f95a59E6
0 ETH0.0022479640
Update User Pric...169606312023-04-02 9:51:11508 days ago1680429071IN
0x6A59972C...7f95a59E6
0 ETH0.0010569920.32019559
Update User Pric...169508422023-04-01 0:48:11509 days ago1680310091IN
0x6A59972C...7f95a59E6
0 ETH0.00891959171.47453998
Update User Pric...169417512023-03-30 18:10:35511 days ago1680199835IN
0x6A59972C...7f95a59E6
0 ETH0.0026528236.93358703
Approve168637792023-03-19 19:16:59521 days ago1679253419IN
0x6A59972C...7f95a59E6
0 ETH0.0006858325.27776021
Update User Pric...168177232023-03-13 7:56:11528 days ago1678694171IN
0x6A59972C...7f95a59E6
0 ETH0.0009941919.11286708
Approve163996702023-01-13 18:29:59587 days ago1673634599IN
0x6A59972C...7f95a59E6
0 ETH0.0007269826.79441092
Transfer162847192022-12-28 17:22:47603 days ago1672248167IN
0x6A59972C...7f95a59E6
0 ETH0.0023175941.38938245
Approve161682002022-12-12 11:02:35619 days ago1670842955IN
0x6A59972C...7f95a59E6
0 ETH0.0003312413.33361961
Transfer160267792022-11-22 16:36:23639 days ago1669134983IN
0x6A59972C...7f95a59E6
0 ETH0.0010246918.23333155
Transfer160229922022-11-22 3:53:59639 days ago1669089239IN
0x6A59972C...7f95a59E6
0 ETH0.0006702711.92685224
Transfer155773642022-09-20 21:27:47701 days ago1663709267IN
0x6A59972C...7f95a59E6
0 ETH0.0008057512.11575928
Transfer154697792022-09-04 5:18:33718 days ago1662268713IN
0x6A59972C...7f95a59E6
0 ETH0.000318485.66715157
Transfer153907082022-08-22 14:18:58731 days ago1661177938IN
0x6A59972C...7f95a59E6
0 ETH0.0013826220.78599436
Transfer153652252022-08-18 13:18:04735 days ago1660828684IN
0x6A59972C...7f95a59E6
0 ETH0.000798212
Approve153652182022-08-18 13:16:17735 days ago1660828577IN
0x6A59972C...7f95a59E6
0 ETH0.0005929912
Approve152644022022-08-02 17:22:50751 days ago1659460970IN
0x6A59972C...7f95a59E6
0 ETH0.0011986724.4407279
Update User Pric...152447662022-07-30 16:04:06754 days ago1659197046IN
0x6A59972C...7f95a59E6
0 ETH0.0009740713.56142564
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
136727382021-11-23 19:40:471002 days ago1637696447  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.