Overview
POL Balance
POL Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,272 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Merkle Tree | 32035276 | 952 days ago | IN | 0 POL | 0.00351705 | ||||
Claim | 31965075 | 953 days ago | IN | 0 POL | 0.00567362 | ||||
Set Merkle Tree | 31963252 | 953 days ago | IN | 0 POL | 0.00256457 | ||||
Claim | 31961550 | 953 days ago | IN | 0 POL | 0.0082148 | ||||
Set Merkle Tree | 31961252 | 953 days ago | IN | 0 POL | 0.0021356 | ||||
Claim | 31729418 | 960 days ago | IN | 0 POL | 0.0082194 | ||||
Set Merkle Tree | 31728625 | 960 days ago | IN | 0 POL | 0.00220521 | ||||
Claim | 31626850 | 962 days ago | IN | 0 POL | 0.0079002 | ||||
Claim | 31473377 | 967 days ago | IN | 0 POL | 0.02332256 | ||||
Claim | 31458177 | 967 days ago | IN | 0 POL | 0.0213489 | ||||
Claim | 31458069 | 967 days ago | IN | 0 POL | 0.02220389 | ||||
Claim | 31392257 | 969 days ago | IN | 0 POL | 0.00896536 | ||||
Claim | 31234235 | 973 days ago | IN | 0 POL | 0.00832568 | ||||
Claim | 31209462 | 973 days ago | IN | 0 POL | 0.01430202 | ||||
Set Merkle Tree | 31204406 | 973 days ago | IN | 0 POL | 0.00239073 | ||||
Set Merkle Tree | 31195901 | 974 days ago | IN | 0 POL | 0.00213066 | ||||
Claim | 31187668 | 974 days ago | IN | 0 POL | 0.00918097 | ||||
Claim | 30984829 | 979 days ago | IN | 0 POL | 0.00832614 | ||||
Claim | 30984113 | 979 days ago | IN | 0 POL | 0.00725835 | ||||
Claim | 30972470 | 980 days ago | IN | 0 POL | 0.01062203 | ||||
Claim | 30972242 | 980 days ago | IN | 0 POL | 0.00789798 | ||||
Claim | 30938203 | 981 days ago | IN | 0 POL | 0.01473239 | ||||
Set Merkle Tree | 30933187 | 981 days ago | IN | 0 POL | 0.00213798 | ||||
Claim | 30890408 | 982 days ago | IN | 0 POL | 0.01003398 | ||||
Claim | 30876149 | 982 days ago | IN | 0 POL | 0.01793139 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
29001465 | 1030 days ago | Contract Creation | 0 POL |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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
Contract Source Code (Solidity Standard Json-Input format)
// 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; } }
// 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 {} }
// 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 } } }
// 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); } }
{ "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
- No Contract Security Audit Submitted- Submit Audit Here
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
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ 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.