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
Multichain Info
No addresses found
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MintProxy
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol"; import "./libraries/ErrorCodes.sol"; /** * Admin slot: 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103 * Implementation slot: 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */ contract MintProxy is Proxy, ERC1967Upgrade { /** * @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 { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _changeAdmin(_admin); _upgradeToAndCall(_logic, _data, false); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier onlyAdmin() { require(msg.sender == _getAdmin(), ErrorCodes.ADMIN_ONLY); _; } /** * @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 onlyAdmin { _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 onlyAdmin { _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 onlyAdmin { _upgradeToAndCall(newImplementation, data, true); } /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); address impl = _implementation(); for (uint256 i = 0; i < data.length; i++) { results[i] = Address.functionDelegateCall(impl, data[i]); } return results; } }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; library ErrorCodes { // Common string internal constant ADMIN_ONLY = "E101"; string internal constant UNAUTHORIZED = "E102"; string internal constant OPERATION_PAUSED = "E103"; string internal constant WHITELISTED_ONLY = "E104"; string internal constant ADDRESS_IS_NOT_IN_AML_SYSTEM = "E105"; string internal constant ADDRESS_IS_BLACKLISTED = "E106"; // Invalid input string internal constant ADMIN_ADDRESS_CANNOT_BE_ZERO = "E201"; string internal constant INVALID_REDEEM = "E202"; string internal constant REDEEM_TOO_MUCH = "E203"; string internal constant MARKET_NOT_LISTED = "E204"; string internal constant INSUFFICIENT_LIQUIDITY = "E205"; string internal constant INVALID_SENDER = "E206"; string internal constant BORROW_CAP_REACHED = "E207"; string internal constant BALANCE_OWED = "E208"; string internal constant UNRELIABLE_LIQUIDATOR = "E209"; string internal constant INVALID_DESTINATION = "E210"; string internal constant INSUFFICIENT_STAKE = "E211"; string internal constant INVALID_DURATION = "E212"; string internal constant INVALID_PERIOD_RATE = "E213"; string internal constant EB_TIER_LIMIT_REACHED = "E214"; string internal constant INVALID_DEBT_REDEMPTION_RATE = "E215"; string internal constant LQ_INVALID_SEIZE_DISTRIBUTION = "E216"; string internal constant EB_TIER_DOES_NOT_EXIST = "E217"; string internal constant EB_ZERO_TIER_CANNOT_BE_ENABLED = "E218"; string internal constant EB_ALREADY_ACTIVATED_TIER = "E219"; string internal constant EB_END_BLOCK_MUST_BE_LARGER_THAN_CURRENT = "E220"; string internal constant EB_CANNOT_MINT_TOKEN_FOR_ACTIVATED_TIER = "E221"; string internal constant EB_EMISSION_BOOST_IS_NOT_IN_RANGE = "E222"; string internal constant TARGET_ADDRESS_CANNOT_BE_ZERO = "E223"; string internal constant INSUFFICIENT_TOKEN_IN_VESTING_CONTRACT = "E224"; string internal constant VESTING_SCHEDULE_ALREADY_EXISTS = "E225"; string internal constant INSUFFICIENT_TOKENS_TO_CREATE_SCHEDULE = "E226"; string internal constant NO_VESTING_SCHEDULE = "E227"; string internal constant SCHEDULE_IS_IRREVOCABLE = "E228"; string internal constant MNT_AMOUNT_IS_ZERO = "E230"; string internal constant INCORRECT_AMOUNT = "E231"; string internal constant MEMBERSHIP_LIMIT = "E232"; string internal constant MEMBER_NOT_EXIST = "E233"; string internal constant MEMBER_ALREADY_ADDED = "E234"; string internal constant MEMBERSHIP_LIMIT_REACHED = "E235"; string internal constant REPORTED_PRICE_SHOULD_BE_GREATER_THAN_ZERO = "E236"; string internal constant MTOKEN_ADDRESS_CANNOT_BE_ZERO = "E237"; string internal constant TOKEN_ADDRESS_CANNOT_BE_ZERO = "E238"; string internal constant REDEEM_TOKENS_OR_REDEEM_AMOUNT_MUST_BE_ZERO = "E239"; string internal constant FL_TOKEN_IS_NOT_UNDERLYING = "E240"; string internal constant FL_AMOUNT_IS_TOO_LARGE = "E241"; string internal constant FL_CALLBACK_FAILED = "E242"; string internal constant DD_UNSUPPORTED_TOKEN = "E243"; string internal constant DD_MARKET_ADDRESS_IS_ZERO = "E244"; string internal constant DD_ROUTER_ADDRESS_IS_ZERO = "E245"; string internal constant DD_RECEIVER_ADDRESS_IS_ZERO = "E246"; string internal constant DD_BOT_ADDRESS_IS_ZERO = "E247"; string internal constant DD_MARKET_NOT_FOUND = "E248"; string internal constant DD_RECEIVER_NOT_FOUND = "E249"; string internal constant DD_BOT_NOT_FOUND = "E250"; string internal constant DD_ROUTER_ALREADY_SET = "E251"; string internal constant DD_RECEIVER_ALREADY_SET = "E252"; string internal constant DD_BOT_ALREADY_SET = "E253"; string internal constant EB_MARKET_INDEX_IS_LESS_THAN_USER_INDEX = "E254"; string internal constant LQ_INVALID_DRR_ARRAY = "E255"; string internal constant LQ_INVALID_SEIZE_ARRAY = "E256"; string internal constant LQ_INVALID_DEBT_REDEMPTION_RATE = "E257"; string internal constant LQ_INVALID_SEIZE_INDEX = "E258"; string internal constant LQ_DUPLICATE_SEIZE_INDEX = "E259"; string internal constant DD_INVALID_TOKEN_IN_ADDRESS = "E260"; string internal constant DD_INVALID_TOKEN_OUT_ADDRESS = "E261"; string internal constant DD_INVALID_TOKEN_IN_AMOUNT = "E262"; string internal constant DD_LIQUIDATION_ADDRESS_IS_ZERO = "E263"; string internal constant DD_LIQUIDATION_ALREADY_SET = "E264"; // Protocol errors string internal constant INVALID_PRICE = "E301"; string internal constant MARKET_NOT_FRESH = "E302"; string internal constant BORROW_RATE_TOO_HIGH = "E303"; string internal constant INSUFFICIENT_TOKEN_CASH = "E304"; string internal constant INSUFFICIENT_TOKENS_FOR_RELEASE = "E305"; string internal constant INSUFFICIENT_MNT_FOR_GRANT = "E306"; string internal constant TOKEN_TRANSFER_IN_UNDERFLOW = "E307"; string internal constant NOT_PARTICIPATING_IN_BUYBACK = "E308"; string internal constant NOT_ENOUGH_PARTICIPATING_ACCOUNTS = "E309"; string internal constant NOTHING_TO_DISTRIBUTE = "E310"; string internal constant ALREADY_PARTICIPATING_IN_BUYBACK = "E311"; string internal constant MNT_APPROVE_FAILS = "E312"; string internal constant TOO_EARLY_TO_DRIP = "E313"; string internal constant BB_UNSTAKE_TOO_EARLY = "E314"; string internal constant INSUFFICIENT_SHORTFALL = "E315"; string internal constant HEALTHY_FACTOR_NOT_IN_RANGE = "E316"; string internal constant BUYBACK_DRIPS_ALREADY_HAPPENED = "E317"; string internal constant EB_INDEX_SHOULD_BE_GREATER_THAN_INITIAL = "E318"; string internal constant NO_VESTING_SCHEDULES = "E319"; string internal constant INSUFFICIENT_UNRELEASED_TOKENS = "E320"; string internal constant ORACLE_PRICE_EXPIRED = "E321"; string internal constant TOKEN_NOT_FOUND = "E322"; string internal constant RECEIVED_PRICE_HAS_INVALID_ROUND = "E323"; string internal constant FL_PULL_AMOUNT_IS_TOO_LOW = "E324"; string internal constant INSUFFICIENT_TOTAL_PROTOCOL_INTEREST = "E325"; string internal constant BB_ACCOUNT_RECENTLY_VOTED = "E326"; string internal constant DD_SWAP_ROUTER_IS_ZERO = "E327"; string internal constant DD_SWAP_CALL_FAILS = "E328"; string internal constant LL_NEW_ROOT_CANNOT_BE_ZERO = "E329"; string internal constant RH_PAYOUT_FROM_FUTURE = "E330"; string internal constant RH_ACCRUE_WITHOUT_UNLOCK = "E331"; string internal constant RH_LERP_DELTA_IS_GREATER_THAN_PERIOD = "E332"; string internal constant PRECONDITIONS_NOT_MET = "E333"; // Invalid input - Admin functions string internal constant ZERO_EXCHANGE_RATE = "E401"; string internal constant SECOND_INITIALIZATION = "E402"; string internal constant MARKET_ALREADY_LISTED = "E403"; string internal constant IDENTICAL_VALUE = "E404"; string internal constant ZERO_ADDRESS = "E405"; string internal constant EC_INVALID_PROVIDER_REPRESENTATIVE = "E406"; string internal constant EC_PROVIDER_CANT_BE_REPRESENTATIVE = "E407"; string internal constant OR_ORACLE_ADDRESS_CANNOT_BE_ZERO = "E408"; string internal constant OR_UNDERLYING_TOKENS_DECIMALS_SHOULD_BE_GREATER_THAN_ZERO = "E409"; string internal constant OR_REPORTER_MULTIPLIER_SHOULD_BE_GREATER_THAN_ZERO = "E410"; string internal constant INVALID_TOKEN = "E411"; string internal constant INVALID_PROTOCOL_INTEREST_FACTOR_MANTISSA = "E412"; string internal constant INVALID_REDUCE_AMOUNT = "E413"; string internal constant LIQUIDATION_FEE_MANTISSA_SHOULD_BE_GREATER_THAN_ZERO = "E414"; string internal constant INVALID_UTILISATION_FACTOR_MANTISSA = "E415"; string internal constant INVALID_MTOKENS_OR_BORROW_CAPS = "E416"; string internal constant FL_PARAM_IS_TOO_LARGE = "E417"; string internal constant MNT_INVALID_NONVOTING_PERIOD = "E418"; string internal constant INPUT_ARRAY_LENGTHS_ARE_NOT_EQUAL = "E419"; string internal constant EC_INVALID_BOOSTS = "E420"; string internal constant EC_ACCOUNT_IS_ALREADY_LIQUIDITY_PROVIDER = "E421"; string internal constant EC_ACCOUNT_HAS_NO_AGREEMENT = "E422"; string internal constant OR_TIMESTAMP_THRESHOLD_SHOULD_BE_GREATER_THAN_ZERO = "E423"; string internal constant OR_UNDERLYING_TOKENS_DECIMALS_TOO_BIG = "E424"; string internal constant OR_REPORTER_MULTIPLIER_TOO_BIG = "E425"; string internal constant SHOULD_HAVE_REVOCABLE_SCHEDULE = "E426"; string internal constant MEMBER_NOT_IN_DELAY_LIST = "E427"; string internal constant DELAY_LIST_LIMIT = "E428"; string internal constant NUMBER_IS_NOT_IN_SCALE = "E429"; string internal constant BB_STRATUM_OF_FIRST_LOYALTY_GROUP_IS_NOT_ZERO = "E430"; string internal constant INPUT_ARRAY_IS_EMPTY = "E431"; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 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(); } }
// 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) (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 (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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 } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","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":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"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
6080604052604051620011543803806200115483398101604081905262000026916200050f565b6200005360017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd620005ef565b6000805160206200110d8339815191521462000073576200007362000611565b620000a060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6104620005ef565b600080516020620010ed83398151915214620000c057620000c062000611565b620000cb82620000e2565b620000d9838260006200013d565b5050506200067a565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200010d6200017a565b604080516001600160a01b03928316815291841660208301520160405180910390a16200013a81620001b3565b50565b620001488362000268565b600082511180620001565750805b156200017557620001738383620002aa60201b620003771760201c565b505b505050565b6000620001a4600080516020620010ed83398151915260001b620002db60201b620003a31760201c565b546001600160a01b0316919050565b6001600160a01b0381166200021e5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b8062000247600080516020620010ed83398151915260001b620002db60201b620003a31760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6200027381620002de565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6060620002d283836040518060600160405280602781526020016200112d6027913962000381565b90505b92915050565b90565b620002f4816200046960201b620003a61760201c565b620003585760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840162000215565b80620002476000805160206200110d83398151915260001b620002db60201b620003a31760201c565b60606001600160a01b0384163b620003eb5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840162000215565b600080856001600160a01b03168560405162000408919062000627565b600060405180830381855af49150503d806000811462000445576040519150601f19603f3d011682016040523d82523d6000602084013e6200044a565b606091505b5090925090506200045d82828662000478565b925050505b9392505050565b6001600160a01b03163b151590565b606083156200048957508162000462565b8251156200049a5782518084602001fd5b8160405162461bcd60e51b815260040162000215919062000645565b80516001600160a01b0381168114620004ce57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000506578181015183820152602001620004ec565b50506000910152565b6000806000606084860312156200052557600080fd5b6200053084620004b6565b92506200054060208501620004b6565b60408501519092506001600160401b03808211156200055e57600080fd5b818601915086601f8301126200057357600080fd5b815181811115620005885762000588620004d3565b604051601f8201601f19908116603f01168101908382118183101715620005b357620005b3620004d3565b81604052828152896020848701011115620005cd57600080fd5b620005e0836020830160208801620004e9565b80955050505050509250925092565b81810381811115620002d557634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b600082516200063b818460208701620004e9565b9190910192915050565b602081526000825180602084015262000666816040850160208701620004e9565b601f01601f19169190910160400192915050565b610a63806200068a6000396000f3fe6080604052600436106100435760003560e01c80633659cfe61461005a5780634f1ef2861461007a5780638f2839701461008d578063ac9650d8146100ad57610052565b36610052576100506100e3565b005b6100506100e3565b34801561006657600080fd5b50610050610075366004610771565b6100f5565b61005061008836600461078c565b610174565b34801561009957600080fd5b506100506100a8366004610771565b610214565b3480156100b957600080fd5b506100cd6100c836600461080f565b610275565b6040516100da91906108d4565b60405180910390f35b6100f36100ee6103b5565b6103c4565b565b6100fd6103e8565b6001600160a01b0316336001600160a01b031614604051806040016040528060048152602001634531303160e01b815250906101555760405162461bcd60e51b815260040161014c9190610936565b60405180910390fd5b506101718160405180602001604052806000815250600061041b565b50565b61017c6103e8565b6001600160a01b0316336001600160a01b031614604051806040016040528060048152602001634531303160e01b815250906101cb5760405162461bcd60e51b815260040161014c9190610936565b5061020f8383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506001925061041b915050565b505050565b61021c6103e8565b6001600160a01b0316336001600160a01b031614604051806040016040528060048152602001634531303160e01b8152509061026b5760405162461bcd60e51b815260040161014c9190610936565b5061017181610446565b60608167ffffffffffffffff81111561029057610290610949565b6040519080825280602002602001820160405280156102c357816020015b60608152602001906001900390816102ae5790505b50905060006102d06103b5565b905060005b8381101561036f5761033f828686848181106102f3576102f361095f565b90506020028101906103059190610975565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061037792505050565b8382815181106103515761035161095f565b60200260200101819052508080610367906109c3565b9150506102d5565b505092915050565b606061039c8383604051806060016040528060278152602001610a076027913961049a565b9392505050565b90565b6001600160a01b03163b151590565b60006103bf610577565b905090565b3660008037600080366000845af43d6000803e8080156103e3573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b6104248361059f565b6000825111806104315750805b1561020f576104408383610377565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61046f6103e8565b604080516001600160a01b03928316815291841660208301520160405180910390a1610171816105df565b60606001600160a01b0384163b6105025760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161014c565b600080856001600160a01b03168560405161051d91906109ea565b600060405180830381855af49150503d8060008114610558576040519150601f19603f3d011682016040523d82523d6000602084013e61055d565b606091505b509150915061056d828286610688565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61040c565b6105a8816106c1565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6001600160a01b0381166106445760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014c565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060831561069757508161039c565b8251156106a75782518084602001fd5b8160405162461bcd60e51b815260040161014c9190610936565b6001600160a01b0381163b61072e5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014c565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610667565b80356001600160a01b038116811461076c57600080fd5b919050565b60006020828403121561078357600080fd5b61039c82610755565b6000806000604084860312156107a157600080fd5b6107aa84610755565b9250602084013567ffffffffffffffff808211156107c757600080fd5b818601915086601f8301126107db57600080fd5b8135818111156107ea57600080fd5b8760208285010111156107fc57600080fd5b6020830194508093505050509250925092565b6000806020838503121561082257600080fd5b823567ffffffffffffffff8082111561083a57600080fd5b818501915085601f83011261084e57600080fd5b81358181111561085d57600080fd5b8660208260051b850101111561087257600080fd5b60209290920196919550909350505050565b60005b8381101561089f578181015183820152602001610887565b50506000910152565b600081518084526108c0816020860160208601610884565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561092957603f198886030184526109178583516108a8565b945092850192908501906001016108fb565b5092979650505050505050565b60208152600061039c60208301846108a8565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261098c57600080fd5b83018035915067ffffffffffffffff8211156109a757600080fd5b6020019150368190038213156109bc57600080fd5b9250929050565b6000600182016109e357634e487b7160e01b600052601160045260246000fd5b5060010190565b600082516109fc818460208701610884565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122005b87e1381a368d7151a9c4d1f20bd48e88acc152109a03d6767debb87b7f7cd64736f6c63430008110033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000004a1819ae5087efd1fb935676e486e4b4670a9f690000000000000000000000000820c2782474288bb39ba3a6e4918283d158c1a500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000007ca0f34b42a22dd3a0276d95a80837342cc6fc6300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100435760003560e01c80633659cfe61461005a5780634f1ef2861461007a5780638f2839701461008d578063ac9650d8146100ad57610052565b36610052576100506100e3565b005b6100506100e3565b34801561006657600080fd5b50610050610075366004610771565b6100f5565b61005061008836600461078c565b610174565b34801561009957600080fd5b506100506100a8366004610771565b610214565b3480156100b957600080fd5b506100cd6100c836600461080f565b610275565b6040516100da91906108d4565b60405180910390f35b6100f36100ee6103b5565b6103c4565b565b6100fd6103e8565b6001600160a01b0316336001600160a01b031614604051806040016040528060048152602001634531303160e01b815250906101555760405162461bcd60e51b815260040161014c9190610936565b60405180910390fd5b506101718160405180602001604052806000815250600061041b565b50565b61017c6103e8565b6001600160a01b0316336001600160a01b031614604051806040016040528060048152602001634531303160e01b815250906101cb5760405162461bcd60e51b815260040161014c9190610936565b5061020f8383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506001925061041b915050565b505050565b61021c6103e8565b6001600160a01b0316336001600160a01b031614604051806040016040528060048152602001634531303160e01b8152509061026b5760405162461bcd60e51b815260040161014c9190610936565b5061017181610446565b60608167ffffffffffffffff81111561029057610290610949565b6040519080825280602002602001820160405280156102c357816020015b60608152602001906001900390816102ae5790505b50905060006102d06103b5565b905060005b8381101561036f5761033f828686848181106102f3576102f361095f565b90506020028101906103059190610975565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061037792505050565b8382815181106103515761035161095f565b60200260200101819052508080610367906109c3565b9150506102d5565b505092915050565b606061039c8383604051806060016040528060278152602001610a076027913961049a565b9392505050565b90565b6001600160a01b03163b151590565b60006103bf610577565b905090565b3660008037600080366000845af43d6000803e8080156103e3573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b6104248361059f565b6000825111806104315750805b1561020f576104408383610377565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61046f6103e8565b604080516001600160a01b03928316815291841660208301520160405180910390a1610171816105df565b60606001600160a01b0384163b6105025760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161014c565b600080856001600160a01b03168560405161051d91906109ea565b600060405180830381855af49150503d8060008114610558576040519150601f19603f3d011682016040523d82523d6000602084013e61055d565b606091505b509150915061056d828286610688565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61040c565b6105a8816106c1565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6001600160a01b0381166106445760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840161014c565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060831561069757508161039c565b8251156106a75782518084602001fd5b8160405162461bcd60e51b815260040161014c9190610936565b6001600160a01b0381163b61072e5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161014c565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610667565b80356001600160a01b038116811461076c57600080fd5b919050565b60006020828403121561078357600080fd5b61039c82610755565b6000806000604084860312156107a157600080fd5b6107aa84610755565b9250602084013567ffffffffffffffff808211156107c757600080fd5b818601915086601f8301126107db57600080fd5b8135818111156107ea57600080fd5b8760208285010111156107fc57600080fd5b6020830194508093505050509250925092565b6000806020838503121561082257600080fd5b823567ffffffffffffffff8082111561083a57600080fd5b818501915085601f83011261084e57600080fd5b81358181111561085d57600080fd5b8660208260051b850101111561087257600080fd5b60209290920196919550909350505050565b60005b8381101561089f578181015183820152602001610887565b50506000910152565b600081518084526108c0816020860160208601610884565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561092957603f198886030184526109178583516108a8565b945092850192908501906001016108fb565b5092979650505050505050565b60208152600061039c60208301846108a8565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261098c57600080fd5b83018035915067ffffffffffffffff8211156109a757600080fd5b6020019150368190038213156109bc57600080fd5b9250929050565b6000600182016109e357634e487b7160e01b600052601160045260246000fd5b5060010190565b600082516109fc818460208701610884565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122005b87e1381a368d7151a9c4d1f20bd48e88acc152109a03d6767debb87b7f7cd64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004a1819ae5087efd1fb935676e486e4b4670a9f690000000000000000000000000820c2782474288bb39ba3a6e4918283d158c1a500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000007ca0f34b42a22dd3a0276d95a80837342cc6fc6300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _logic (address): 0x4A1819Ae5087EFd1Fb935676E486E4b4670a9F69
Arg [1] : _admin (address): 0x0820c2782474288bb39ba3a6E4918283D158C1a5
Arg [2] : _data (bytes): 0xc4d66de80000000000000000000000007ca0f34b42a22dd3a0276d95a80837342cc6fc63
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000004a1819ae5087efd1fb935676e486e4b4670a9f69
Arg [1] : 0000000000000000000000000820c2782474288bb39ba3a6e4918283d158c1a5
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [4] : c4d66de80000000000000000000000007ca0f34b42a22dd3a0276d95a8083734
Arg [5] : 2cc6fc6300000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.