Source Code
Overview
ETH Balance
0.0102368114 ETH
Token Holdings
More Info
ContractCreator
Multichain Info
N/A
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 4824742 | 76 days ago | IN | 0.01 ETH | 0.00000239 | ||||
Upgrade To | 4824241 | 76 days ago | IN | 0 ETH | 0.00000246 | ||||
Upgrade To | 4808027 | 76 days ago | IN | 0 ETH | 0.00000252 | ||||
Upgrade To | 4804985 | 76 days ago | IN | 0 ETH | 0.00000252 | ||||
Upgrade To | 4802602 | 76 days ago | IN | 0 ETH | 0.00000275 | ||||
Upgrade To | 4794634 | 77 days ago | IN | 0 ETH | 0.00000247 | ||||
Upgrade To | 4789914 | 77 days ago | IN | 0 ETH | 0.00000289 | ||||
Transfer | 4788364 | 77 days ago | IN | 0.00029 ETH | 0.0000023 | ||||
Initialize | 4788362 | 77 days ago | IN | 0 ETH | 0.00000358 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | Age | From | To | Amount | |
---|---|---|---|---|---|---|
4824742 | 76 days ago | 0 ETH | ||||
4824742 | 76 days ago | 0.01 ETH | ||||
4824742 | 76 days ago | 0.01 ETH | ||||
4824241 | 76 days ago | 0 ETH | ||||
4824241 | 76 days ago | 0 ETH | ||||
4824241 | 76 days ago | 0 ETH | ||||
4824241 | 76 days ago | 0 ETH | ||||
4824241 | 76 days ago | 0 ETH | ||||
4824241 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0.0000065 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808050 | 76 days ago | 0 ETH | ||||
4808027 | 76 days ago | 0 ETH | ||||
4808027 | 76 days ago | 0 ETH | ||||
4808027 | 76 days ago | 0 ETH | ||||
4808027 | 76 days ago | 0 ETH | ||||
4808027 | 76 days ago | 0 ETH | ||||
4808027 | 76 days ago | 0 ETH | ||||
4804985 | 76 days ago | 0 ETH |
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.
Contract Source Code Verified (Exact Match)
Contract Name:
UUPSProxy
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
123456789101112// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";/*** @title UUPSProxy* @notice A minimal proxy contract for UUPS upgrades.*/contract UUPSProxy is ERC1967Proxy {constructor(address implementation) ERC1967Proxy(implementation, "") {}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)pragma solidity ^0.8.0;import "../Proxy.sol";import "./ERC1967Upgrade.sol";/*** @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an* implementation address that can be changed. This address is stored in storage in the location specified by* https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the* implementation behind the proxy.*/contract ERC1967Proxy is Proxy, ERC1967Upgrade {/*** @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.** If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded* function call, and allows initializating the storage of the proxy like a Solidity constructor.*/constructor(address _logic, bytes memory _data) payable {assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));_upgradeToAndCall(_logic, _data, false);}
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)pragma solidity ^0.8.2;import "../beacon/IBeacon.sol";import "../../interfaces/draft-IERC1822.sol";import "../../utils/Address.sol";import "../../utils/StorageSlot.sol";/*** @dev This abstract contract provides getters and event emitting update functions for* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.** _Available since v4.1._** @custom:oz-upgrades-unsafe-allow delegatecall*/abstract contract ERC1967Upgrade {// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;/*** @dev Storage slot with the address of the current implementation.* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is* validated in the constructor.
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)pragma solidity ^0.8.0;/*** @dev This is the interface that {BeaconProxy} expects of its beacon.*/interface IBeacon {/*** @dev Must return an address that can be used as a delegate call target.** {BeaconProxy} will check that this address is a contract.*/function implementation() external view returns (address);}
1234567891011121314151617181920// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)pragma solidity ^0.8.0;/*** @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified* proxy whose upgrades are fully controlled by the current implementation.*/interface IERC1822Proxiable {/*** @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation* address.** IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this* function revert if invoked through a proxy.*/function proxiableUUID() external view returns (bytes32);}
1234567891011121314151617181920212223242526// 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;* }
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
12345678910111213141516171819202122{"evmVersion": "paris","optimizer": {"enabled": true,"mode": "3"},"outputSelection": {"*": {"*": ["abi","metadata"],"": ["ast"]}},"detectMissingLibraries": false,"forceEVMLA": false,"enableEraVMExtensions": false,"libraries": {}}
Contract ABI
API[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010000894bdf0044cf7b435bdca79864dfa411011ad1590ec96cf00fdb8dc8290000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002000000000000000000000000014b174e50903d2c99af2d301f07998cd9f36f62a
Deployed Bytecode
0x0002000000000002000500000000000200000060031002700000006f0330019700010000003103550000008004000039000000400040043f00000001002001900000001d0000c13d000000000431034f0000007602000041000000000202041a0000007202200197000000000003004b000000420000c13d0000000001000414000000040020008c000000730000c13d000000000100003100000087021001980000001f0310018f000000650000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000000180000c13d000000650000013d0000000002000416000000000002004b000000400000c13d0000001f0230003900000070022001970000008002200039000000400020043f0000001f0430018f000000710530019800000080025000390000002e0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000002a0000c13d000000000004004b0000003b0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200030008c000000400000413d000000800200043d000000720020009c000000bb0000a13d0000000001000019000001bb000104300000001f0630018f00000071053001980000004b0000613d000000000701034f0000000008000019000000007907043c0000000008980436000000000058004b000000470000c13d000000000006004b000000580000613d000000000151034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000001000414000000040020008c000000970000c13d000000000100003100000087021001980000001f0310018f000000650000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000000610000c13d000000000003004b000000930000613d000000000424034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000000930000013d0000006f0010009c0000006f01008041000000c00110021001b901b40000040f000100000001035500000060031002700000001f0530018f0000006f0030019d0000007104300198000000830000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000007f0000c13d000000000005004b000000900000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006f013001970000000100200190000000b90000613d0000006f0010009c0000006f010080410000006001100210000001ba0001042e00000060033002100000006f0010009c0000006f01008041000000c001100210000000000131019f01b901b40000040f000100000001035500000060031002700000001f0530018f0000006f0030019d0000007104300198000000a90000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000000a50000c13d000000000005004b000000b60000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006f013001970000000100200190000000930000c13d0000006001100210000001bb00010430000000400300043d000000730030009c000000c40000a13d0000008501000041000000000010043f0000004101000039000000040010043f0000008601000041000001bb000104300000002001300039000300000001001d000000400010043f000400000003001d000000000003043500000074010000410000000000100443000500000002001d000000040020044300000000010004140000006f0010009c0000006f01008041000000c00110021000000075011001c7000080020200003901b901af0000040f0000000100200190000001300000613d000000000101043b000000000001004b000000ed0000c13d000000400100043d00000064021000390000008303000041000000000032043500000044021000390000008403000041000000000032043500000024021000390000002d0300003900000000003204350000007e0200004100000000002104350000000402100039000000200300003900000000003204350000006f0010009c0000006f01008041000000400110021000000081011001c7000001bb00010430000000050100002900000072051001970000007601000041000000000201041a0000007702200197000000000252019f000000000021041b00000000010004140000006f0010009c0000006f01008041000000c00110021000000078011001c70000800d020000390000000203000039000000790400004101b901aa0000040f00000005040000290000000100200190000000400000613d00000004010000290000000001010433000000000001004b000001090000c13d0000002001000039000001000010044300000120000004430000008201000041000001ba0001042e000000400300043d0000007a0030009c000000be0000213d0000006001300039000000400010043f00000040013000390000007b0200004100000000002104350000002701000039000100000003001d00000000021304360000007c01000041000200000002001d000000000012043500000074010000410000000000100443000000040040044300000000010004140000006f0010009c0000006f01008041000000c00110021000000075011001c7000080020200003901b901af0000040f0000000100200190000001300000613d000000000101043b000000000001004b000001310000c13d000000400100043d00000064021000390000007f03000041000000000032043500000044021000390000008003000041000000000032043500000024021000390000002603000039000000e20000013d000000000001042f0000000401000029000000000401043300000000010004140000000502000029000000040020008c0000013a0000c13d000000010200003900000000030000310000014c0000013d00000003030000290000006f0030009c0000006f0300804100000040033002100000006f0040009c0000006f040080410000006004400210000000000334019f0000006f0010009c0000006f01008041000000c001100210000000000113019f01b901b40000040f000000010220018f000100000001035500000060011002700000006f0010019d0000006f03100197000000000003004b000001780000c13d0000006001000039000000800a000039000000000002004b000001040000c13d0000000001010433000000000001004b000001a10000c13d000000400100043d0000007e02000041000000000021043500000004021000390000002003000039000000000032043500000001020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b00000002070000290000016b0000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000001640000413d0000001f0420003900000087044001970000000002320019000000000002043500000044024000390000006f0020009c0000006f0200804100000060022002100000006f0010009c0000006f010080410000004001100210000000000112019f000001bb000104300000001f0130003900000087011001970000003f011000390000008705100197000000400100043d0000000005510019000000000015004b000000000600003900000001060040390000007d0050009c000000be0000213d0000000100600190000000be0000c13d000000400050043f000000000631043600000087043001980000001f0530018f000000000a06001900000000034600190000000106000367000001930000613d000000000706034f00000000080a0019000000007907043c0000000008980436000000000038004b0000018f0000c13d000000000005004b000001500000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000001500000013d0000006f00a0009c0000006f0a0080410000004002a002100000006f0010009c0000006f010080410000006001100210000000000121019f000001bb00010430000000000001042f000001ad002104210000000102000039000000000001042d0000000002000019000000000001042d000001b2002104230000000102000039000000000001042d0000000002000019000000000001042d000001b7002104250000000102000039000000000001042d0000000002000019000000000001042d000001b900000432000001ba0001042e000001bb0001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffdf1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c000000000000000000000000000000000000000000000000ffffffffffffffff08c379a0000000000000000000000000000000000000000000000000000000006e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f000000000000000000000000000000000000008400000000000000000000000000000002000000000000000000000000000000400000010000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09eeb9adec2ed2f7a669617cd19575080ed2f473bf90b97766c8c688fbecb8e55
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000014b174e50903d2c99af2d301f07998cd9f36f62a
-----Decoded View---------------
Arg [0] : implementation (address): 0x14b174e50903d2c99aF2d301F07998cd9f36F62a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000014b174e50903d2c99af2d301f07998cd9f36f62a
Loading...
Loading
Loading...
Loading
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.