More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 744 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 58162039 | 1 hr ago | IN | 0 ETH | 0.00000606 | ||||
Withdraw | 58116238 | 24 hrs ago | IN | 0 ETH | 0.00000646 | ||||
Withdraw | 58033426 | 2 days ago | IN | 0 ETH | 0.00000709 | ||||
Withdraw | 58024869 | 2 days ago | IN | 0 ETH | 0.00000716 | ||||
Withdraw | 58001514 | 3 days ago | IN | 0 ETH | 0.00000598 | ||||
Withdraw | 57962783 | 4 days ago | IN | 0 ETH | 0.00000765 | ||||
Withdraw | 57953127 | 4 days ago | IN | 0 ETH | 0.00000599 | ||||
Withdraw | 57892538 | 5 days ago | IN | 0 ETH | 0.00000596 | ||||
Withdraw | 57863539 | 6 days ago | IN | 0 ETH | 0.00000698 | ||||
Withdraw | 57852701 | 6 days ago | IN | 0 ETH | 0.00000606 | ||||
Withdraw | 57840660 | 6 days ago | IN | 0 ETH | 0.00000608 | ||||
Withdraw | 57798435 | 7 days ago | IN | 0 ETH | 0.00000598 | ||||
Withdraw | 57770814 | 8 days ago | IN | 0 ETH | 0.00000723 | ||||
Withdraw | 57724187 | 9 days ago | IN | 0 ETH | 0.0000064 | ||||
Withdraw | 57711543 | 9 days ago | IN | 0 ETH | 0.00000698 | ||||
Withdraw | 57692370 | 9 days ago | IN | 0 ETH | 0.00000597 | ||||
Withdraw | 57687110 | 9 days ago | IN | 0 ETH | 0.000006 | ||||
Withdraw | 57678258 | 10 days ago | IN | 0 ETH | 0.0000072 | ||||
Withdraw | 57657845 | 10 days ago | IN | 0 ETH | 0.00000937 | ||||
Withdraw | 57640507 | 10 days ago | IN | 0 ETH | 0.00000499 | ||||
Withdraw | 57639636 | 10 days ago | IN | 0 ETH | 0.00000596 | ||||
Withdraw | 57618344 | 11 days ago | IN | 0 ETH | 0.00000605 | ||||
Withdraw | 57557507 | 12 days ago | IN | 0 ETH | 0.00000719 | ||||
Finalize Deposit | 57523759 | 12 days ago | IN | 0 ETH | 0.0000803 | ||||
Withdraw | 57520927 | 12 days ago | IN | 0 ETH | 0.00000683 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17112606 | 518 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
OssifiableProxy
Compiler Version
v0.8.13+commit.abaa5c0e
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-FileCopyrightText: 2022 Lido <[email protected]> // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.13; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {StorageSlot} from "@openzeppelin/contracts/utils/StorageSlot.sol"; import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol"; /// @notice An ossifiable proxy contract. Extends the ERC1967Proxy contract by /// adding admin functionality contract OssifiableProxy is ERC1967Proxy { /// @dev Initializes the upgradeable proxy with the initial implementation and admin /// @param implementation_ Address of the implementation /// @param admin_ Address of the admin of the proxy /// @param data_ Data used in a delegate call to implementation. The delegate call will be /// skipped if the data is empty bytes constructor( address implementation_, address admin_, bytes memory data_ ) ERC1967Proxy(implementation_, data_) { _changeAdmin(admin_); } /// @notice Returns the current admin of the proxy function proxy__getAdmin() external view returns (address) { return _getAdmin(); } /// @notice Returns the current implementation address function proxy__getImplementation() external view returns (address) { return _implementation(); } /// @notice Returns whether the implementation is locked forever function proxy__getIsOssified() external view returns (bool) { return _getAdmin() == address(0); } /// @notice Allows to transfer admin rights to zero address and prevent future /// upgrades of the proxy function proxy__ossify() external onlyAdmin { address prevAdmin = _getAdmin(); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = address(0); emit AdminChanged(prevAdmin, address(0)); emit ProxyOssified(); } /// @notice Changes the admin of the proxy /// @param newAdmin_ Address of the new admin function proxy__changeAdmin(address newAdmin_) external onlyAdmin { _changeAdmin(newAdmin_); } /// @notice Upgrades the implementation of the proxy /// @param newImplementation_ Address of the new implementation function proxy__upgradeTo(address newImplementation_) external onlyAdmin { _upgradeTo(newImplementation_); } /// @notice Upgrades the proxy to a new implementation, optionally performing an additional /// setup call. /// @param newImplementation_ Address of the new implementation /// @param setupCalldata_ Data for the setup call. The call is skipped if setupCalldata_ is /// empty and forceCall_ is false /// @param forceCall_ Forces make delegate call to the implementation even with empty data_ function proxy__upgradeToAndCall( address newImplementation_, bytes memory setupCalldata_, bool forceCall_ ) external onlyAdmin { _upgradeToAndCall(newImplementation_, setupCalldata_, forceCall_); } /// @dev Validates that proxy is not ossified and that method is called by the admin /// of the proxy modifier onlyAdmin() { address admin = _getAdmin(); if (admin == address(0)) { revert ErrorProxyIsOssified(); } if (admin != msg.sender) { revert ErrorNotAdmin(); } _; } event ProxyOssified(); error ErrorNotAdmin(); error ErrorProxyIsOssified(); }
// 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); }
// 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); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } }
// 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 1 bytes32 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. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallUUPS( address newImplementation, bytes memory data, bool forceCall ) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } }
// 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 {} }
// 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); }
// 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 } } }
{ "compilerPath": "/Users/lazar/Library/Caches/hardhat-nodejs/compilers-v2/zksolc/zksolc-v1.3.13", "experimental": {}, "isSystem": true, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"data_","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ErrorNotAdmin","type":"error"},{"inputs":[],"name":"ErrorProxyIsOssified","type":"error"},{"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":[],"name":"ProxyOssified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"newAdmin_","type":"address"}],"name":"proxy__changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxy__getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxy__getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxy__getIsOssified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxy__ossify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation_","type":"address"}],"name":"proxy__upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation_","type":"address"},{"internalType":"bytes","name":"setupCalldata_","type":"bytes"},{"internalType":"bool","name":"forceCall_","type":"bool"}],"name":"proxy__upgradeToAndCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
3cda335100000000000000000000000000000000000000000000000000000000000000000100018f920764cfe852ac0676941a9839b27a0780dbc61a45997ddf6403d3960000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000012000000000000000000000000064ee90b086c99fd3439354f382fef25229a01f02000000000000000000000000139ee25dcad405d2a038e7a67f9ffdbf0f573f3c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000084f8c8765e00000000000000000000000041527b2d03844db6b0945f25702cb958b6d559890000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0000000000000000000000000703b52f2b28febcb60e1372858af5b18849fe86700000000000000000000000061ce1f6514c651c39964961db1948c6f70a4747a00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000300000000000200000000030100190000006003300270000001630430019700030000004103550002000000010355000001630030019d000100000000001f0000008001000039000000400010043f0000000101200190000000370000c13d0000000003000031000000040130008c000000aa0000413d0000000201000367000000000201043b000000e002200270000001690420009c000001150000a13d0000016a0420009c000001920000213d0000016d0420009c000002100000613d0000016e0220009c000000d90000c13d0000000001000416000000000101004b0000027a0000c13d000000040100008a00000000011000310000016502000041000000000301004b000000000300001900000000030240190000016501100197000000000401004b000000000200a019000001650110009c00000000010300190000000001026019000000000101004b0000027a0000c13d0000016801000041000000000101041a0000016601100197000000400200043d00000000001204350000016301000041000001630320009c000000000102401900000040011002100000017a011001c7000005880001042e0000000001000416000000000101004b0000027a0000c13d00000000010000310000001f03100039000000200200008a000000000523016f000000400300043d0000000004350019000000000554004b00000000050000190000000105004039000001640640009c000002040000213d0000000105500190000002040000c13d000000400040043f0000001f0410018f00000002050003670000000506100272000000550000613d000000000700001900000005087002100000000009830019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b0000004d0000413d000000000704004b000000640000613d0000000506600210000000000565034f00000000066300190000000304400210000000000706043300000000074701cf000000000747022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000474019f00000000004604350000016504000041000000600510008c000000000500001900000000050440190000016506100197000000000706004b000000000400a019000001650660009c000000000405c019000000000404004b0000027a0000c13d0000000049030434000001660590009c0000027a0000213d000000000a0404330000016604a0009c0000027a0000213d00000040043000390000000005040433000001640450009c0000027a0000213d000000000413001900000000013500190000001f031000390000016505000041000000000643004b0000000006000019000000000605801900000165033001970000016507400197000000000873004b0000000005008019000000000373013f000001650330009c00000000030600190000000003056019000000000303004b0000027a0000c13d0000000013010434000001640530009c000002040000213d0000003f05300039000000000225016f000000400700043d0000000002270019000000000572004b00000000050000190000000105004039000001640620009c000002040000213d0000000105500190000002040000c13d000000400020043f00000000023704360000000005130019000000000445004b0000027a0000213d000100000009001d00020000000a001d000300000007001d058702d20000040f000000010100002900000002020000290000000303000029058702e10000040f0000002001000039000001000010044300000120000004430000016701000041000005880001042e000000000103004b000000d80000c13d0000016801000041000000000201041a00000000010004140000016602200197000000040320008c000000f90000613d0000016303000041000001630410009c0000000001038019000000c001100210058705820000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d00000163044001970000000504400272000000c70000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000000c00000413d000000000503004b000000d50000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000001012001900000018f0000c13d0000020a0000013d00000002010003670000001f0430018f0000016802000041000000000202041a00000166022001970000000503300272000000e70000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b000000e00000413d000000000504004b000000f50000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000000010000310000000003000414000000040420008c000001660000c13d000000030100036700000001020000310000001f0320018f0000000502200272000001060000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b000000ff0000413d000000000403004b0000018f0000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f00000000001204350000018f0000013d0000016f0420009c0000022c0000613d000001700420009c000002450000613d000001710220009c000000d90000c13d0000000001000416000000000101004b0000027a0000c13d000000040100008a00000000011000310000016502000041000000200310008c000000000300001900000000030240190000016501100197000000000401004b000000000200a019000001650110009c00000000010300190000000001026019000000000101004b0000027a0000c13d00000004010000390000000201100367000000000401043b000001660140009c0000027a0000213d0000017401000041000000000501041a0000016603500198000002800000613d000000400100043d0000000002000411000000000323004b000002bf0000c13d000200000005001d00000020031000390000000000430435000000000021043500000163020000410000000003000414000300000004001d000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000176011001c70000800d0200003900000001030000390000017704000041058705780000040f000000030300002900000001012001900000027a0000613d000000000103004b000002c70000c13d000000400100043d00000064021000390000017d03000041000000000032043500000044021000390000017e0300004100000000003204350000002402100039000000260300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c700000589000104300000016304000041000001630530009c0000000003048019000001630510009c00000000010480190000006001100210000000c003300210000000000113019f058705820000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d000001630440019700000005044002720000017f0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000001780000413d000000000503004b0000018d0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000001012001900000020a0000613d000000600100003900000001011001ff000005880001042e0000016b0420009c000002690000613d0000016c0220009c000000d90000c13d0000000001000416000000000101004b0000027a0000c13d0000000002000031000000040120008a0000016503000041000000600410008c000000000400001900000000040340190000016501100197000000000501004b000000000300a019000001650110009c00000000010400190000000001036019000000000101004b0000027a0000c13d00000002030003670000000401300370000000000101043b000001660410009c0000027a0000213d0000002404300370000000000504043b000001640450009c0000027a0000213d00000023045000390000016506000041000000000724004b0000000007000019000000000706801900000165022001970000016504400197000000000824004b0000000006008019000000000224013f000001650220009c00000000020700190000000002066019000000000202004b0000027a0000c13d0000000402500039000000000223034f000000000302043b000001640230009c000002040000213d0000003f02300039000000200400008a000000000442016f000000400200043d0000000004420019000000000624004b00000000060000190000000106004039000001640740009c000002040000213d0000000106600190000002040000c13d000000400040043f0000000004320436000000240650003900000000056300190000000007000031000000000575004b0000027a0000213d0000001f0530018f00000002066003670000000507300272000001e40000613d00000000080000190000000509800210000000000a940019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b000001dc0000413d000000000805004b000001f30000613d0000000507700210000000000676034f00000000077400190000000305500210000000000807043300000000085801cf000000000858022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000585019f00000000005704350000000003340019000000000003043500000044030000390000000203300367000000000303043b000000000403004b0000000004000019000000010400c039000000000443004b0000027a0000c13d058704580000040f0000016301000041000000400200043d000001630320009c00000000010240190000004001100210000005880001042e000001720100004100000000001004350000004101000039000000040010043f0000017301000041000005890001043000000163010000410000000102000031000001630320009c0000000001024019000000600110021000000589000104300000000001000416000000000101004b0000027a0000c13d000000040100008a00000000011000310000016502000041000000000301004b000000000300001900000000030240190000016501100197000000000401004b000000000200a019000001650110009c00000000010300190000000001026019000000000101004b0000027a0000c13d0000017401000041000000000101041a0000016601100197000000400200043d00000000001204350000016301000041000001630320009c000000000102401900000040011002100000017a011001c7000005880001042e0000000001000416000000000101004b0000027a0000c13d000000040100008a00000000011000310000016502000041000000000301004b000000000300001900000000030240190000016501100197000000000401004b000000000200a019000001650110009c00000000010300190000000001026019000000000101004b0000027a0000c13d0000017401000041000000000101041a000001660110019800000000010000190000000101006039000000800010043f0000018201000041000005880001042e0000000001000416000000000101004b0000027a0000c13d000000040100008a00000000011000310000016502000041000000200310008c000000000300001900000000030240190000016501100197000000000401004b000000000200a019000001650110009c00000000010300190000000001026019000000000101004b0000027a0000c13d00000004010000390000000201100367000000000101043b000001660210009c0000027a0000213d0000017402000041000000000202041a0000016602200198000002800000613d0000000003000411000000000232004b000002b60000c13d058704160000040f0000016301000041000000400200043d000001630320009c00000000010240190000004001100210000005880001042e0000000001000416000000000101004b0000027a0000c13d000000040100008a00000000011000310000016502000041000000000301004b000000000300001900000000030240190000016501100197000000000401004b000000000200a019000001650110009c00000000010300190000000001026019000000000101004b0000027c0000613d000000000100001900000589000104300000017401000041000000000201041a0000016601200198000002890000c13d000000400100043d000001810200004100000000002104350000016302000041000001630310009c000000000102801900000040011002100000017c011001c700000589000104300000000003000411000000000331004b000002b60000c13d00000175022001970000017403000041000000000023041b000000400200043d0000000001120436000000000001043500000163010000410000000003000414000001630430009c0000000003018019000001630420009c00000000010240190000004001100210000000c002300210000000000112019f00000176011001c70000800d0200003900000001030000390000017704000041058705780000040f00000001012001900000027a0000613d000000400100043d00000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004002100210000000c001300210000300000002001d000000000121019f00000178011001c70000800d0200003900000001030000390000017904000041058705780000040f00000001012001900000027a0000613d0000000301000029000005880001042e000000400100043d0000017b0200004100000000002104350000016302000041000001630310009c000000000102801900000040011002100000017c011001c700000589000104300000017b0200004100000000002104350000016302000041000001630310009c000000000102801900000040011002100000017c011001c7000005890001043000000002010000290000017501100197000000000131019f0000017402000041000000000012041b0000016301000041000000400200043d000001630320009c00000000010240190000004001100210000005880001042e000000000403004b000002e00000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b000002d50000413d000000000134004b000002e00000a13d00000000012300190000000000010435000000000001042d0006000000000002000500000003001d000400000002001d00000183020000410000000000200439000600000001001d000000040010044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000184011001c700008002020000390587057d0000040f0000000102200190000003a50000613d000000000101043b000000000101004b000003ad0000613d000000060100002900000166051001970000016801000041000000000201041a0000017502200197000000000252019f000000000021041b000000400100043d00000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000178011001c70000800d0200003900000002030000390000018504000041058705780000040f0000000101200190000003a50000613d00000005010000290000000021010434000000000101004b000003810000613d000300000002001d000000400300043d000001860130009c000003a70000813d0000006001300039000000400010043f0000004001300039000001870200004100000000002104350000002701000039000200000003001d00000000021304360000018801000041000100000002001d0000000000120435000001830100004100000000001004390000000601000029000000040010044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000184011001c700008002020000390587057d0000040f0000000102200190000003a50000613d000000000101043b000000000101004b000003d70000613d0000000501000029000000000501043300000000010004140000000602000029000000040320008c0000033a0000c13d000000010200003900000001030000310000034f0000013d0000016303000041000001630450009c0000000004030019000000000405401900000060054002100000000306000029000001630460009c000000000403001900000000040640190000004004400210000000000545019f000001630410009c0000000001038019000000c001100210000000000115019f058705820000040f000000010220018f00030000000103550000006001100270000101630010019d00000163031001970000006001000039000000000403004b0000037f0000613d000001640130009c000003a70000213d0000003f01300039000000200400008a000000000441016f000000400100043d0000000004410019000000000514004b00000000050000190000000105004039000001640640009c000003a70000213d0000000105500190000003a70000c13d000000400040043f0000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000003700000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000003680000413d000000000705004b0000037f0000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000202004b000003ec0000613d0000017401000041000000000301041a00000004010000290000016604100197000000400100043d0000002002100039000600000004001d0000000000420435000500000003001d0000016602300197000000000021043500000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000176011001c70000800d0200003900000001030000390000017704000041058705780000040f0000000101200190000003a50000613d0000000602000029000000000102004b000003c20000613d00000005010000290000017501100197000000000121019f0000017402000041000000000012041b000000000001042d00000000010000190000058900010430000001720100004100000000001004350000004101000039000000040010043f00000173010000410000058900010430000000400100043d00000064021000390000018b03000041000000000032043500000044021000390000018c03000041000000000032043500000024021000390000002d0300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c70000058900010430000000400100043d00000064021000390000017d03000041000000000032043500000044021000390000017e0300004100000000003204350000002402100039000000260300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c70000058900010430000000400100043d00000064021000390000018903000041000000000032043500000044021000390000018a0300004100000000003204350000002402100039000000260300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c700000589000104300000000021010434000000000301004b0000040d0000c13d000000400400043d000600000004001d0000017f01000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d0000002401400039000000000031043500000044024000390000000101000029058702d20000040f00000005010000290000001f01100039000000200200008a000000000121016f00000044011000390000016302000041000001630310009c00000000010280190000000604000029000001630340009c000000000204401900000040022002100000006001100210000000000121019f00000589000104300000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000060011002100000004002200210000000000121019f0000058900010430000100000000000200000183020000410000000000200439000100000001001d000000040010044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000184011001c700008002020000390587057d0000040f0000000102200190000004410000613d000000000101043b000000000101004b000004430000613d000000010100002900000166051001970000016801000041000000000201041a0000017502200197000000000252019f000000000021041b000000400100043d00000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000178011001c70000800d0200003900000002030000390000018504000041058705780000040f0000000101200190000004410000613d000000000001042d00000000010000190000058900010430000000400100043d00000064021000390000018b03000041000000000032043500000044021000390000018c03000041000000000032043500000024021000390000002d0300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c700000589000104300004000000000002000300000002001d0000017402000041000000000202041a0000016604200198000005090000613d000200000003001d0000000002000411000000000224004b000005120000c13d00000183020000410000000000200439000400000001001d000000040010044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000184011001c700008002020000390587057d0000040f0000000102200190000005010000613d000000000101043b000000000101004b0000051b0000613d000000040100002900000166051001970000016801000041000000000201041a0000017502200197000000000252019f000000000021041b000000400100043d00000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000178011001c70000800d0200003900000002030000390000018504000041058705780000040f0000000101200190000005010000613d00000003010000290000000031010434000000020200002900000000012101a0000005000000613d000200000003001d000000400300043d000001860130009c000005030000813d0000006001300039000000400010043f0000004001300039000001870200004100000000002104350000002001300039000001880200004100000000002104350000002701000039000100000003001d0000000000130435000001830100004100000000001004390000000401000029000000040010044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000184011001c700008002020000390587057d0000040f0000000102200190000005010000613d000000000101043b000000000101004b000005300000613d0000000301000029000000000501043300000000010004140000000402000029000000040320008c000004b90000c13d00000001020000390000000103000031000004ce0000013d0000016303000041000001630450009c0000000004030019000000000405401900000060054002100000000206000029000001630460009c000000000403001900000000040640190000004004400210000000000545019f000001630410009c0000000001038019000000c001100210000000000115019f058705820000040f000000010220018f00030000000103550000006001100270000101630010019d00000163031001970000006001000039000000000403004b000004fe0000613d000001640130009c000005030000213d0000003f01300039000000200400008a000000000441016f000000400100043d0000000004410019000000000514004b00000000050000190000000105004039000001640640009c000005030000213d0000000105500190000005030000c13d000000400040043f0000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000004ef0000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000004e70000413d000000000705004b000004fe0000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000202004b000005450000613d000000000001042d00000000010000190000058900010430000001720100004100000000001004350000004101000039000000040010043f00000173010000410000058900010430000000400100043d000001810200004100000000002104350000016302000041000001630310009c000000000102801900000040011002100000017c011001c70000058900010430000000400100043d0000017b0200004100000000002104350000016302000041000001630310009c000000000102801900000040011002100000017c011001c70000058900010430000000400100043d00000064021000390000018b03000041000000000032043500000044021000390000018c03000041000000000032043500000024021000390000002d0300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c70000058900010430000000400100043d00000064021000390000018903000041000000000032043500000044021000390000018a0300004100000000003204350000002402100039000000260300003900000000003204350000017f0200004100000000002104350000000402100039000000200300003900000000003204350000016302000041000001630310009c0000000001028019000000400110021000000180011001c700000589000104300000000021010434000000000301004b0000056f0000c13d000000400100043d0000017f0200004100000000002104350000000402100039000000200300003900000000003204350000000102000029000000000202043300000024031000390000000000230435000000000302004b000005620000613d00000044031000390000000004000019000000010700002900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000005570000413d000000000424004b000005620000a13d000000000332001900000000000304350000001f02200039000000200300008a000000000232016f00000044022000390000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000040011002100000006002200210000000000112019f00000589000104300000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000060011002100000004002200210000000000121019f00000589000104300000057b002104210000000102000039000000000001042d0000000002000019000000000001042d00000580002104230000000102000039000000000001042d0000000002000019000000000001042d00000585002104250000000102000039000000000001042d0000000002000019000000000001042d0000058700000432000005880001042e00000589000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000200000000000000000000000000000040000001000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc00000000000000000000000000000000000000000000000000000000916f1fd600000000000000000000000000000000000000000000000000000000adcbc23600000000000000000000000000000000000000000000000000000000adcbc23700000000000000000000000000000000000000000000000000000000d2f6ed4d00000000000000000000000000000000000000000000000000000000916f1fd700000000000000000000000000000000000000000000000000000000ad729a710000000000000000000000000000000000000000000000000000000013351258000000000000000000000000000000000000000000000000000000003ebdd0eb00000000000000000000000000000000000000000000000000000000773f5be84e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0200000000000000000000000000000000000000000000000000000000000000158b204828f9326d9bb3c2be9336986c14911b4a72b93d1801f207aac3c68b9f0000000000000000000000000000000000000020000000000000000000000000d6ecd8b30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006464726573730000000000000000000000000000000000000000000000000000455243313936373a206e65772061646d696e20697320746865207a65726f206108c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000796516b70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffffa0206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e000000000000000000000000000000000000000000000000000000000000000034c12d618e890ccbeed0813548c9eb003c890df1728a7f3fba53cc9988c38b06
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x00000000000000000000000064ee90b086c99fd3439354f382fef25229a01f02000000000000000000000000139ee25dcad405d2a038e7a67f9ffdbf0f573f3c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000084f8c8765e00000000000000000000000041527b2d03844db6b0945f25702cb958b6d559890000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0000000000000000000000000703b52f2b28febcb60e1372858af5b18849fe86700000000000000000000000061ce1f6514c651c39964961db1948c6f70a4747a00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : implementation_ (address): 0x64Ee90B086c99fD3439354f382Fef25229A01F02
Arg [1] : admin_ (address): 0x139EE25DCad405d2a038E7A67f9ffdbf0f573f3c
Arg [2] : data_ (bytes): 0xf8c8765e00000000000000000000000041527b2d03844db6b0945f25702cb958b6d559890000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0000000000000000000000000703b52f2b28febcb60e1372858af5b18849fe86700000000000000000000000061ce1f6514c651c39964961db1948c6f70a4747a
-----Encoded View---------------
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.