POL Price: $0.618406 (-4.10%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve654179032024-12-13 4:00:1713 hrs ago1734062417IN
Superfluid: USDCx Token
0 POL0.0017142650.01355917
Downgrade653363692024-12-11 3:27:262 days ago1733887646IN
Superfluid: USDCx Token
0 POL0.0069332330.73966051
Downgrade652458672024-12-08 21:09:344 days ago1733692174IN
Superfluid: USDCx Token
0 POL0.0068620430.42400001
Transfer652123942024-12-08 0:35:515 days ago1733618151IN
Superfluid: USDCx Token
0 POL0.005744131.04970009
Downgrade652122732024-12-08 0:31:035 days ago1733617863IN
Superfluid: USDCx Token
0 POL0.0069704230.90453974
Downgrade651845452024-12-07 7:33:336 days ago1733556813IN
Superfluid: USDCx Token
0 POL0.0080077432.99999999
Downgrade651786262024-12-07 3:57:276 days ago1733543847IN
Superfluid: USDCx Token
0 POL0.005725225.99091555
Downgrade651771952024-12-07 3:01:256 days ago1733540485IN
Superfluid: USDCx Token
0 POL0.0063298626.08670894
Downgrade651652762024-12-06 19:42:006 days ago1733514120IN
Superfluid: USDCx Token
0 POL0.0071493730.11669623
Approve651430092024-12-06 6:24:077 days ago1733466247IN
Superfluid: USDCx Token
0 POL0.0026975652.54309106
Downgrade651394302024-12-06 4:14:077 days ago1733458447IN
Superfluid: USDCx Token
0 POL0.007009431.07568735
Downgrade651340682024-12-06 1:01:267 days ago1733446886IN
Superfluid: USDCx Token
0 POL0.02429342100.1183792
Downgrade651267092024-12-05 20:35:417 days ago1733430941IN
Superfluid: USDCx Token
0 POL0.02859665129.8142824
Downgrade651119432024-12-05 11:46:248 days ago1733399184IN
Superfluid: USDCx Token
0 POL0.0112974746.5592852
Downgrade651116932024-12-05 11:37:298 days ago1733398649IN
Superfluid: USDCx Token
0 POL0.0123888451.0570776
Downgrade650993872024-12-05 4:21:058 days ago1733372465IN
Superfluid: USDCx Token
0 POL0.02612033115.80885512
Approve650986162024-12-05 3:53:408 days ago1733370820IN
Superfluid: USDCx Token
0 POL0.00489532166.68898173
Approve650668332024-12-04 9:00:419 days ago1733302841IN
Superfluid: USDCx Token
0 POL0.0014943550.88385664
Downgrade650315702024-12-03 11:57:3310 days ago1733227053IN
Superfluid: USDCx Token
0 POL0.0133121459.00877513
Downgrade650309682024-12-03 11:36:1210 days ago1733225772IN
Superfluid: USDCx Token
0 POL0.0157854169.96459149
Downgrade650302252024-12-03 11:09:4510 days ago1733224185IN
Superfluid: USDCx Token
0 POL0.02465304109.26799946
Approve650216572024-12-03 6:01:1110 days ago1733205671IN
Superfluid: USDCx Token
0 POL0.0046986291.49842183
Approve650210282024-12-03 5:38:5210 days ago1733204332IN
Superfluid: USDCx Token
0 POL0.0020505969.8240022
Approve650162462024-12-03 2:43:5810 days ago1733193838IN
Superfluid: USDCx Token
0 POL0.0010876637.03562099
Approve649941082024-12-02 13:13:0911 days ago1733145189IN
Superfluid: USDCx Token
0 POL0.0036366470.83460212
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
121228412021-03-17 10:29:041367 days ago1615976944  Contract Creation0 POL
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x6EeE6060...1dEdF074C
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.7.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 {
        // 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 virtual view 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 {
        _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 {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive () external payable {
        _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",
        "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

0x6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f61006c565b005b61002f61006c565b34801561004557600080fd5b5061002f6004803603602081101561005c57600080fd5b50356001600160a01b0316610086565b610074610084565b61008461007f610152565b610161565b565b6001600160a01b0381166100e1576040805162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60006100eb610185565b6001600160a01b031614610146576040805162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a65640000604482015290519081900360640190fd5b61014f816101aa565b50565b600061015c610185565b905090565b3660008037600080366000845af43d6000803e808015610180573d6000f35b3d6000fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5556fea264697066735822122003d023f818dd06dbe16fe841c9ddd137d6b3a10f7bb48dd2cc51aae85d31637d64736f6c63430007060033

Block Transaction 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
[ 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.