ETH Price: $3,321.02 (+3.11%)

Contract

0xEB47df3383D077D36f307B7f0B1d0357c43B839e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...193007242024-02-24 23:27:59332 days ago1708817279IN
0xEB47df33...7c43B839e
0 ETH0.0006332321.66223204
Set Approval For...193007242024-02-24 23:27:59332 days ago1708817279IN
0xEB47df33...7c43B839e
0 ETH0.0006332321.66223204
Set Approval For...187374262023-12-07 22:37:47411 days ago1701988667IN
0xEB47df33...7c43B839e
0 ETH0.0017225559.09695954
Set Approval For...187374252023-12-07 22:37:23411 days ago1701988643IN
0xEB47df33...7c43B839e
0 ETH0.0016591656.75841464
Set Approval For...187374242023-12-07 22:37:11411 days ago1701988631IN
0xEB47df33...7c43B839e
0 ETH0.0016473856.35546983
Set Approval For...166545472023-02-18 9:11:11703 days ago1676711471IN
0xEB47df33...7c43B839e
0 ETH0.0011106321.75151673
Set Approval For...165352522023-02-01 16:47:35720 days ago1675270055IN
0xEB47df33...7c43B839e
0 ETH0.0007590325.96592364
Set Approval For...164476002023-01-20 11:04:35732 days ago1674212675IN
0xEB47df33...7c43B839e
0 ETH0.0004414215.10091678
Set Approval For...163570162023-01-07 19:32:11745 days ago1673119931IN
0xEB47df33...7c43B839e
0 ETH0.0004873516.67183258
Set Approval For...163569752023-01-07 19:23:59745 days ago1673119439IN
0xEB47df33...7c43B839e
0 ETH0.0005254317.97482096
Set Approval For...163420102023-01-05 17:14:11747 days ago1672938851IN
0xEB47df33...7c43B839e
0 ETH0.0006270121.44951863
Set Approval For...163166162023-01-02 4:11:11751 days ago1672632671IN
0xEB47df33...7c43B839e
0 ETH0.0006955113.62157586
Set Approval For...161611172022-12-11 11:18:11772 days ago1670757491IN
0xEB47df33...7c43B839e
0 ETH0.0008400416.45206525
Set Approval For...158019592022-10-22 6:49:59822 days ago1666421399IN
0xEB47df33...7c43B839e
0 ETH0.0009080617.78418984
Set Approval For...157120702022-10-09 17:36:35835 days ago1665336995IN
0xEB47df33...7c43B839e
0 ETH0.0013141725.73782583
Safe Transfer Fr...155726482022-09-20 5:36:11855 days ago1663652171IN
0xEB47df33...7c43B839e
0 ETH0.000391686.22110143
Safe Transfer Fr...153798442022-08-20 20:58:00885 days ago1661029080IN
0xEB47df33...7c43B839e
0 ETH0.0017786926.24521548
Set Approval For...153756792022-08-20 5:07:57886 days ago1660972077IN
0xEB47df33...7c43B839e
0 ETH0.0005849911.45702889
Set Approval For...153221742022-08-11 18:09:08894 days ago1660241348IN
0xEB47df33...7c43B839e
0 ETH0.001121321.96062985
Set Approval For...153116012022-08-10 1:59:41896 days ago1660096781IN
0xEB47df33...7c43B839e
0 ETH0.000504169.85765756
Transfer From153115992022-08-10 1:59:07896 days ago1660096747IN
0xEB47df33...7c43B839e
0 ETH0.000588969.04866232
Set Approval For...153105482022-08-09 22:03:55896 days ago1660082635IN
0xEB47df33...7c43B839e
0 ETH0.0010399820.33443498
Transfer153105382022-08-09 22:01:11896 days ago1660082471IN
0xEB47df33...7c43B839e
0 ETH0.0004140214.10601712
Transfer153105382022-08-09 22:01:11896 days ago1660082471IN
0xEB47df33...7c43B839e
0 ETH0.0004140214.10601712
Transfer153105362022-08-09 22:00:37896 days ago1660082437IN
0xEB47df33...7c43B839e
0 ETH0.0007403211.43089363
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xa2Fd4dEd...7EBd72F7d
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Proxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

/// @dev Proxy for NFT Factory
contract Proxy {

    // Storage for this proxy
    bytes32 private constant IMPLEMENTATION_SLOT = bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc);
    bytes32 private constant ADMIN_SLOT          = bytes32(0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103);

    constructor(address impl) {
        require(impl != address(0));

        _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(impl))));
        _setSlotValue(ADMIN_SLOT, bytes32(uint256(uint160(msg.sender))));
    }

    function setImplementation(address newImpl) public {
        require(msg.sender == _getAddress(ADMIN_SLOT));
        _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(newImpl))));
    }
    
    function setAdmin(address newAdmin) public {
        require(msg.sender == _getAddress(ADMIN_SLOT));
        _setSlotValue(ADMIN_SLOT, bytes32(uint256(uint160(newAdmin))));
    }
    

    function implementation() public view returns (address impl) {
        impl = address(uint160(uint256(_getSlotValue(IMPLEMENTATION_SLOT))));
    }

    function _getAddress(bytes32 key) internal view returns (address add) {
        add = address(uint160(uint256(_getSlotValue(key))));
    }

    function _getSlotValue(bytes32 slot_) internal view returns (bytes32 value_) {
        assembly {
            value_ := sload(slot_)
        }
    }

    function _setSlotValue(bytes32 slot_, bytes32 value_) internal {
        assembly {
            sstore(slot_, value_)
        }
    }

    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation__) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation__, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    receive() external payable {}


    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _delegate(_getAddress(IMPLEMENTATION_SLOT));
    }

}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImpl","type":"address"}],"name":"setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052600436106100385760003560e01c80635c60da1b14610072578063704b6c02146100a3578063d784d426146100c35761003f565b3661003f57005b61007061006b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6100e3565b6100f3565b005b34801561007e57600080fd5b50610087610117565b6040516001600160a01b03909116815260200160405180910390f35b3480156100af57600080fd5b506100706100be36600461022c565b610146565b3480156100cf57600080fd5b506100706100de36600461022c565b6101b9565b60006100ed825490565b92915050565b3660008037600080366000845af43d6000803e808015610112573d6000f35b3d6000fd5b60006101417f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b919050565b61016f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61036100e3565b6001600160a01b0316336001600160a01b03161461018c57600080fd5b6001600160a01b03167fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b6101e27fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61036100e3565b6001600160a01b0316336001600160a01b0316146101ff57600080fd5b6001600160a01b03167f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b60006020828403121561023e57600080fd5b81356001600160a01b038116811461025557600080fd5b939250505056fea26469706673582212206338fb9fcfd0243a16a428ed16fd0958ef71d993b153dd86d5f2588b86012d3664736f6c63430008070033

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  ]

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.