ETH Price: $2,535.90 (+4.23%)

Contract

0x64dcffC50594450338B78496517102562A66faA5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve173963092023-06-02 23:30:35475 days ago1685748635IN
0x64dcffC5...62A66faA5
0 ETH0.0011135622.70552547
Update User Pric...171693652023-05-01 23:53:59507 days ago1682985239IN
0x64dcffC5...62A66faA5
0 ETH0.0047469766.0890293
Transfer169206662023-03-27 19:01:23542 days ago1679943683IN
0x64dcffC5...62A66faA5
0 ETH0.0022157839.40232255
Update User Pric...161788222022-12-13 22:41:35646 days ago1670971295IN
0x64dcffC5...62A66faA5
0 ETH0.001092121
Update User Pric...161787872022-12-13 22:34:23646 days ago1670970863IN
0x64dcffC5...62A66faA5
0 ETH0.0015083621
Transfer161058352022-12-03 17:40:11656 days ago1670089211IN
0x64dcffC5...62A66faA5
0 ETH0.000657911.74426269
Transfer155774632022-09-20 21:47:47730 days ago1663710467IN
0x64dcffC5...62A66faA5
0 ETH0.0005634310.01929787
Approve144665132022-03-27 6:05:29908 days ago1648361129IN
0x64dcffC5...62A66faA5
0 ETH0.0012008824.4858307
Update User Pric...143719592022-03-12 12:28:57923 days ago1647088137IN
0x64dcffC5...62A66faA5
0 ETH0.0006883313.23600814
Update User Pric...143561722022-03-10 1:36:44925 days ago1646876204IN
0x64dcffC5...62A66faA5
0 ETH0.0011526728.08174184
Update User Pric...141144722022-01-31 15:37:32962 days ago1643643452IN
0x64dcffC5...62A66faA5
0 ETH0.0067227693.59666586
Approve139296872022-01-03 1:47:45991 days ago1641174465IN
0x64dcffC5...62A66faA5
0 ETH0.0035360871.55755268
Update User Pric...139028912021-12-29 22:16:47995 days ago1640816207IN
0x64dcffC5...62A66faA5
0 ETH0.0038635994.12606642
Update User Pric...135394622021-11-02 19:46:271052 days ago1635882387IN
0x64dcffC5...62A66faA5
0 ETH0.00930324129.52296608
Approve135369592021-11-02 10:21:011053 days ago1635848461IN
0x64dcffC5...62A66faA5
0 ETH0.00657953133.14591542
Transfer135009522021-10-27 18:20:211058 days ago1635358821IN
0x64dcffC5...62A66faA5
0 ETH0.01402151229.90995019
Transfer135009242021-10-27 18:11:151058 days ago1635358275IN
0x64dcffC5...62A66faA5
0 ETH0.01376676225.73282603
Update User Pric...134961492021-10-27 0:13:291059 days ago1635293609IN
0x64dcffC5...62A66faA5
0 ETH0.00565557108.75057357
Transfer134428102021-10-18 16:15:181067 days ago1634573718IN
0x64dcffC5...62A66faA5
0 ETH0.0054501397
Transfer134373462021-10-17 19:34:261068 days ago1634499266IN
0x64dcffC5...62A66faA5
0 ETH0.0045895175.2391042
Approve134233362021-10-15 15:01:481070 days ago1634310108IN
0x64dcffC5...62A66faA5
0 ETH0.00863711174.78378601
Transfer134173102021-10-14 16:04:411071 days ago1634227481IN
0x64dcffC5...62A66faA5
0 ETH0.00877383131.81052181
Transfer133915372021-10-10 14:52:451075 days ago1633877565IN
0x64dcffC5...62A66faA5
0 ETH0.0042442863.78449861
Update User Pric...133910852021-10-10 13:15:241076 days ago1633871724IN
0x64dcffC5...62A66faA5
0 ETH0.0034310565.96031964
Update User Pric...133564702021-10-05 2:51:401081 days ago1633402300IN
0x64dcffC5...62A66faA5
0 ETH0.00956586133.11254202
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
130963122021-08-25 19:11:431121 days ago1629918703  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.