xDAI Price: $0.999916 (-0.01%)
Gas: 1 GWei

Contract

0x7AecA73f38f8F33AB7FF067fED1268384d12324d

Overview

xDAI Balance

Gnosis Chain LogoGnosis Chain LogoGnosis Chain Logo0 xDAI

xDAI Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Upgrade316529502023-12-27 14:46:15482 days ago1703688375IN
Superfluid Finance: Brightx Token
0 xDAI0.000450524.26531227
Downgrade315054302023-12-18 15:47:40491 days ago1702914460IN
Superfluid Finance: Brightx Token
0 xDAI0.000406632.20298478
Upgrade315053462023-12-18 15:40:10491 days ago1702914010IN
Superfluid Finance: Brightx Token
0 xDAI0.000152621.51407888
Downgrade315029992023-12-18 12:15:45491 days ago1702901745IN
Superfluid Finance: Brightx Token
0 xDAI0.0029370515.50865205
Downgrade314925392023-12-17 21:08:05492 days ago1702847285IN
Superfluid Finance: Brightx Token
0 xDAI0.000302551.5
Upgrade314924852023-12-17 21:03:25492 days ago1702847005IN
Superfluid Finance: Brightx Token
0 xDAI0.000144031.5
Downgrade314269582023-12-13 21:23:45496 days ago1702502625IN
Superfluid Finance: Brightx Token
0 xDAI0.000246871.3
Downgrade314267542023-12-13 21:05:40496 days ago1702501540IN
Superfluid Finance: Brightx Token
0 xDAI0.000248411.2
Upgrade314267372023-12-13 21:04:15496 days ago1702501455IN
Superfluid Finance: Brightx Token
0 xDAI0.000126721.2
Downgrade314267292023-12-13 21:03:25496 days ago1702501405IN
Superfluid Finance: Brightx Token
0 xDAI0.000221491.2
Upgrade314265262023-12-13 20:45:25496 days ago1702500325IN
Superfluid Finance: Brightx Token
0 xDAI0.000126721.2
Upgrade314257792023-12-13 19:40:30496 days ago1702496430IN
Superfluid Finance: Brightx Token
0 xDAI0.000131051.3
Upgrade313948602023-12-11 22:52:30498 days ago1702335150IN
Superfluid Finance: Brightx Token
0 xDAI0.001049619.93823289
Downgrade313894212023-12-11 14:58:25498 days ago1702306705IN
Superfluid Finance: Brightx Token
0 xDAI0.0082218544.54310222
Upgrade313893472023-12-11 14:51:50498 days ago1702306310IN
Superfluid Finance: Brightx Token
0 xDAI0.0040733538.57273945
Downgrade255657032022-12-21 19:26:10853 days ago1671650770IN
Superfluid Finance: Brightx Token
0 xDAI0.000304151.5
Transfer247948902022-10-30 16:19:55905 days ago1667146795IN
Superfluid Finance: Brightx Token
0 xDAI0.00025471.5
Send247947912022-10-30 16:08:40905 days ago1667146120IN
Superfluid Finance: Brightx Token
0 xDAI0.000420211.5
Upgrade247947542022-10-30 16:04:35905 days ago1667145875IN
Superfluid Finance: Brightx Token
0 xDAI0.000144331.5
Upgrade231725922022-07-15 0:24:301013 days ago1657844670IN
Superfluid Finance: Brightx Token
0 xDAI0.000252462.5
Downgrade230492172022-07-07 18:23:001020 days ago1657218180IN
Superfluid Finance: Brightx Token
0 xDAI0.00050722.5
Downgrade229968632022-07-04 17:38:251023 days ago1656956305IN
Superfluid Finance: Brightx Token
0 xDAI0.000464422.5
Downgrade228790712022-06-27 20:19:101030 days ago1656361150IN
Superfluid Finance: Brightx Token
0 xDAI0.000476422.5
Downgrade228512992022-06-26 3:24:451032 days ago1656213885IN
Superfluid Finance: Brightx Token
0 xDAI0.000476422.5
Downgrade228262242022-06-24 14:30:001033 days ago1656081000IN
Superfluid Finance: Brightx Token
0 xDAI0.00051922.5
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
207835832022-02-23 9:31:551155 days ago1645608715  Contract Creation0 xDAI
Loading...
Loading

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

Contract Name:
UUPSProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

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

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


/**
 * @dev 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.7.6;

/**
 * @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

pragma solidity >=0.6.0 <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 internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        // solhint-disable-next-line no-inline-assembly
        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 overriden 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 internall 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 overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {
    }
}

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

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f61006c565b005b61002f61006c565b34801561004557600080fd5b5061002f6004803603602081101561005c57600080fd5b50356001600160a01b0316610086565b610074610084565b61008461007f610152565b610161565b565b6001600160a01b0381166100e1576040805162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60006100eb610185565b6001600160a01b031614610146576040805162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a65640000604482015290519081900360640190fd5b61014f816101aa565b50565b600061015c610185565b905090565b3660008037600080366000845af43d6000803e808015610180573d6000f35b3d6000fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5556fea2646970667358221220284abb19f20211854e5d4a827da559887f1d063cdbfc1f0d68d77e2a0707eba864736f6c63430007060033

Block Transaction Gas Used Reward
view all blocks validated

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

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