Source Code
Overview
ETH Balance
0 ETH
Token Holdings
More Info
ContractCreator
Multi Chain
Multichain Addresses
5 addresses found via
Latest 22 from a total of 22 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Upgrade Proxy | 8005011 | 381 days 18 hrs ago | IN | 0 ETH | 0.00783112 | ||||
Announce Proxy U... | 8005004 | 381 days 18 hrs ago | IN | 0 ETH | 0.00615332 | ||||
Announce Proxy U... | 7994043 | 383 days 14 hrs ago | IN | 0 ETH | 0.01143397 | ||||
Announce Proxy U... | 7920443 | 395 days 23 hrs ago | IN | 0 ETH | 0.00014407 | ||||
Register Vault | 7427124 | 478 days 17 hrs ago | IN | 0 ETH | 0.00011982 | ||||
Register Vault | 7427114 | 478 days 17 hrs ago | IN | 0 ETH | 0.00015976 | ||||
Register Vault | 7427109 | 478 days 17 hrs ago | IN | 0 ETH | 0.00009698 | ||||
Change Address | 7423781 | 479 days 7 hrs ago | IN | 0 ETH | 0.00007611 | ||||
Announce Address... | 7423772 | 479 days 7 hrs ago | IN | 0 ETH | 0.00020892 | ||||
Change Address | 7387818 | 485 days 7 hrs ago | IN | 0 ETH | 0.00011436 | ||||
Change Address | 7387816 | 485 days 7 hrs ago | IN | 0 ETH | 0.0001143 | ||||
Change Address | 7387815 | 485 days 7 hrs ago | IN | 0 ETH | 0.00010069 | ||||
Change Address | 7387814 | 485 days 7 hrs ago | IN | 0 ETH | 0.0000093 | ||||
Change Address | 7387812 | 485 days 7 hrs ago | IN | 0 ETH | 0.00013928 | ||||
Announce Address... | 7387810 | 485 days 7 hrs ago | IN | 0 ETH | 0.00026208 | ||||
Announce Address... | 7387808 | 485 days 7 hrs ago | IN | 0 ETH | 0.00026208 | ||||
Announce Address... | 7387806 | 485 days 7 hrs ago | IN | 0 ETH | 0.00026208 | ||||
Announce Address... | 7387805 | 485 days 7 hrs ago | IN | 0 ETH | 0.00026208 | ||||
Announce Address... | 7387804 | 485 days 7 hrs ago | IN | 0 ETH | 0.00031338 | ||||
Init | 7385213 | 485 days 18 hrs ago | IN | 0 ETH | 0.00028168 | ||||
Init Proxy | 7385212 | 485 days 18 hrs ago | IN | 0 ETH | 0.00007441 | ||||
0x60806040 | 7385027 | 485 days 19 hrs ago | IN | Create: ProxyControlled | 0 ETH | 0.00052951 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Txn Hash | Block | From | To | Value | ||
---|---|---|---|---|---|---|
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8117231 | 363 days 13 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116349 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8116345 | 363 days 17 hrs ago | 0 ETH | ||||
8115681 | 363 days 20 hrs ago | 0 ETH |
Loading...
Loading
Contract Name:
ProxyControlled
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 150 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "../interfaces/IControllable.sol"; import "../interfaces/IProxyControlled.sol"; import "./UpgradeableProxy.sol"; /// @title EIP1967 Upgradable proxy implementation. /// @dev Only Controller has access and should implement time-lock for upgrade action. /// @author belbix contract ProxyControlled is UpgradeableProxy, IProxyControlled { /// @notice Version of the contract /// @dev Should be incremented when contract changed string public constant PROXY_CONTROLLED_VERSION = "1.0.0"; /// @dev Initialize proxy implementation. Need to call after deploy new proxy. function initProxy(address _logic) external override { //make sure that given logic is controllable and not inited require(IControllable(_logic).created() == 0, "Proxy: Wrong implementation"); _init(_logic); } /// @notice Upgrade contract logic /// @dev Upgrade allowed only for Controller and should be done only after time-lock period /// @param _newImplementation Implementation address function upgrade(address _newImplementation) external override { require(IControllable(address(this)).isController(msg.sender), "Proxy: Forbidden"); IControllable(address(this)).increaseRevision(_implementation()); _upgradeTo(_newImplementation); // the new contract must have the same ABI and you must have the power to change it again require(IControllable(address(this)).isController(msg.sender), "Proxy: Wrong implementation"); } /// @notice Return current logic implementation function implementation() external override view returns (address) { return _implementation(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; interface IControllable { function isController(address _contract) external view returns (bool); function isGovernance(address _contract) external view returns (bool); function created() external view returns (uint256); function createdBlock() external view returns (uint256); function controller() external view returns (address); function increaseRevision(address oldLogic) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; interface IProxyControlled { function initProxy(address _logic) external; function upgrade(address _newImplementation) external; function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "../openzeppelin/Proxy.sol"; import "../openzeppelin/Address.sol"; /// @title OpenZeppelin https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.4/contracts/proxy/UpgradeableProxy.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. /// Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see /// {TransparentUpgradeableProxy}. abstract contract UpgradeableProxy is Proxy { /// @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`. /// If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded /// function call, and allows initializating the storage of the proxy like a Solidity constructor. constructor() payable { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); } /// @dev Emitted when the implementation is upgraded. event Upgraded(address indexed implementation); ///@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 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /// @dev Post deploy initialisation for compatability with EIP-1167 factory function _init(address _logic) internal { require(_implementation() == address(0), "Already inited"); _setImplementation(_logic); } /// @dev Returns the current implementation address. function _implementation() internal view virtual override returns (address impl) { bytes32 slot = _IMPLEMENTATION_SLOT; // solhint-disable-next-line no-inline-assembly assembly { impl := sload(slot) } } /// @dev Upgrades the proxy to a new implementation. /// Emits an {Upgraded} event. function _upgradeTo(address newImplementation) internal virtual { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /// @dev Stores a new address in the EIP1967 implementation slot. function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "UpgradeableProxy: new implementation is not a contract"); bytes32 slot = _IMPLEMENTATION_SLOT; // solhint-disable-next-line no-inline-assembly assembly { sstore(slot, newImplementation) } } }
// SPDX-License-Identifier: MIT 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 internall call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/release-v4.6/contracts/utils/AddressUpgradeable.sol * @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, uint 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, uint 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-uint-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint 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 Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 150 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PROXY_CONTROLLED_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_logic","type":"address"}],"name":"initProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newImplementation","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b5061003c60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd61007d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc1461007857634e487b7160e01b600052600160045260246000fd5b6100a0565b60008282101561009b57634e487b7160e01b81526011600452602481fd5b500390565b61065e806100af6000396000f3fe6080604052600436106100435760003560e01c80630900f0101461005a5780633bc845301461007a5780635c60da1b146100c15780639c020061146100ee57610052565b366100525761005061010e565b005b61005061010e565b34801561006657600080fd5b5061005061007536600461054f565b61012e565b34801561008657600080fd5b506100ab604051806040016040528060058152602001640312e302e360dc1b81525081565b6040516100b891906105b5565b60405180910390f35b3480156100cd57600080fd5b506100d661031b565b6040516001600160a01b0390911681526020016100b8565b3480156100fa57600080fd5b5061005061010936600461054f565b610338565b61012c6101276000805160206106098339815191525490565b6103ff565b565b60405163b429afeb60e01b8152336004820152309063b429afeb9060240160206040518083038186803b15801561016457600080fd5b505afa158015610178573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061019c919061057d565b6101e05760405162461bcd60e51b815260206004820152601060248201526f283937bc3c9d102337b93134b23232b760811b60448201526064015b60405180910390fd5b30634fac6ccd6101fc6000805160206106098339815191525490565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561023d57600080fd5b505af1158015610251573d6000803e3d6000fd5b5050505061025e81610423565b60405163b429afeb60e01b8152336004820152309063b429afeb9060240160206040518083038186803b15801561029457600080fd5b505afa1580156102a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cc919061057d565b6103185760405162461bcd60e51b815260206004820152601b60248201527f50726f78793a2057726f6e6720696d706c656d656e746174696f6e000000000060448201526064016101d7565b50565b60006103336000805160206106098339815191525490565b905090565b806001600160a01b031663325a19f16040518163ffffffff1660e01b815260040160206040518083038186803b15801561037157600080fd5b505afa158015610385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a9919061059d565b156103f65760405162461bcd60e51b815260206004820152601b60248201527f50726f78793a2057726f6e6720696d706c656d656e746174696f6e000000000060448201526064016101d7565b61031881610463565b3660008037600080366000845af43d6000803e80801561041e573d6000f35b3d6000fd5b61042c816104c7565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b600061047b6000805160206106098339815191525490565b6001600160a01b0316146104c25760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481a5b9a5d195960921b60448201526064016101d7565b610318815b6001600160a01b0381163b61053d5760405162461bcd60e51b815260206004820152603660248201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616044820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b60648201526084016101d7565b60008051602061060983398151915255565b600060208284031215610560578081fd5b81356001600160a01b0381168114610576578182fd5b9392505050565b60006020828403121561058e578081fd5b81518015158114610576578182fd5b6000602082840312156105ae578081fd5b5051919050565b6000602080835283518082850152825b818110156105e1578581018301518582016040015282016105c5565b818111156105f25783604083870101525b50601f01601f191692909201604001939250505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca26469706673582212203db1cf6deeb9dee4159fb688419d3c4ae055eebd650432a443360e8219e3f88164736f6c63430008040033
Deployed Bytecode
0x6080604052600436106100435760003560e01c80630900f0101461005a5780633bc845301461007a5780635c60da1b146100c15780639c020061146100ee57610052565b366100525761005061010e565b005b61005061010e565b34801561006657600080fd5b5061005061007536600461054f565b61012e565b34801561008657600080fd5b506100ab604051806040016040528060058152602001640312e302e360dc1b81525081565b6040516100b891906105b5565b60405180910390f35b3480156100cd57600080fd5b506100d661031b565b6040516001600160a01b0390911681526020016100b8565b3480156100fa57600080fd5b5061005061010936600461054f565b610338565b61012c6101276000805160206106098339815191525490565b6103ff565b565b60405163b429afeb60e01b8152336004820152309063b429afeb9060240160206040518083038186803b15801561016457600080fd5b505afa158015610178573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061019c919061057d565b6101e05760405162461bcd60e51b815260206004820152601060248201526f283937bc3c9d102337b93134b23232b760811b60448201526064015b60405180910390fd5b30634fac6ccd6101fc6000805160206106098339815191525490565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561023d57600080fd5b505af1158015610251573d6000803e3d6000fd5b5050505061025e81610423565b60405163b429afeb60e01b8152336004820152309063b429afeb9060240160206040518083038186803b15801561029457600080fd5b505afa1580156102a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cc919061057d565b6103185760405162461bcd60e51b815260206004820152601b60248201527f50726f78793a2057726f6e6720696d706c656d656e746174696f6e000000000060448201526064016101d7565b50565b60006103336000805160206106098339815191525490565b905090565b806001600160a01b031663325a19f16040518163ffffffff1660e01b815260040160206040518083038186803b15801561037157600080fd5b505afa158015610385573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a9919061059d565b156103f65760405162461bcd60e51b815260206004820152601b60248201527f50726f78793a2057726f6e6720696d706c656d656e746174696f6e000000000060448201526064016101d7565b61031881610463565b3660008037600080366000845af43d6000803e80801561041e573d6000f35b3d6000fd5b61042c816104c7565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b600061047b6000805160206106098339815191525490565b6001600160a01b0316146104c25760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481a5b9a5d195960921b60448201526064016101d7565b610318815b6001600160a01b0381163b61053d5760405162461bcd60e51b815260206004820152603660248201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616044820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b60648201526084016101d7565b60008051602061060983398151915255565b600060208284031215610560578081fd5b81356001600160a01b0381168114610576578182fd5b9392505050565b60006020828403121561058e578081fd5b81518015158114610576578182fd5b6000602082840312156105ae578081fd5b5051919050565b6000602080835283518082850152825b818110156105e1578581018301518582016040015282016105c5565b818111156105f25783604083870101525b50601f01601f191692909201604001939250505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca26469706673582212203db1cf6deeb9dee4159fb688419d3c4ae055eebd650432a443360e8219e3f88164736f6c63430008040033
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.