ETH Price: $2,538.97 (+3.08%)

Contract

0x4F228bf911ed67730e4B51B1F82AC291B49053ee
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Downgrade206322702024-08-29 5:51:4723 mins ago1724910707IN
Superfluid Finance: DAIx Token
0 ETH0.000356581.31975317
Upgrade206322572024-08-29 5:48:4726 mins ago1724910527IN
Superfluid Finance: DAIx Token
0 ETH0.000092921.16714882
Downgrade202340182024-07-04 15:23:1155 days ago1720106591IN
Superfluid Finance: DAIx Token
0 ETH0.002624213.63426197
Downgrade202133842024-07-01 18:13:1158 days ago1719857591IN
Superfluid Finance: DAIx Token
0 ETH0.0023894512.4146344
Downgrade201975062024-06-29 13:01:1160 days ago1719666071IN
Superfluid Finance: DAIx Token
0 ETH0.000591753.37454536
Downgrade201936012024-06-28 23:54:5961 days ago1719618899IN
Superfluid Finance: DAIx Token
0 ETH0.000437022.27075134
Downgrade201907692024-06-28 14:25:2361 days ago1719584723IN
Superfluid Finance: DAIx Token
0 ETH0.001647168.34975302
Downgrade201325322024-06-20 11:06:1169 days ago1718881571IN
Superfluid Finance: DAIx Token
0 ETH0.0034841917.66196152
Downgrade201117652024-06-17 13:20:2372 days ago1718630423IN
Superfluid Finance: DAIx Token
0 ETH0.001050865.32700928
Downgrade200805702024-06-13 4:38:2377 days ago1718253503IN
Superfluid Finance: DAIx Token
0 ETH0.0023707712.01787603
Downgrade200749732024-06-12 9:52:3577 days ago1718185955IN
Superfluid Finance: DAIx Token
0 ETH0.0067562734.25080332
Downgrade200732502024-06-12 4:05:4778 days ago1718165147IN
Superfluid Finance: DAIx Token
0 ETH0.001222766.19914249
Downgrade200340092024-06-06 16:34:3583 days ago1717691675IN
Superfluid Finance: DAIx Token
0 ETH0.0047586224.12522251
Downgrade200179662024-06-04 10:49:5985 days ago1717498199IN
Superfluid Finance: DAIx Token
0 ETH0.0020552210.41827023
Downgrade199973622024-06-01 13:47:3588 days ago1717249655IN
Superfluid Finance: DAIx Token
0 ETH0.001750558.87385467
Downgrade199528682024-05-26 8:30:3594 days ago1716712235IN
Superfluid Finance: DAIx Token
0 ETH0.000826654.58816095
Downgrade199395082024-05-24 11:41:1196 days ago1716550871IN
Superfluid Finance: DAIx Token
0 ETH0.001221846.19371527
Downgrade199100922024-05-20 8:57:59100 days ago1716195479IN
Superfluid Finance: DAIx Token
0 ETH0.000737853.7403069
Downgrade199051842024-05-19 16:30:23101 days ago1716136223IN
Superfluid Finance: DAIx Token
0 ETH0.000736443.73318401
Downgrade198739952024-05-15 7:50:23105 days ago1715759423IN
Superfluid Finance: DAIx Token
0 ETH0.0023362911.84306682
Downgrade198739062024-05-15 7:32:35105 days ago1715758355IN
Superfluid Finance: DAIx Token
0 ETH0.000992125.02925371
Downgrade198669002024-05-14 7:55:59106 days ago1715673359IN
Superfluid Finance: DAIx Token
0 ETH0.001710588.67126651
Downgrade198132522024-05-06 19:53:23114 days ago1715025203IN
Superfluid Finance: DAIx Token
0 ETH0.001190726.03597096
Downgrade197962852024-05-04 10:56:23116 days ago1714820183IN
Superfluid Finance: DAIx Token
0 ETH0.001381897.00505637
Downgrade197725682024-05-01 3:22:35120 days ago1714533755IN
Superfluid Finance: DAIx Token
0 ETH0.001034025.24227873
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
158832942022-11-02 15:41:11665 days ago1667403671  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
UUPSProxy

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : UUPSProxy.sol
// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.16;

import { UUPSUtils } from "./UUPSUtils.sol";
import { Proxy } from "@openzeppelin/contracts/proxy/Proxy.sol";


/**
 * @title UUPS (Universal Upgradeable Proxy Standard) Proxy
 *
 * NOTE:
 * - Compliant with [Universal Upgradeable Proxy Standard](https://eips.ethereum.org/EIPS/eip-1822)
 * - Compiiant with [Standard Proxy Storage Slots](https://eips.ethereum.org/EIPS/eip-1967)
 * - Implements delegation of calls to other contracts, with proper forwarding of
 *   return values and bubbling of failures.
 * - It defines a fallback function that delegates all calls to the implementation.
 */
contract UUPSProxy is Proxy {

    /**
     * @dev Proxy initialization function.
     *      This should only be called once and it is permission-less.
     * @param initialAddress Initial logic contract code address to be used.
     */
    function initializeProxy(address initialAddress) external {
        require(initialAddress != address(0), "UUPSProxy: zero address");
        require(UUPSUtils.implementation() == address(0), "UUPSProxy: already initialized");
        UUPSUtils.setImplementation(initialAddress);
    }

    /// @dev Proxy._implementation implementation
    function _implementation() internal virtual override view returns (address)
    {
        return UUPSUtils.implementation();
    }

}

File 2 of 3 : UUPSUtils.sol
// SPDX-License-Identifier: AGPLv3
pragma solidity 0.8.16;

/**
 * @title UUPS (Universal Upgradeable Proxy Standard) Shared Library
 */
library UUPSUtils {

    /**
     * @dev Implementation slot constant.
     * Using https://eips.ethereum.org/EIPS/eip-1967 standard
     * Storage slot 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc
     * (obtained as bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)).
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /// @dev Get implementation address.
    function implementation() internal view returns (address impl) {
        assembly { // solium-disable-line
            impl := sload(_IMPLEMENTATION_SLOT)
        }
    }

    /// @dev Set new implementation address.
    function setImplementation(address codeAddress) internal {
        assembly {
            // solium-disable-line
            sstore(
                _IMPLEMENTATION_SLOT,
                codeAddress
            )
        }
    }

}

File 3 of 3 : Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal 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())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @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 {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

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

Contract Security Audit

Contract ABI

[{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"initialAddress","type":"address"}],"name":"initializeProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f610059565b005b61002f610059565b34801561004557600080fd5b5061002f6100543660046101c4565b61006b565b610069610064610171565b6101a0565b565b6001600160a01b0381166100c65760405162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f206164647265737300000000000000000060448201526064015b60405180910390fd5b60006100f07f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b0316146101465760405162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a6564000060448201526064016100bd565b61016e817f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b50565b600061019b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b3660008037600080366000845af43d6000803e8080156101bf573d6000f35b3d6000fd5b6000602082840312156101d657600080fd5b81356001600160a01b03811681146101ed57600080fd5b939250505056fea2646970667358221220d5a8e007f2080dfe84e95d171924fb4d89e3b402dfeaf170fb33ddf8acb5db0e64736f6c63430008100033

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.