Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 4143314 | 509 days ago | IN | 0 ETH | 0.00008579 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x73b96b82...D380C27a6 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Executor
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.8; import {Ownable} from 'solidity-utils/contracts/oz-common/Ownable.sol'; import {IExecutor} from './interfaces/IExecutor.sol'; import {Errors} from '../libraries/Errors.sol'; /** * @title Executor * @author BGD Labs * @notice this contract contains the logic to execute a payload. * @dev Same code for all Executor levels. */ contract Executor is IExecutor, Ownable { /// @inheritdoc IExecutor function executeTransaction( address target, uint256 value, string memory signature, bytes memory data, bool withDelegatecall ) public payable onlyOwner returns (bytes memory) { require(target != address(0), Errors.INVALID_EXECUTION_TARGET); bytes memory callData; if (bytes(signature).length == 0) { callData = data; } else { callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); } bool success; bytes memory resultData; if (withDelegatecall) { require(msg.value >= value, Errors.NOT_ENOUGH_MSG_VALUE); // solium-disable-next-line security/no-call-value (success, resultData) = target.delegatecall(callData); } else { // solium-disable-next-line security/no-call-value (success, resultData) = target.call{value: value}(callData); } require(success, Errors.FAILED_ACTION_EXECUTION); emit ExecutedAction( target, value, signature, data, block.timestamp, withDelegatecall, resultData ); return resultData; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // From commit https://github.com/OpenZeppelin/openzeppelin-contracts/commit/8b778fa20d6d76340c5fac1ed66c80273f05b95a pragma solidity ^0.8.0; import './Context.sol'; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), 'Ownable: caller is not the owner'); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), 'Ownable: new owner is the zero address'); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title IExecutor * @author BGD Labs * @notice interface containing the objects, events and methods definitions of the Executor contract */ interface IExecutor { /** * @notice emitted when an action got executed * @param target address of the targeted contract * @param value wei value of the transaction * @param signature function signature of the transaction * @param data function arguments of the transaction or callData if signature empty * @param executionTime time at which to execute the transaction * @param withDelegatecall boolean, true = transaction delegatecalls the target, else calls the target * @param resultData the actual callData used on the target **/ event ExecutedAction( address indexed target, uint256 value, string signature, bytes data, uint256 executionTime, bool withDelegatecall, bytes resultData ); /** * @notice Function, called by Governance, that executes a transaction, returns the callData executed * @param target smart contract target * @param value wei value of the transaction * @param signature function signature of the transaction * @param data function arguments of the transaction or callData if signature empty * @param withDelegatecall boolean, true = transaction delegatecalls the target, else calls the target * @return result data of the execution call. **/ function executeTransaction( address target, uint256 value, string memory signature, bytes memory data, bool withDelegatecall ) external payable returns (bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Errors library * @author BGD Labs * @notice Defines the error messages emitted by the different contracts of the Aave Governance V3 */ library Errors { string public constant VOTING_PORTALS_COUNT_NOT_0 = '1'; // to be able to rescue voting portals count must be 0 string public constant AT_LEAST_ONE_PAYLOAD = '2'; // to create a proposal, it must have at least one payload string public constant VOTING_PORTAL_NOT_APPROVED = '3'; // the voting portal used to vote on proposal must be approved string public constant PROPOSITION_POWER_IS_TOO_LOW = '4'; // proposition power of proposal creator must be equal or higher than the specified threshold for the access level string public constant PROPOSAL_NOT_IN_CREATED_STATE = '5'; // proposal should be in the CREATED state string public constant PROPOSAL_NOT_IN_ACTIVE_STATE = '6'; // proposal must be in an ACTIVE state string public constant PROPOSAL_NOT_IN_QUEUED_STATE = '7'; // proposal must be in a QUEUED state string public constant VOTING_START_COOLDOWN_PERIOD_NOT_PASSED = '8'; // to activate a proposal vote, the cool down delay must pass string public constant INVALID_VOTING_TOKENS = '9'; // can not vote with more tokens than are allowed string public constant CALLER_NOT_A_VALID_VOTING_PORTAL = '10'; // only an allowed voting portal can queue a proposal string public constant QUEUE_COOLDOWN_PERIOD_NOT_PASSED = '11'; // to execute a proposal a cooldown delay must pass string public constant PROPOSAL_NOT_IN_THE_CORRECT_STATE = '12'; // proposal must be created but not executed yet to be able to be canceled string public constant CALLER_NOT_GOVERNANCE = '13'; // caller must be governance string public constant VOTER_ALREADY_VOTED_ON_PROPOSAL = '14'; // voter can only vote once per proposal using voting portal string public constant WRONG_MESSAGE_ORIGIN = '15'; // received message must come from registered source address, chain id, CrossChainController string public constant NO_VOTING_ASSETS = '16'; // Strategy must have voting assets string public constant PROPOSAL_VOTE_ALREADY_CREATED = '17'; // vote on proposal can only be created once string public constant INVALID_SIGNATURE = '18'; // submitted signature is not valid string public constant INVALID_NUMBER_OF_PROOFS_FOR_VOTING_TOKENS = '19'; // Need all the necessary proofs to validate the voting tokens string public constant PROOFS_NOT_FOR_VOTING_TOKENS = '20'; // provided proofs must be from the voting tokens selected (bridged from governance chain) string public constant PROPOSAL_VOTE_NOT_FINISHED = '21'; // proposal vote must be finished string public constant PROPOSAL_VOTE_NOT_IN_ACTIVE_STATE = '22'; // proposal vote must be in active state string public constant PROPOSAL_VOTE_ALREADY_EXISTS = '23'; // proposal vote already exists string public constant VOTE_ONCE_FOR_ASSET = '24'; // an asset can only be used once per vote string public constant USER_BALANCE_DOES_NOT_EXISTS = '25'; // to vote an user must have balance in the token the user is voting with string public constant USER_VOTING_BALANCE_IS_ZERO = '26'; // to vote an user must have some balance between all the tokens selected for voting string public constant MISSING_AAVE_ROOTS = '27'; // must have AAVE roots registered to use strategy string public constant MISSING_STK_AAVE_ROOTS = '28'; // must have stkAAVE roots registered to use strategy string public constant MISSING_STK_AAVE_SLASHING_EXCHANGE_RATE = '29'; // must have stkAAVE slashing exchange rate registered to use strategy string public constant UNPROCESSED_STORAGE_ROOT = '30'; // root must be registered beforehand string public constant NOT_ENOUGH_MSG_VALUE = '31'; // method was not called with enough value to execute the call string public constant FAILED_ACTION_EXECUTION = '32'; // action failed to execute string public constant SHOULD_BE_AT_LEAST_ONE_EXECUTOR = '33'; // at least one executor is needed string public constant INVALID_EMPTY_TARGETS = '34'; // target of the payload execution must not be empty string public constant EXECUTOR_WAS_NOT_SPECIFIED_FOR_REQUESTED_ACCESS_LEVEL = '35'; // payload executor must be registered for the specified payload access level string public constant PAYLOAD_NOT_IN_QUEUED_STATE = '36'; // payload must be en the queued state string public constant TIMELOCK_NOT_FINISHED = '37'; // delay has not passed before execution can be called string public constant PAYLOAD_NOT_IN_THE_CORRECT_STATE = '38'; // payload must be created but not executed yet to be able to be canceled string public constant PAYLOAD_NOT_IN_CREATED_STATE = '39'; // payload must be in the created state string public constant MISSING_A_AAVE_ROOTS = '40'; // must have aAAVE roots registered to use strategy string public constant MISSING_PROPOSAL_BLOCK_HASH = '41'; // block hash for this proposal was not bridged before string public constant PROPOSAL_VOTE_CONFIGURATION_ALREADY_BRIDGED = '42'; // configuration for this proposal bridged already string public constant INVALID_VOTING_PORTAL_ADDRESS = '43'; // voting portal address can't be 0x0 string public constant INVALID_POWER_STRATEGY = '44'; // 0x0 is not valid as the power strategy string public constant INVALID_EXECUTOR_ADDRESS = '45'; // executor address can't be 0x0 string public constant EXECUTOR_ALREADY_SET_IN_DIFFERENT_LEVEL = '46'; // executor address already being used as executor of a different level string public constant INVALID_VOTING_DURATION = '47'; // voting duration can not be bigger than the time it takes to execute a proposal string public constant VOTING_DURATION_NOT_PASSED = '48'; // at least votingDuration should have passed since voting started for a proposal to be queued string public constant INVALID_PROPOSAL_ACCESS_LEVEL = '49'; // the bridged proposal access level does not correspond with the maximum access level required by the payload string public constant PAYLOAD_NOT_CREATED_BEFORE_PROPOSAL = '50'; // payload must be created before proposal string public constant INVALID_CROSS_CHAIN_CONTROLLER_ADDRESS = '51'; string public constant INVALID_MESSAGE_ORIGINATOR_ADDRESS = '51'; string public constant INVALID_ORIGIN_CHAIN_ID = '52'; string public constant INVALID_ACTION_TARGET = '54'; string public constant INVALID_ACTION_ACCESS_LEVEL = '55'; string public constant INVALID_EXECUTOR_ACCESS_LEVEL = '56'; string public constant INVALID_VOTING_PORTAL_CROSS_CHAIN_CONTROLLER = '57'; string public constant INVALID_VOTING_PORTAL_VOTING_MACHINE = '58'; string public constant INVALID_VOTING_PORTAL_GOVERNANCE = '59'; string public constant INVALID_VOTING_MACHINE_CHAIN_ID = '60'; string public constant G_INVALID_CROSS_CHAIN_CONTROLLER_ADDRESS = '61'; string public constant G_INVALID_IPFS_HASH = '62'; string public constant G_INVALID_PAYLOAD_ACCESS_LEVEL = '63'; string public constant G_INVALID_PAYLOADS_CONTROLLER = '64'; string public constant G_INVALID_PAYLOAD_CHAIN = '65'; string public constant POWER_STRATEGY_HAS_NO_TOKENS = '66'; // power strategy should at least have string public constant INVALID_VOTING_CONFIG_ACCESS_LEVEL = '67'; string public constant VOTING_DURATION_TOO_SMALL = '68'; string public constant NO_BRIDGED_VOTING_ASSETS = '69'; string public constant VOTE_ALREADY_BRIDGED = '70'; string public constant INVALID_VOTER = '71'; string public constant INVALID_DATA_WAREHOUSE = '72'; string public constant INVALID_VOTING_MACHINE_CROSS_CHAIN_CONTROLLER = '73'; string public constant INVALID_L1_VOTING_PORTAL = '74'; string public constant INVALID_VOTING_PORTAL_CHAIN_ID = '75'; string public constant INVALID_VOTING_STRATEGY = '76'; string public constant INVALID_VOTING_ASSETS_WITH_SLOT = '77'; // Token slot is not defined on the strategy string public constant PROPOSAL_VOTE_CAN_NOT_BE_REGISTERED = '78'; // to register a bridged vote proposal vote must be in NotCreated or Active state string public constant INVALID_VOTE_CONFIGURATION_BLOCKHASH = '79'; string public constant INVALID_VOTE_CONFIGURATION_VOTING_DURATION = '80'; string public constant INVALID_GAS_LIMIT = '81'; string public constant INVALID_VOTING_CONFIGS = '82'; // a lvl2 voting configuration must be sent to initializer string public constant INVALID_EXECUTOR_DELAY = '83'; string public constant INVALID_BRIDGED_VOTING_TOKEN = '84'; // A bridged voting token must be on the strategy list string public constant BRIDGED_REPEATED_ASSETS = '85'; // bridged voting tokens must be unique string public constant CAN_NOT_VOTE_WITH_REPEATED_ASSETS = '86'; // voting tokens to bridge must be unique string public constant REPEATED_STRATEGY_ASSET = '87'; string public constant EMPTY_ASSET_STORAGE_SLOTS = '88'; string public constant REPEATED_STRATEGY_ASSET_SLOT = '89'; string public constant INVALID_EXECUTION_TARGET = '90'; string public constant MISSING_VOTING_CONFIGURATIONS = '91'; // voting configurations for lvl1 and lvl2 must be included on initialization string public constant INVALID_PROPOSITION_POWER = '92'; string public constant INVALID_YES_THRESHOLD = '93'; string public constant INVALID_YES_NO_DIFFERENTIAL = '94'; string public constant ETH_TRANSFER_FAILED = '95'; string public constant INVALID_INITIAL_VOTING_CONFIGS = '96'; // initial voting configurations can not be of the same level string public constant INVALID_VOTING_PORTAL_ADDRESS_IN_VOTING_MACHINE = '97'; string public constant INVALID_VOTING_PORTAL_OWNER = '98'; string public constant CANCELLATION_FEE_REDEEM_FAILED = '99'; // cancellation fee was not able to be redeemed string public constant INVALID_COLLECTOR = '100'; // collector can not be address 0 string public constant INVALID_CANCELLATION_FEE_SENT = '101'; // cancellation fee sent does not match the needed amount string public constant CANCELLATION_FEE_ALREADY_REDEEMED = '102'; // cancellation fee already redeemed string public constant INVALID_STATE_TO_REDEEM_CANCELLATION_FEE = '103'; // proposal state is not a valid state to redeem cancellation fee }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // From commit https://github.com/OpenZeppelin/openzeppelin-contracts/commit/8b778fa20d6d76340c5fac1ed66c80273f05b95a pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "remappings": [ "aave-address-book/=lib/aave-address-book/src/", "aave-crosschain-infra-scripts/=lib/aave-crosschain-infra/scripts/", "aave-crosschain-infra/=lib/aave-crosschain-infra/src/", "aave-token-v2/=lib/aave-token-v3/lib/aave-token-v2/contracts/", "aave-token-v3/=lib/aave-token-v3/src/", "aave-v3-core/=lib/aave-address-book/lib/aave-v3-core/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "hyperlane-monorepo/=lib/aave-crosschain-infra/lib/hyperlane-monorepo/solidity/contracts/", "nitro-contracts/=lib/aave-crosschain-infra/lib/nitro-contracts/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solidity-examples/=lib/aave-crosschain-infra/lib/solidity-examples/contracts/", "solidity-utils/=lib/solidity-utils/src/", "lib/aave-address-book:@aave/core-v3/=lib/aave-address-book/lib/aave-v3-core/", "lib/aave-address-book:@aave/periphery-v3/=lib/aave-address-book/lib/aave-v3-periphery/", "lib/aave-address-book:aave-v3-core/=lib/aave-address-book/lib/aave-v3-core/", "lib/aave-address-book:aave-v3-periphery/=lib/aave-address-book/lib/aave-v3-periphery/", "lib/aave-address-book:ds-test/=lib/aave-address-book/lib/forge-std/lib/ds-test/src/", "lib/aave-address-book:forge-std/=lib/aave-address-book/lib/forge-std/src/", "lib/aave-crosschain-infra:@aave/core-v3/=lib/aave-crosschain-infra/lib/aave-address-book/lib/aave-v3-core/", "lib/aave-crosschain-infra:@aave/periphery-v3/=lib/aave-crosschain-infra/lib/aave-address-book/lib/aave-v3-periphery/", "lib/aave-crosschain-infra:@openzeppelin/=lib/aave-crosschain-infra/lib/openzeppelin-contracts/", "lib/aave-crosschain-infra:aave-address-book/=lib/aave-crosschain-infra/lib/aave-address-book/src/", "lib/aave-crosschain-infra:aave-v3-core/=lib/aave-crosschain-infra/lib/aave-address-book/lib/aave-v3-core/", "lib/aave-crosschain-infra:aave-v3-periphery/=lib/aave-crosschain-infra/lib/aave-address-book/lib/aave-v3-periphery/", "lib/aave-crosschain-infra:ds-test/=lib/aave-crosschain-infra/lib/forge-std/lib/ds-test/src/", "lib/aave-crosschain-infra:forge-std/=lib/aave-crosschain-infra/lib/forge-std/src/", "lib/aave-crosschain-infra:hyperlane-monorepo/=lib/aave-crosschain-infra/lib/hyperlane-monorepo/solidity/contracts/", "lib/aave-crosschain-infra:nitro-contracts/=lib/aave-crosschain-infra/lib/nitro-contracts/src/", "lib/aave-crosschain-infra:openzeppelin-contracts/=lib/aave-crosschain-infra/lib/openzeppelin-contracts/", "lib/aave-crosschain-infra:solidity-examples/=lib/aave-crosschain-infra/lib/solidity-examples/contracts/", "lib/aave-crosschain-infra:solidity-utils/=lib/aave-crosschain-infra/lib/solidity-utils/src/", "lib/aave-token-v3:aave-token-v2/=lib/aave-token-v3/lib/aave-token-v2/contracts/", "lib/aave-token-v3:ds-test/=lib/aave-token-v3/lib/forge-std/lib/ds-test/src/", "lib/aave-token-v3:erc4626-tests/=lib/aave-token-v3/lib/openzeppelin-contracts/lib/erc4626-tests/", "lib/aave-token-v3:forge-std/=lib/aave-token-v3/lib/forge-std/src/", "lib/aave-token-v3:openzeppelin-contracts/=lib/aave-token-v3/lib/openzeppelin-contracts/", "lib/aave-token-v3:openzeppelin/=lib/aave-token-v3/lib/openzeppelin-contracts/contracts/", "lib/forge-std:ds-test/=lib/forge-std/lib/ds-test/src/", "lib/openzeppelin-contracts:ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "lib/openzeppelin-contracts:erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "lib/openzeppelin-contracts:forge-std/=lib/openzeppelin-contracts/lib/forge-std/src/", "lib/openzeppelin-contracts:openzeppelin/=lib/openzeppelin-contracts/contracts/", "lib/solidity-utils:ds-test/=lib/solidity-utils/lib/forge-std/lib/ds-test/src/", "lib/solidity-utils:forge-std/=lib/solidity-utils/lib/forge-std/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"string","name":"signature","type":"string"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"executionTime","type":"uint256"},{"indexed":false,"internalType":"bool","name":"withDelegatecall","type":"bool"},{"indexed":false,"internalType":"bytes","name":"resultData","type":"bytes"}],"name":"ExecutedAction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"string","name":"signature","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"withDelegatecall","type":"bool"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106100435760003560e01c8063025d36a91461004f578063715018a6146100785780638da5cb5b1461008f578063f2fde38b146100b757600080fd5b3661004a57005b600080fd5b61006261005d3660046104f4565b6100d7565b60405161006f91906105fe565b60405180910390f35b34801561008457600080fd5b5061008d610305565b005b34801561009b57600080fd5b506000546040516001600160a01b03909116815260200161006f565b3480156100c357600080fd5b5061008d6100d2366004610618565b610319565b60606100e1610392565b604080518082019091526002815261039360f41b60208201526001600160a01b03871661012a5760405162461bcd60e51b815260040161012191906105fe565b60405180910390fd5b506060845160000361013d575082610169565b848051906020012084604051602001610157929190610633565b60405160208183030381529060405290505b600060608415610214578734101560405180604001604052806002815260200161333160f01b815250906101b05760405162461bcd60e51b815260040161012191906105fe565b50886001600160a01b0316836040516101c99190610664565b600060405180830381855af49150503d8060008114610204576040519150601f19603f3d011682016040523d82523d6000602084013e610209565b606091505b509092509050610276565b886001600160a01b0316888460405161022d9190610664565b60006040518083038185875af1925050503d806000811461026a576040519150601f19603f3d011682016040523d82523d6000602084013e61026f565b606091505b5090925090505b604080518082019091526002815261199960f11b6020820152826102ad5760405162461bcd60e51b815260040161012191906105fe565b50886001600160a01b03167f528c26f4cc05f95dc8bad30284946548f08ec44f7dd536473f28b08c65334cdd898989428a876040516102f196959493929190610680565b60405180910390a298975050505050505050565b61030d610392565b61031760006103ec565b565b610321610392565b6001600160a01b0381166103865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610121565b61038f816103ec565b50565b6000546001600160a01b031633146103175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610121565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461045357600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561048957610489610458565b604051601f8501601f19908116603f011681019082821181831017156104b1576104b1610458565b816040528093508581528686860111156104ca57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461045357600080fd5b600080600080600060a0868803121561050c57600080fd5b6105158661043c565b945060208601359350604086013567ffffffffffffffff8082111561053957600080fd5b818801915088601f83011261054d57600080fd5b61055c8983356020850161046e565b9450606088013591508082111561057257600080fd5b508601601f8101881361058457600080fd5b6105938882356020840161046e565b9250506105a2608087016104e4565b90509295509295909350565b60005b838110156105c95781810151838201526020016105b1565b50506000910152565b600081518084526105ea8160208601602086016105ae565b601f01601f19169290920160200192915050565b60208152600061061160208301846105d2565b9392505050565b60006020828403121561062a57600080fd5b6106118261043c565b6001600160e01b03198316815281516000906106568160048501602087016105ae565b919091016004019392505050565b600082516106768184602087016105ae565b9190910192915050565b86815260c06020820152600061069960c08301886105d2565b82810360408401526106ab81886105d2565b9050856060840152841515608084015282810360a08401526106cd81856105d2565b999850505050505050505056fea2646970667358221220aaa2f87381907c744fbfe0388f556d5f1ce2ffebf9d4fa95b408712bf2df83f064736f6c63430008130033
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.