POL Price: $0.452987 (+3.75%)
 

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
Upgrade669912112025-01-22 3:09:0122 mins ago1737515341IN
Superfluid Finance: AGOLD Token
0 POL0.0039683458.18096888
Upgrade669909182025-01-22 2:58:3932 mins ago1737514719IN
Superfluid Finance: AGOLD Token
0 POL0.0054785864.22199885
Upgrade669908202025-01-22 2:55:1136 mins ago1737514511IN
Superfluid Finance: AGOLD Token
0 POL0.0046312463.43568034
Upgrade669907692025-01-22 2:53:2337 mins ago1737514403IN
Superfluid Finance: AGOLD Token
0 POL0.0045935267.34677106
Upgrade669905702025-01-22 2:46:1945 mins ago1737513979IN
Superfluid Finance: AGOLD Token
0 POL0.0057690667.62708444
Upgrade669903262025-01-22 2:37:4153 mins ago1737513461IN
Superfluid Finance: AGOLD Token
0 POL0.0042953662.97540513
Upgrade669901782025-01-22 2:32:2758 mins ago1737513147IN
Superfluid Finance: AGOLD Token
0 POL0.0038651356.66768097
Upgrade669900062025-01-22 2:26:211 hr ago1737512781IN
Superfluid Finance: AGOLD Token
0 POL0.0036643453.72383929
Upgrade669898492025-01-22 2:20:421 hr ago1737512442IN
Superfluid Finance: AGOLD Token
0 POL0.0044251364.87808431
Transfer669896162025-01-22 2:12:281 hr ago1737511948IN
Superfluid Finance: AGOLD Token
0 POL0.0114473155.37324727
Transfer669895952025-01-22 2:11:421 hr ago1737511902IN
Superfluid Finance: AGOLD Token
0 POL0.01116158.85672861
Upgrade669894172025-01-22 2:05:241 hr ago1737511524IN
Superfluid Finance: AGOLD Token
0 POL0.0041739761.19563469
Transfer669892402025-01-22 1:59:081 hr ago1737511148IN
Superfluid Finance: AGOLD Token
0 POL0.0140573174.13021993
Upgrade669890362025-01-22 1:51:491 hr ago1737510709IN
Superfluid Finance: AGOLD Token
0 POL0.0068568580.37857687
Transfer669889552025-01-22 1:48:571 hr ago1737510537IN
Superfluid Finance: AGOLD Token
0 POL0.0183992197.02692689
Transfer669882302025-01-22 1:22:452 hrs ago1737508965IN
Superfluid Finance: AGOLD Token
0 POL0.0128817467.93095685
Upgrade669881522025-01-22 1:19:592 hrs ago1737508799IN
Superfluid Finance: AGOLD Token
0 POL0.00558365.4459915
Upgrade669880532025-01-22 1:16:292 hrs ago1737508589IN
Superfluid Finance: AGOLD Token
0 POL0.0039791258.33896504
Upgrade669880242025-01-22 1:15:272 hrs ago1737508527IN
Superfluid Finance: AGOLD Token
0 POL0.0042653550
Upgrade669878392025-01-22 1:08:532 hrs ago1737508133IN
Superfluid Finance: AGOLD Token
0 POL0.0034109550
Upgrade669877292025-01-22 1:05:012 hrs ago1737507901IN
Superfluid Finance: AGOLD Token
0 POL0.0037916655.58081876
Transfer669875652025-01-22 0:59:112 hrs ago1737507551IN
Superfluid Finance: AGOLD Token
0 POL0.02175863114.78675151
Transfer669875532025-01-22 0:58:472 hrs ago1737507527IN
Superfluid Finance: AGOLD Token
0 POL0.02479611130.81085019
Upgrade669874052025-01-22 0:53:032 hrs ago1737507183IN
Superfluid Finance: AGOLD Token
0 POL0.0047555269.70962847
Transfer669874032025-01-22 0:52:592 hrs ago1737507179IN
Superfluid Finance: AGOLD Token
0 POL0.0136345671.90089245
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
385954712023-01-27 17:43:07725 days ago1674841387  Contract Creation0 POL
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe88F7C01...E62814670
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 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.