Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 166 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0xedebffff | 20742775 | 148 days ago | IN | 0 ETH | 0.00437291 | ||||
0xedebffff | 20741955 | 148 days ago | IN | 0 ETH | 0.00020361 | ||||
0xedebffff | 20741893 | 148 days ago | IN | 0 ETH | 0.00020881 | ||||
0xedebffff | 20741786 | 148 days ago | IN | 0 ETH | 0.00020313 | ||||
0xedebffff | 20741752 | 148 days ago | IN | 0 ETH | 0.000221 | ||||
0xedebffff | 20741507 | 148 days ago | IN | 0 ETH | 0.00018873 | ||||
0xedebffff | 20741006 | 148 days ago | IN | 0 ETH | 0.00020624 | ||||
0xedebffff | 20740879 | 148 days ago | IN | 0 ETH | 0.00165605 | ||||
0xedebffff | 20740552 | 148 days ago | IN | 0 ETH | 0.00169288 | ||||
0xedebffff | 20740220 | 148 days ago | IN | 0 ETH | 0.00159071 | ||||
0xedebffff | 20740207 | 148 days ago | IN | 0 ETH | 0.00018954 | ||||
0xedebffff | 20740094 | 148 days ago | IN | 0 ETH | 0.0015337 | ||||
0xedebffff | 20740061 | 148 days ago | IN | 0 ETH | 0.00147861 | ||||
0xedebffff | 20738924 | 148 days ago | IN | 0 ETH | 0.00018177 | ||||
0xedebffff | 20738872 | 148 days ago | IN | 0 ETH | 0.0001904 | ||||
0xedebffff | 20738492 | 148 days ago | IN | 0 ETH | 0.00020272 | ||||
0xedebffff | 20738489 | 148 days ago | IN | 0 ETH | 0.00159237 | ||||
0xedebffff | 20738421 | 148 days ago | IN | 0 ETH | 0.00017587 | ||||
0xedebffff | 20738169 | 148 days ago | IN | 0 ETH | 0.00152228 | ||||
0xedebffff | 20738113 | 148 days ago | IN | 0 ETH | 0.00151184 | ||||
0xedebffff | 20738081 | 148 days ago | IN | 0 ETH | 0.00152702 | ||||
0xedebffff | 20738077 | 148 days ago | IN | 0 ETH | 0.00018949 | ||||
0xedebffff | 20737738 | 148 days ago | IN | 0 ETH | 0.00021426 | ||||
0xedebffff | 20737645 | 148 days ago | IN | 0 ETH | 0.00021731 | ||||
0xedebffff | 20737526 | 148 days ago | IN | 0 ETH | 0.0002124 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
OpenOceanExchangeProxy
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-06 */ /** *Submitted for verification at basescan.org on 2024-04-02 */ // File: @openzeppelin/contracts/proxy/Proxy.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} } // File: @openzeppelin/contracts/proxy/beacon/IBeacon.sol // 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); } // File: @openzeppelin/contracts/interfaces/draft-IERC1822.sol // 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); } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v4.7.0) (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) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } } // File: @openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol // OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; /** * @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); } } } // File: @openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol // OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol) pragma solidity ^0.8.0; /** * @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 initializing the storage of the proxy like a Solidity constructor. */ constructor(address _logic, bytes memory _data) payable { _upgradeToAndCall(_logic, _data, false); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } } // File: @openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol // OpenZeppelin Contracts (last updated v4.7.0) (proxy/transparent/TransparentUpgradeableProxy.sol) pragma solidity ^0.8.0; /** * @dev This contract implements a proxy that is upgradeable by an admin. * * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector * clashing], which can potentially be used in an attack, this contract uses the * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two * things that go hand in hand: * * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if * that call matches one of the admin functions exposed by the proxy itself. * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the * implementation. If the admin tries to call a function on the implementation it will fail with an error that says * "admin cannot fallback to proxy target". * * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due * to sudden errors when trying to call a function from the proxy implementation. * * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. */ contract TransparentUpgradeableProxy is ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) { _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _getAdmin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } /** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin { _upgradeToAndCall(newImplementation, data, true); } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } } // File: contracts/OpenOceanExchangeProxy.sol pragma solidity ^0.8.0; contract OpenOceanExchangeProxy is TransparentUpgradeableProxy { constructor(address logic, address admin, bytes memory data) TransparentUpgradeableProxy(logic, admin, data) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"logic","type":"address"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"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"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051611768380380611768833981810160405281019061003191906106a0565b828282828161004782825f61006360201b60201c565b50506100588261009a60201b60201c565b505050505050610992565b610072836100f260201b60201c565b5f8251118061007e5750805b1561009557610093838361014760201b60201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6100c961017a60201b60201c565b826040516100d892919061071b565b60405180910390a16100ef816101d360201b60201c565b50565b610101816102b560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b606061017283836040518060600160405280602781526020016117416027913961037760201b60201c565b905092915050565b5f6101ac7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035f1b6103ff60201b60201c565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610238906107c2565b60405180910390fd5b806102737fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035f1b6103ff60201b60201c565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6102c48161040860201b60201c565b610303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fa90610850565b60405180910390fd5b806103357f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b6103ff60201b60201c565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60605f808573ffffffffffffffffffffffffffffffffffffffff16856040516103a091906108b2565b5f60405180830381855af49150503d805f81146103d8576040519150601f19603f3d011682016040523d82523d5f602084013e6103dd565b606091505b50915091506103f48683838761042a60201b60201c565b925050509392505050565b5f819050919050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315610491575f835103610489576104498561040860201b60201c565b610488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047f90610912565b60405180910390fd5b5b8290506104a2565b6104a183836104aa60201b60201c565b5b949350505050565b5f825111156104bc5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f09190610972565b60405180910390fd5b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105338261050a565b9050919050565b61054381610529565b811461054d575f80fd5b50565b5f8151905061055e8161053a565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6105b28261056c565b810181811067ffffffffffffffff821117156105d1576105d061057c565b5b80604052505050565b5f6105e36104f9565b90506105ef82826105a9565b919050565b5f67ffffffffffffffff82111561060e5761060d61057c565b5b6106178261056c565b9050602081019050919050565b8281835e5f83830152505050565b5f61064461063f846105f4565b6105da565b9050828152602081018484840111156106605761065f610568565b5b61066b848285610624565b509392505050565b5f82601f83011261068757610686610564565b5b8151610697848260208601610632565b91505092915050565b5f805f606084860312156106b7576106b6610502565b5b5f6106c486828701610550565b93505060206106d586828701610550565b925050604084015167ffffffffffffffff8111156106f6576106f5610506565b5b61070286828701610673565b9150509250925092565b61071581610529565b82525050565b5f60408201905061072e5f83018561070c565b61073b602083018461070c565b9392505050565b5f82825260208201905092915050565b7f455243313936373a206e65772061646d696e20697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6107ac602683610742565b91506107b782610752565b604082019050919050565b5f6020820190508181035f8301526107d9816107a0565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e5f8201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b5f61083a602d83610742565b9150610845826107e0565b604082019050919050565b5f6020820190508181035f8301526108678161082e565b9050919050565b5f81519050919050565b5f81905092915050565b5f61088c8261086e565b6108968185610878565b93506108a6818560208601610624565b80840191505092915050565b5f6108bd8284610882565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f6108fc601d83610742565b9150610907826108c8565b602082019050919050565b5f6020820190508181035f830152610929816108f0565b9050919050565b5f81519050919050565b5f61094482610930565b61094e8185610742565b935061095e818560208601610624565b6109678161056c565b840191505092915050565b5f6020820190508181035f83015261098a818461093a565b905092915050565b610da28061099f5f395ff3fe60806040526004361061004d575f3560e01c80633659cfe6146100665780634f1ef2861461008e5780635c60da1b146100aa5780638f283970146100d4578063f851a440146100fc5761005c565b3661005c5761005a610126565b005b610064610126565b005b348015610071575f80fd5b5061008c600480360381019061008791906108eb565b610140565b005b6100a860048036038101906100a39190610977565b6101a4565b005b3480156100b5575f80fd5b506100be610240565b6040516100cb91906109e3565b60405180910390f35b3480156100df575f80fd5b506100fa60048036038101906100f591906108eb565b610296565b005b348015610107575f80fd5b506101106102ea565b60405161011d91906109e3565b60405180910390f35b61012e610340565b61013e6101396103bf565b6103cd565b565b6101486103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610198576101938160405180602001604052805f8152505f61043f565b6101a1565b6101a0610126565b5b50565b6101ac6103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036102325761022d8383838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f82011690508083019250505050505050600161043f565b61023b565b61023a610126565b5b505050565b5f6102496103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361028a576102836103bf565b9050610293565b610292610126565b5b90565b61029e6103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036102de576102d98161046a565b6102e7565b6102e6610126565b5b50565b5f6102f36103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036103345761032d6103ec565b905061033d565b61033c610126565b5b90565b6103486103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac90610aa2565b60405180910390fd5b6103bd6104b6565b565b5f6103c86104b8565b905090565b365f80375f80365f845af43d5f803e805f81146103e8573d5ff35b3d5ffd5b5f6104187fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035f1b61050b565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61044883610514565b5f825111806104545750805b15610465576104638383610563565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6104936103ec565b826040516104a2929190610ac0565b60405180910390a16104b381610590565b50565b565b5f6104e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b61050b565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f819050919050565b61051d8161066c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b60606105888383604051806060016040528060278152602001610d4660279139610722565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f590610b57565b60405180910390fd5b8061062a7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035f1b61050b565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610675816107a4565b6106b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab90610be5565b60405180910390fd5b806106e07f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b61050b565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60605f808573ffffffffffffffffffffffffffffffffffffffff168560405161074b9190610c55565b5f60405180830381855af49150503d805f8114610783576040519150601f19603f3d011682016040523d82523d5f602084013e610788565b606091505b5091509150610799868383876107c6565b925050509392505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315610827575f83510361081f576107df856107a4565b61081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590610cb5565b60405180910390fd5b5b829050610832565b610831838361083a565b5b949350505050565b5f8251111561084c5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108809190610d25565b60405180910390fd5b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108ba82610891565b9050919050565b6108ca816108b0565b81146108d4575f80fd5b50565b5f813590506108e5816108c1565b92915050565b5f60208284031215610900576108ff610889565b5b5f61090d848285016108d7565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261093757610936610916565b5b8235905067ffffffffffffffff8111156109545761095361091a565b5b6020830191508360018202830111156109705761096f61091e565b5b9250929050565b5f805f6040848603121561098e5761098d610889565b5b5f61099b868287016108d7565b935050602084013567ffffffffffffffff8111156109bc576109bb61088d565b5b6109c886828701610922565b92509250509250925092565b6109dd816108b0565b82525050565b5f6020820190506109f65f8301846109d4565b92915050565b5f82825260208201905092915050565b7f5472616e73706172656e745570677261646561626c6550726f78793a2061646d5f8201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760208201527f6574000000000000000000000000000000000000000000000000000000000000604082015250565b5f610a8c6042836109fc565b9150610a9782610a0c565b606082019050919050565b5f6020820190508181035f830152610ab981610a80565b9050919050565b5f604082019050610ad35f8301856109d4565b610ae060208301846109d4565b9392505050565b7f455243313936373a206e65772061646d696e20697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f610b416026836109fc565b9150610b4c82610ae7565b604082019050919050565b5f6020820190508181035f830152610b6e81610b35565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e5f8201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b5f610bcf602d836109fc565b9150610bda82610b75565b604082019050919050565b5f6020820190508181035f830152610bfc81610bc3565b9050919050565b5f81519050919050565b5f81905092915050565b8281835e5f83830152505050565b5f610c2f82610c03565b610c398185610c0d565b9350610c49818560208601610c17565b80840191505092915050565b5f610c608284610c25565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f610c9f601d836109fc565b9150610caa82610c6b565b602082019050919050565b5f6020820190508181035f830152610ccc81610c93565b9050919050565b5f81519050919050565b5f601f19601f8301169050919050565b5f610cf782610cd3565b610d0181856109fc565b9350610d11818560208601610c17565b610d1a81610cdd565b840191505092915050565b5f6020820190508181035f830152610d3d8184610ced565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220980c8e35900042995c94808f87aafb63f0d763a5fe6e552e6a9e697f8bc39bad64736f6c634300081a0033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000006bcd32affc36e5bb43387fd76b758bc4087f18b90000000000000000000000006f2ed32010075fa9e1dc47b6c6a4b67ebfddffa100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061004d575f3560e01c80633659cfe6146100665780634f1ef2861461008e5780635c60da1b146100aa5780638f283970146100d4578063f851a440146100fc5761005c565b3661005c5761005a610126565b005b610064610126565b005b348015610071575f80fd5b5061008c600480360381019061008791906108eb565b610140565b005b6100a860048036038101906100a39190610977565b6101a4565b005b3480156100b5575f80fd5b506100be610240565b6040516100cb91906109e3565b60405180910390f35b3480156100df575f80fd5b506100fa60048036038101906100f591906108eb565b610296565b005b348015610107575f80fd5b506101106102ea565b60405161011d91906109e3565b60405180910390f35b61012e610340565b61013e6101396103bf565b6103cd565b565b6101486103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610198576101938160405180602001604052805f8152505f61043f565b6101a1565b6101a0610126565b5b50565b6101ac6103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036102325761022d8383838080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f82011690508083019250505050505050600161043f565b61023b565b61023a610126565b5b505050565b5f6102496103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361028a576102836103bf565b9050610293565b610292610126565b5b90565b61029e6103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036102de576102d98161046a565b6102e7565b6102e6610126565b5b50565b5f6102f36103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036103345761032d6103ec565b905061033d565b61033c610126565b5b90565b6103486103ec565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16036103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac90610aa2565b60405180910390fd5b6103bd6104b6565b565b5f6103c86104b8565b905090565b365f80375f80365f845af43d5f803e805f81146103e8573d5ff35b3d5ffd5b5f6104187fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035f1b61050b565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61044883610514565b5f825111806104545750805b15610465576104638383610563565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6104936103ec565b826040516104a2929190610ac0565b60405180910390a16104b381610590565b50565b565b5f6104e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b61050b565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f819050919050565b61051d8161066c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b60606105888383604051806060016040528060278152602001610d4660279139610722565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f590610b57565b60405180910390fd5b8061062a7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035f1b61050b565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610675816107a4565b6106b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab90610be5565b60405180910390fd5b806106e07f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b61050b565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60605f808573ffffffffffffffffffffffffffffffffffffffff168560405161074b9190610c55565b5f60405180830381855af49150503d805f8114610783576040519150601f19603f3d011682016040523d82523d5f602084013e610788565b606091505b5091509150610799868383876107c6565b925050509392505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315610827575f83510361081f576107df856107a4565b61081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590610cb5565b60405180910390fd5b5b829050610832565b610831838361083a565b5b949350505050565b5f8251111561084c5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108809190610d25565b60405180910390fd5b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108ba82610891565b9050919050565b6108ca816108b0565b81146108d4575f80fd5b50565b5f813590506108e5816108c1565b92915050565b5f60208284031215610900576108ff610889565b5b5f61090d848285016108d7565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261093757610936610916565b5b8235905067ffffffffffffffff8111156109545761095361091a565b5b6020830191508360018202830111156109705761096f61091e565b5b9250929050565b5f805f6040848603121561098e5761098d610889565b5b5f61099b868287016108d7565b935050602084013567ffffffffffffffff8111156109bc576109bb61088d565b5b6109c886828701610922565b92509250509250925092565b6109dd816108b0565b82525050565b5f6020820190506109f65f8301846109d4565b92915050565b5f82825260208201905092915050565b7f5472616e73706172656e745570677261646561626c6550726f78793a2061646d5f8201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760208201527f6574000000000000000000000000000000000000000000000000000000000000604082015250565b5f610a8c6042836109fc565b9150610a9782610a0c565b606082019050919050565b5f6020820190508181035f830152610ab981610a80565b9050919050565b5f604082019050610ad35f8301856109d4565b610ae060208301846109d4565b9392505050565b7f455243313936373a206e65772061646d696e20697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f610b416026836109fc565b9150610b4c82610ae7565b604082019050919050565b5f6020820190508181035f830152610b6e81610b35565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e5f8201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b5f610bcf602d836109fc565b9150610bda82610b75565b604082019050919050565b5f6020820190508181035f830152610bfc81610bc3565b9050919050565b5f81519050919050565b5f81905092915050565b8281835e5f83830152505050565b5f610c2f82610c03565b610c398185610c0d565b9350610c49818560208601610c17565b80840191505092915050565b5f610c608284610c25565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f610c9f601d836109fc565b9150610caa82610c6b565b602082019050919050565b5f6020820190508181035f830152610ccc81610c93565b9050919050565b5f81519050919050565b5f601f19601f8301169050919050565b5f610cf782610cd3565b610d0181856109fc565b9350610d11818560208601610c17565b610d1a81610cdd565b840191505092915050565b5f6020820190508181035f830152610d3d8184610ced565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220980c8e35900042995c94808f87aafb63f0d763a5fe6e552e6a9e697f8bc39bad64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006bcd32affc36e5bb43387fd76b758bc4087f18b90000000000000000000000006f2ed32010075fa9e1dc47b6c6a4b67ebfddffa100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : logic (address): 0x6bCd32AffC36e5Bb43387fD76b758bc4087F18B9
Arg [1] : admin (address): 0x6f2eD32010075Fa9E1Dc47B6C6a4B67EBFddFFa1
Arg [2] : data (bytes): 0x
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000006bcd32affc36e5bb43387fd76b758bc4087f18b9
Arg [1] : 0000000000000000000000006f2ed32010075fa9e1dc47b6c6a4b67ebfddffa1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
30040:184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3096:11;:9;:11::i;:::-;30040:184;;2865:11;:9;:11::i;:::-;30040:184;28773:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29294:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28156:131;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28501:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27587:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2502:113;2551:17;:15;:17::i;:::-;2579:28;2589:17;:15;:17::i;:::-;2579:9;:28::i;:::-;2502:113::o;28773:136::-;27042:11;:9;:11::i;:::-;27028:25;;:10;:25;;;27024:103;;28847:54:::1;28865:17;28884:9;;;;;;;;;;;::::0;28895:5:::1;28847:17;:54::i;:::-;27024:103:::0;;;27104:11;:9;:11::i;:::-;27024:103;28773:136;:::o;29294:166::-;27042:11;:9;:11::i;:::-;27028:25;;:10;:25;;;27024:103;;29404:48:::1;29422:17;29441:4;;29404:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29447:4;29404:17;:48::i;:::-;27024:103:::0;;;27104:11;:9;:11::i;:::-;27024:103;29294:166;;;:::o;28156:131::-;28208:23;27042:11;:9;:11::i;:::-;27028:25;;:10;:25;;;27024:103;;28262:17:::1;:15;:17::i;:::-;28244:35;;27024:103:::0;;;27104:11;:9;:11::i;:::-;27024:103;28156:131;:::o;28501:105::-;27042:11;:9;:11::i;:::-;27028:25;;:10;:25;;;27024:103;;28576:22:::1;28589:8;28576:12;:22::i;:::-;27024:103:::0;;;27104:11;:9;:11::i;:::-;27024:103;28501:105;:::o;27587:98::-;27630:14;27042:11;:9;:11::i;:::-;27028:25;;:10;:25;;;27024:103;;27666:11:::1;:9;:11::i;:::-;27657:20;;27024:103:::0;;;27104:11;:9;:11::i;:::-;27024:103;27587:98;:::o;29747:210::-;29833:11;:9;:11::i;:::-;29819:25;;:10;:25;;;29811:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;29926:23;:21;:23::i;:::-;29747:210::o;24592:142::-;24659:12;24691:35;:33;:35::i;:::-;24684:42;;24592:142;:::o;1092:918::-;1435:14;1432:1;1429;1416:34;1653:1;1650;1634:14;1631:1;1615:14;1608:5;1595:60;1732:16;1729:1;1726;1711:38;1772:6;1846:1;1841:68;;;;1960:16;1957:1;1950:27;1841:68;1877:16;1874:1;1867:27;21033:124;21077:7;21104:39;20757:66;21131:11;;21104:26;:39::i;:::-;:45;;;;;;;;;;;;21097:52;;21033:124;:::o;19125:270::-;19234:29;19245:17;19234:10;:29::i;:::-;19292:1;19278:4;:11;:15;:28;;;;19297:9;19278:28;19274:114;;;19323:53;19352:17;19371:4;19323:28;:53::i;:::-;;19274:114;19125:270;;;:::o;21566:138::-;21631:35;21644:11;:9;:11::i;:::-;21657:8;21631:35;;;;;;;:::i;:::-;;;;;;;;21677:19;21687:8;21677:9;:19::i;:::-;21566:138;:::o;3405:46::-;:::o;18216:142::-;18269:7;18296:48;17935:66;18323:20;;18296:26;:48::i;:::-;:54;;;;;;;;;;;;18289:61;;18216:142;:::o;15902:195::-;15963:21;16075:4;16065:14;;15902:195;;;:::o;18829:155::-;18896:37;18915:17;18896:18;:37::i;:::-;18958:17;18949:27;;;;;;;;;;;;18829:155;:::o;11479:200::-;11562:12;11594:77;11615:6;11623:4;11594:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;11587:84;;11479:200;;;;:::o;21244:204::-;21328:1;21308:22;;:8;:22;;;21300:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21432:8;21384:39;20757:66;21411:11;;21384:26;:39::i;:::-;:45;;;:56;;;;;;;;;;;;;;;;;;21244:204;:::o;18454:262::-;18536:37;18555:17;18536:18;:37::i;:::-;18528:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;18691:17;18634:48;17935:66;18661:20;;18634:26;:48::i;:::-;:54;;;:74;;;;;;;;;;;;;;;;;;18454:262;:::o;11873:298::-;11984:12;12010;12024:23;12051:6;:19;;12071:4;12051:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12009:67;;;;12094:69;12121:6;12129:7;12138:10;12150:12;12094:26;:69::i;:::-;12087:76;;;;11873:298;;;;;:::o;6119:326::-;6179:4;6436:1;6414:7;:19;;;:23;6407:30;;6119:326;;;:::o;12467:644::-;12652:12;12681:7;12677:427;;;12730:1;12709:10;:17;:22;12705:290;;12927:18;12938:6;12927:10;:18::i;:::-;12919:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;12705:290;13016:10;13009:17;;;;12677:427;13059:33;13067:10;13079:12;13059:7;:33::i;:::-;12467:644;;;;;;;:::o;13653:552::-;13834:1;13814:10;:17;:21;13810:388;;;14046:10;14040:17;14103:15;14090:10;14086:2;14082:19;14075:44;13810:388;14173:12;14166:20;;;;;;;;;;;:::i;:::-;;;;;;;;88:117:1;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:117::-;1285:1;1282;1275:12;1299:117;1408:1;1405;1398:12;1422:117;1531:1;1528;1521:12;1558:552;1615:8;1625:6;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1796:6;1783:20;1773:30;;1826:18;1818:6;1815:30;1812:117;;;1848:79;;:::i;:::-;1812:117;1962:4;1954:6;1950:17;1938:29;;2016:3;2008:4;2000:6;1996:17;1986:8;1982:32;1979:41;1976:128;;;2023:79;;:::i;:::-;1976:128;1558:552;;;;;:::o;2116:672::-;2195:6;2203;2211;2260:2;2248:9;2239:7;2235:23;2231:32;2228:119;;;2266:79;;:::i;:::-;2228:119;2386:1;2411:53;2456:7;2447:6;2436:9;2432:22;2411:53;:::i;:::-;2401:63;;2357:117;2541:2;2530:9;2526:18;2513:32;2572:18;2564:6;2561:30;2558:117;;;2594:79;;:::i;:::-;2558:117;2707:64;2763:7;2754:6;2743:9;2739:22;2707:64;:::i;:::-;2689:82;;;;2484:297;2116:672;;;;;:::o;2794:118::-;2881:24;2899:5;2881:24;:::i;:::-;2876:3;2869:37;2794:118;;:::o;2918:222::-;3011:4;3049:2;3038:9;3034:18;3026:26;;3062:71;3130:1;3119:9;3115:17;3106:6;3062:71;:::i;:::-;2918:222;;;;:::o;3146:169::-;3230:11;3264:6;3259:3;3252:19;3304:4;3299:3;3295:14;3280:29;;3146:169;;;;:::o;3321:290::-;3461:34;3457:1;3449:6;3445:14;3438:58;3530:34;3525:2;3517:6;3513:15;3506:59;3599:4;3594:2;3586:6;3582:15;3575:29;3321:290;:::o;3617:366::-;3759:3;3780:67;3844:2;3839:3;3780:67;:::i;:::-;3773:74;;3856:93;3945:3;3856:93;:::i;:::-;3974:2;3969:3;3965:12;3958:19;;3617:366;;;:::o;3989:419::-;4155:4;4193:2;4182:9;4178:18;4170:26;;4242:9;4236:4;4232:20;4228:1;4217:9;4213:17;4206:47;4270:131;4396:4;4270:131;:::i;:::-;4262:139;;3989:419;;;:::o;4414:332::-;4535:4;4573:2;4562:9;4558:18;4550:26;;4586:71;4654:1;4643:9;4639:17;4630:6;4586:71;:::i;:::-;4667:72;4735:2;4724:9;4720:18;4711:6;4667:72;:::i;:::-;4414:332;;;;;:::o;4752:225::-;4892:34;4888:1;4880:6;4876:14;4869:58;4961:8;4956:2;4948:6;4944:15;4937:33;4752:225;:::o;4983:366::-;5125:3;5146:67;5210:2;5205:3;5146:67;:::i;:::-;5139:74;;5222:93;5311:3;5222:93;:::i;:::-;5340:2;5335:3;5331:12;5324:19;;4983:366;;;:::o;5355:419::-;5521:4;5559:2;5548:9;5544:18;5536:26;;5608:9;5602:4;5598:20;5594:1;5583:9;5579:17;5572:47;5636:131;5762:4;5636:131;:::i;:::-;5628:139;;5355:419;;;:::o;5780:232::-;5920:34;5916:1;5908:6;5904:14;5897:58;5989:15;5984:2;5976:6;5972:15;5965:40;5780:232;:::o;6018:366::-;6160:3;6181:67;6245:2;6240:3;6181:67;:::i;:::-;6174:74;;6257:93;6346:3;6257:93;:::i;:::-;6375:2;6370:3;6366:12;6359:19;;6018:366;;;:::o;6390:419::-;6556:4;6594:2;6583:9;6579:18;6571:26;;6643:9;6637:4;6633:20;6629:1;6618:9;6614:17;6607:47;6671:131;6797:4;6671:131;:::i;:::-;6663:139;;6390:419;;;:::o;6815:98::-;6866:6;6900:5;6894:12;6884:22;;6815:98;;;:::o;6919:147::-;7020:11;7057:3;7042:18;;6919:147;;;;:::o;7072:139::-;7161:6;7156:3;7151;7145:23;7202:1;7193:6;7188:3;7184:16;7177:27;7072:139;;;:::o;7217:386::-;7321:3;7349:38;7381:5;7349:38;:::i;:::-;7403:88;7484:6;7479:3;7403:88;:::i;:::-;7396:95;;7500:65;7558:6;7553:3;7546:4;7539:5;7535:16;7500:65;:::i;:::-;7590:6;7585:3;7581:16;7574:23;;7325:278;7217:386;;;;:::o;7609:271::-;7739:3;7761:93;7850:3;7841:6;7761:93;:::i;:::-;7754:100;;7871:3;7864:10;;7609:271;;;;:::o;7886:179::-;8026:31;8022:1;8014:6;8010:14;8003:55;7886:179;:::o;8071:366::-;8213:3;8234:67;8298:2;8293:3;8234:67;:::i;:::-;8227:74;;8310:93;8399:3;8310:93;:::i;:::-;8428:2;8423:3;8419:12;8412:19;;8071:366;;;:::o;8443:419::-;8609:4;8647:2;8636:9;8632:18;8624:26;;8696:9;8690:4;8686:20;8682:1;8671:9;8667:17;8660:47;8724:131;8850:4;8724:131;:::i;:::-;8716:139;;8443:419;;;:::o;8868:99::-;8920:6;8954:5;8948:12;8938:22;;8868:99;;;:::o;8973:102::-;9014:6;9065:2;9061:7;9056:2;9049:5;9045:14;9041:28;9031:38;;8973:102;;;:::o;9081:377::-;9169:3;9197:39;9230:5;9197:39;:::i;:::-;9252:71;9316:6;9311:3;9252:71;:::i;:::-;9245:78;;9332:65;9390:6;9385:3;9378:4;9371:5;9367:16;9332:65;:::i;:::-;9422:29;9444:6;9422:29;:::i;:::-;9417:3;9413:39;9406:46;;9173:285;9081:377;;;;:::o;9464:313::-;9577:4;9615:2;9604:9;9600:18;9592:26;;9664:9;9658:4;9654:20;9650:1;9639:9;9635:17;9628:47;9692:78;9765:4;9756:6;9692:78;:::i;:::-;9684:86;;9464:313;;;;:::o
Swarm Source
ipfs://980c8e35900042995c94808f87aafb63f0d763a5fe6e552e6a9e697f8bc39bad
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.