POL Price: $0.231214 (-0.42%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Merkle Tree320352762022-08-18 14:14:23952 days ago1660832063IN
0x61c9CcB6...6EAEa953A
0 POL0.0035170549.52901248
Claim319650752022-08-16 17:33:34953 days ago1660671214IN
0x61c9CcB6...6EAEa953A
0 POL0.0056736230.00190291
Set Merkle Tree319632522022-08-16 16:26:32953 days ago1660667192IN
0x61c9CcB6...6EAEa953A
0 POL0.0025645736.10955527
Claim319615502022-08-16 15:21:34953 days ago1660663294IN
0x61c9CcB6...6EAEa953A
0 POL0.008214840
Set Merkle Tree319612522022-08-16 15:11:18953 days ago1660662678IN
0x61c9CcB6...6EAEa953A
0 POL0.002135630.06966685
Claim317294182022-08-10 10:53:34960 days ago1660128814IN
0x61c9CcB6...6EAEa953A
0 POL0.008219439
Set Merkle Tree317286252022-08-10 10:20:54960 days ago1660126854IN
0x61c9CcB6...6EAEa953A
0 POL0.0022052131.04970003
Claim316268502022-08-07 14:52:36962 days ago1659883956IN
0x61c9CcB6...6EAEa953A
0 POL0.007900237
Claim314733772022-08-03 13:04:16967 days ago1659531856IN
0x61c9CcB6...6EAEa953A
0 POL0.02332256109.26219747
Claim314581772022-08-03 3:47:22967 days ago1659498442IN
0x61c9CcB6...6EAEa953A
0 POL0.0213489100
Claim314580692022-08-03 3:43:38967 days ago1659498218IN
0x61c9CcB6...6EAEa953A
0 POL0.02220389104
Claim313922572022-08-01 11:50:16969 days ago1659354616IN
0x61c9CcB6...6EAEa953A
0 POL0.0089653642
Claim312342352022-07-28 11:23:37973 days ago1659007417IN
0x61c9CcB6...6EAEa953A
0 POL0.0083256839
Claim312094622022-07-27 20:03:26973 days ago1658952206IN
0x61c9CcB6...6EAEa953A
0 POL0.0143020267
Set Merkle Tree312044062022-07-27 17:07:25973 days ago1658941645IN
0x61c9CcB6...6EAEa953A
0 POL0.0023907333.66191642
Set Merkle Tree311959012022-07-27 12:03:52974 days ago1658923432IN
0x61c9CcB6...6EAEa953A
0 POL0.0021306630.00000016
Claim311876682022-07-27 6:59:01974 days ago1658905141IN
0x61c9CcB6...6EAEa953A
0 POL0.0091809743
Claim309848292022-07-21 18:51:43979 days ago1658429503IN
0x61c9CcB6...6EAEa953A
0 POL0.0083261439
Claim309841132022-07-21 18:20:47979 days ago1658427647IN
0x61c9CcB6...6EAEa953A
0 POL0.0072583534
Claim309724702022-07-21 10:54:50980 days ago1658400890IN
0x61c9CcB6...6EAEa953A
0 POL0.0106220349.74189056
Claim309722422022-07-21 10:43:42980 days ago1658400222IN
0x61c9CcB6...6EAEa953A
0 POL0.0078979837
Claim309382032022-07-20 13:36:07981 days ago1658324167IN
0x61c9CcB6...6EAEa953A
0 POL0.0147323969
Set Merkle Tree309331872022-07-20 10:35:06981 days ago1658313306IN
0x61c9CcB6...6EAEa953A
0 POL0.0021379830.10308502
Claim308904082022-07-19 7:59:01982 days ago1658217541IN
0x61c9CcB6...6EAEa953A
0 POL0.0100339847
Claim308761492022-07-18 22:35:25982 days ago1658183725IN
0x61c9CcB6...6EAEa953A
0 POL0.0179313984
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
290014652022-05-31 18:03:171030 days ago1654020197  Contract Creation0 POL
Loading...
Loading

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

Contract Name:
AppProxy

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
File 1 of 4 : AppProxy.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.12;

import "@openzeppelin/contracts/proxy/Proxy.sol";
import "./UpgradeableApp.sol";

contract AppProxy is Proxy, UpgradeableApp {
    uint256[100] private __gap;

    constructor(address implementation_) {
        _getImplementationSlot().value = implementation_;
    }

    function _implementation() internal view override returns (address) {
        return _getImplementationSlot().value;
    }
}

File 2 of 4 : Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 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 3 of 4 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly {
            r.slot := slot
        }
    }
}

File 4 of 4 : UpgradeableApp.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.12;

import "@openzeppelin/contracts/utils/StorageSlot.sol";

contract UpgradeableApp {
    bytes32 private constant _IMPLEMENTATION_SLOT =
        bytes32(uint256(keccak256("co.superdao.app.proxy.implementation")) - 1);

    uint256[100] private __gap;

    function _getImplementationSlot() internal pure returns (StorageSlot.AddressSlot storage) {
        return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT);
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x608060405236601057600e6013565b005b600e5b601f601b6024565b603b565b565b90565b6000602c605e565b546001600160a01b0316919050565b3660008037600080366000845af43d6000803e8080156059573d6000f35b3d6000fd5b6000608b602160017f797d7c7d0df25d67e029b044c5bcb2b89d68f6483382b5f85e64485950ed88d16090565b905090565b60008282101560af57634e487b7160e01b600052601160045260246000fd5b50039056fea2646970667358221220259264f29009bd0a6fc7e41f706eb552cd0ba80d6788e0f900544d855cc3072364736f6c634300080c0033

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.