xDAI Price: $1.00 (-0.00%)
Gas: 1 GWei

Contract

0x2dFe937cD98Ab92e59cF3139138f18c823a4efE7
Transaction Hash
Method
Block
From
To
Call Agreement396293212025-04-18 21:19:404 days ago1745011180IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement395016162025-04-11 8:47:2512 days ago1744361245IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement393950052025-04-05 1:42:3018 days ago1743817350IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement393274682025-04-01 1:52:3522 days ago1743472355IN
Superfluid: Host
0 xDAI0.000342731
Call Agreement392174722025-03-25 13:19:3028 days ago1742908770IN
Superfluid: Host
0 xDAI0.000335351
Call Agreement391091752025-03-19 4:05:5535 days ago1742357155IN
Superfluid: Host
0 xDAI0.000409441
Call Agreement391003772025-03-18 15:37:2035 days ago1742312240IN
Superfluid: Host
0 xDAI0.000345221
Call Agreement390994322025-03-18 14:17:2035 days ago1742307440IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement390301352025-03-14 12:18:0539 days ago1741954685IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement389976052025-03-12 14:19:0041 days ago1741789140IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement389387212025-03-09 2:46:5045 days ago1741488410IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement389104842025-03-07 10:33:5046 days ago1741343630IN
Superfluid: Host
0 xDAI0.000345231
Call Agreement388789882025-03-05 13:57:0048 days ago1741183020IN
Superfluid: Host
0 xDAI0.000345231
Call Agreement387927782025-02-28 11:49:4553 days ago1740743385IN
Superfluid: Host
0 xDAI0.000003350.00999999
Call Agreement387763062025-02-27 12:16:1554 days ago1740658575IN
Superfluid: Host
0 xDAI0.000299221.5
Call Agreement387763042025-02-27 12:16:0554 days ago1740658565IN
Superfluid: Host
0 xDAI0.000292811.5
Call Agreement387763022025-02-27 12:15:5554 days ago1740658555IN
Superfluid: Host
0 xDAI0.000173841.5
Call Agreement387763002025-02-27 12:15:4554 days ago1740658545IN
Superfluid: Host
0 xDAI0.000293191.5
Call Agreement387762982025-02-27 12:15:3554 days ago1740658535IN
Superfluid: Host
0 xDAI0.000174011.5
Call Agreement387378842025-02-25 5:50:4557 days ago1740462645IN
Superfluid: Host
0 xDAI0.000362331
Call Agreement387179102025-02-24 1:29:0058 days ago1740360540IN
Superfluid: Host
0 xDAI0.000335351
Call Agreement387081852025-02-23 11:32:5058 days ago1740310370IN
Superfluid: Host
0 xDAI0.000335351
Batch Call386960152025-02-22 18:07:2559 days ago1740247645IN
Superfluid: Host
1 xDAI0.000372581.1
Call Agreement386533112025-02-20 4:49:5062 days ago1740026990IN
Superfluid: Host
0 xDAI0.000344011.02582879
Call Agreement386140362025-02-17 20:30:4564 days ago1739824245IN
Superfluid: Host
0 xDAI0.000362331
View all transactions

Latest 7 internal transactions

Parent Transaction Hash Block From To
393560792025-04-02 18:33:2520 days ago1743618805
Superfluid: Host
1 xDAI
393560792025-04-02 18:33:2520 days ago1743618805
Superfluid: Host
1 xDAI
386960152025-02-22 18:07:2559 days ago1740247645
Superfluid: Host
1 xDAI
320942112024-01-23 21:39:10455 days ago1706045950
Superfluid: Host
 Contract Creation0 xDAI
148291032021-03-03 16:51:101511 days ago1614790270
Superfluid: Host
 Contract Creation0 xDAI
148291002021-03-03 16:50:551511 days ago1614790255
Superfluid: Host
 Contract Creation0 xDAI
148290982021-03-03 16:50:451511 days ago1614790245
Superfluid: Host
 Contract Creation0 xDAI
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UUPSProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at gnosisscan.io on 2022-08-04
*/

// SPDX-License-Identifier: AGPLv3

// File: contracts/upgradability/UUPSUtils.sol

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: @openzeppelin/contracts/proxy/Proxy.sol


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 {
    }
}

// File: contracts/upgradability/UUPSProxy.sol

pragma solidity 0.7.6;




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

}

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"}]

608060405234801561001057600080fd5b50610204806100206000396000f3fe6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f61006c565b005b61002f61006c565b34801561004557600080fd5b5061002f6004803603602081101561005c57600080fd5b50356001600160a01b0316610086565b610074610084565b61008461007f610152565b610161565b565b6001600160a01b0381166100e1576040805162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60006100eb610185565b6001600160a01b031614610146576040805162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a65640000604482015290519081900360640190fd5b61014f816101aa565b50565b600061015c610185565b905090565b3660008037600080366000845af43d6000803e808015610180573d6000f35b3d6000fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5556fea2646970667358221220def9e96c76267c22d0df30c76bda6df594540b1fa0c7c6892dd14e23ee3719a864736f6c63430007060033

Deployed Bytecode

0x6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f61006c565b005b61002f61006c565b34801561004557600080fd5b5061002f6004803603602081101561005c57600080fd5b50356001600160a01b0316610086565b610074610084565b61008461007f610152565b610161565b565b6001600160a01b0381166100e1576040805162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60006100eb610185565b6001600160a01b031614610146576040805162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a65640000604482015290519081900360640190fd5b61014f816101aa565b50565b600061015c610185565b905090565b3660008037600080366000845af43d6000803e808015610180573d6000f35b3d6000fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5556fea2646970667358221220def9e96c76267c22d0df30c76bda6df594540b1fa0c7c6892dd14e23ee3719a864736f6c63430007060033

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.