Overview
CRO Balance
0 CRO
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 770 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Add Reward | 16094954 | 2 days ago | IN | 0 CRO | 0.62754369 | ||||
Add Reward | 16094943 | 2 days ago | IN | 0 CRO | 0.62754369 | ||||
Add Reward | 16094926 | 2 days ago | IN | 0 CRO | 0.82847399 | ||||
Add Reward | 16073015 | 4 days ago | IN | 0 CRO | 0.62754369 | ||||
Add Reward | 16073002 | 4 days ago | IN | 0 CRO | 0.62158141 | ||||
Add Reward | 16072989 | 4 days ago | IN | 0 CRO | 0.90622678 | ||||
Add Reward | 16024239 | 7 days ago | IN | 0 CRO | 0.61337255 | ||||
Add Reward | 15833542 | 19 days ago | IN | 0 CRO | 0.62766955 | ||||
Add Reward | 15827512 | 20 days ago | IN | 0 CRO | 0.98323673 | ||||
Add Reward | 15710786 | 27 days ago | IN | 0 CRO | 0.62779075 | ||||
Add Reward | 15710769 | 27 days ago | IN | 0 CRO | 0.62760895 | ||||
Add Reward | 15710746 | 27 days ago | IN | 0 CRO | 0.62766955 | ||||
Add Reward | 15710732 | 27 days ago | IN | 0 CRO | 0.62754835 | ||||
Add Reward | 15639717 | 32 days ago | IN | 0 CRO | 0.61301408 | ||||
Add Reward | 15639689 | 32 days ago | IN | 0 CRO | 0.62742339 | ||||
Add Reward | 15547928 | 38 days ago | IN | 0 CRO | 0.61343313 | ||||
Add Reward | 15547883 | 38 days ago | IN | 0 CRO | 0.61343313 | ||||
Add Reward | 15534775 | 39 days ago | IN | 0 CRO | 0.61180752 | ||||
Add Reward | 15534751 | 39 days ago | IN | 0 CRO | 0.61337255 | ||||
Add Reward | 15490140 | 42 days ago | IN | 0 CRO | 0.64348551 | ||||
Add Reward | 15484707 | 42 days ago | IN | 0 CRO | 0.62760895 | ||||
Add Reward | 15432243 | 46 days ago | IN | 0 CRO | 0.65610111 | ||||
Add Reward | 15408091 | 47 days ago | IN | 0 CRO | 0.62760427 | ||||
Add Reward | 15407980 | 47 days ago | IN | 0 CRO | 0.62742339 | ||||
Add Reward | 15407917 | 47 days ago | IN | 0 CRO | 0.62760427 |
Loading...
Loading
Contract Name:
EarnRewards
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./IEarnStakingManager.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import {EarnAssetHolder, Asset, AssetType, IERC20} from "./EarnAssetHolder.sol"; contract EarnRewards is EIP712, EarnAssetHolder { using ECDSA for bytes32; struct ExecutionData { address executor; address tokenAddress; uint256 erc1155TokenId; uint256 amount; uint256[] erc721TokenIds; AssetType assetType; uint256 nonce; uint256 availableAfter; uint256 deadline; } constructor( address earnStakingManager ) EIP712("EarnNetwork", "1") EarnAssetHolder(earnStakingManager) {} function addReward( address executor, address tokenAddress, uint256 erc1155TokenId, uint256 amount, uint256[] memory erc721TokenIds, AssetType assetType, uint256 nonce, uint256 availableAfter, uint256 deadline, bytes memory signature ) external payable nonReentrant { ExecutionData memory data = ExecutionData( executor, tokenAddress, erc1155TokenId, amount, erc721TokenIds, assetType, nonce, availableAfter, deadline ); require( data.executor == msg.sender || data.executor == address(0), "EPR: Wrong executor" ); require(block.timestamp <= data.deadline, "EPR: Transaction overdue"); _deposit(data, signature); } function _deposit( ExecutionData memory data, bytes memory signature ) internal { require(data.amount > 0, "ESP: amount cannot be zero"); _verifySignature(data, signature); _useNonce(data.nonce); Asset memory sa = stakingManager.getOrCreateAsset( 0, data.tokenAddress, data.erc1155TokenId, data.assetType ); _depositAsset(stakingManager.rewardsHolderContract(), data.amount, sa, data.erc721TokenIds); stakingManager.execReward( data.executor, data.nonce, data.tokenAddress, data.amount, data.erc1155TokenId, data.erc721TokenIds, false ); } function _verifySignature( ExecutionData memory data, bytes memory signature ) internal view { require(data.deadline >= block.timestamp, "EPR: deadline is reached"); require( data.availableAfter <= block.timestamp, "EPR: not available yet" ); bytes32 typedHash = _hashTypedDataV4( keccak256( abi.encode( keccak256( "Reward(address executor,address tokenAddress,uint256 erc1155TokenId,uint256 amount,uint256[] erc721TokenIds,uint256 assetType,uint256 nonce,uint256 availableAfter,uint256 deadline)" ), data.executor, data.tokenAddress, data.erc1155TokenId, data.amount, keccak256(abi.encodePacked(data.erc721TokenIds)), data.assetType, data.nonce, data.availableAfter, data.deadline ) ) ); require( ECDSA.recover(typedHash, signature) == stakingManager.signer(), "EarnPayments: Wrong signature" ); } // admin functions function adminWithdraw( address tokenAddress, uint256 erc1155tokenId, AssetType assetType, uint256 amount, uint256[] memory erc721TokenIds ) external onlyAdmin { stakingManager.getOrCreateAsset( 0, tokenAddress, erc1155tokenId, assetType ); bytes32 assetId = stakingManager.getAssetId( tokenAddress, erc1155tokenId, assetType ); _withdrawAssets( stakingManager.treasury(), amount, erc721TokenIds, assetId ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.0; import "./ERC1155Receiver.sol"; /** * Simple implementation of `ERC1155Receiver` that will allow a contract to hold ERC1155 tokens. * * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be * stuck. * * @dev _Available since v3.1._ */ contract ERC1155Holder is ERC1155Receiver { function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol) pragma solidity ^0.8.0; import "../IERC1155Receiver.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev _Available since v3.1._ */ abstract contract ERC1155Receiver is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.0; import "../IERC721Receiver.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address, address, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; // EIP-712 is Final as of 2022-08-11. This file is deprecated. import "./EIP712.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ERC721Holder} from "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import {ERC1155Holder} from "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {AssetType, Asset} from "./EarnAssetTypes.sol"; import {IEarnStakingManager} from "./IEarnStakingManager.sol"; contract EarnAssetHolder is ReentrancyGuard, ERC721Holder, ERC1155Holder { modifier onlyAdmin() { require(msg.sender == stakingManager.admin(), "EAH: Only admin"); _; } using SafeERC20 for IERC20; IEarnStakingManager public stakingManager; mapping(uint256 => bool) public isNonceUsed; constructor(address _stakingManager) { stakingManager = IEarnStakingManager(_stakingManager); } function _useNonce(uint256 nonce) internal { require(nonce > 0, "EAH: Nonce cannot be zero"); require(!isNonceUsed[nonce], "EAH: Nonce already used"); isNonceUsed[nonce] = true; } // ---- Assets ---- // function _depositAsset( address to, uint256 amount, Asset memory sa, uint256[] memory erc721TokenIds ) internal { if (sa.assetType == AssetType.ERC721) { require( erc721TokenIds.length == amount, "EAH: amount != erc721TokenIds.length" ); } else { require( erc721TokenIds.length == 0, "EAH: erc721TokenIds.length != 0" ); } if (sa.assetType == AssetType.ERC20) { uint256 oldBalance = IERC20(sa.assetAddress).balanceOf(address(to)); IERC20(sa.assetAddress).safeTransferFrom(msg.sender, to, amount); uint256 newBalance = IERC20(sa.assetAddress).balanceOf(address(to)); require( newBalance - oldBalance == amount, "EAH: detected ERC20 transfer fees" ); } else if (sa.assetType == AssetType.ERC721) { for (uint256 i = 0; i < erc721TokenIds.length; i++) { IERC721(sa.assetAddress).safeTransferFrom( msg.sender, to, erc721TokenIds[i] ); } } else if (sa.assetType == AssetType.ERC1155) { IERC1155(sa.assetAddress).safeTransferFrom( msg.sender, to, sa.erc1155TokenId, amount, "" ); } else if (sa.assetType == AssetType.NATIVE) { require(amount == msg.value, "EAH: Native currency mismatch"); if(to != address(this)) { payable(to).transfer(amount); } } else { revert("EAH: unknown asset type"); } } function _withdrawAssets( address to, uint256 amount, uint256[] memory erc721TokenIds, bytes32 assetId ) internal { Asset memory sa = stakingManager.assets(assetId); if (sa.assetType == AssetType.ERC20) { IERC20(sa.assetAddress).safeTransfer(to, amount); } else if (sa.assetType == AssetType.ERC721) { for (uint256 i = 0; i < erc721TokenIds.length; i++) { IERC721(sa.assetAddress).safeTransferFrom( address(this), to, erc721TokenIds[i] ); } } else if (sa.assetType == AssetType.ERC1155) { IERC1155(sa.assetAddress).safeTransferFrom( address(this), to, sa.erc1155TokenId, amount, "" ); } else if (sa.assetType == AssetType.NATIVE) { payable(to).transfer(amount); } else { revert("EAH: unknown asset type"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; enum AssetType { UNDEFINED, ERC20, ERC721, ERC1155, NATIVE } struct Asset { address assetAddress; uint256 erc1155TokenId; AssetType assetType; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import {Asset, AssetType} from "./EarnAssetTypes.sol"; interface IEarnStakingManager { function treasury() external view returns (address); function signer() external view returns (address); function rewardsHolderContract() external view returns (address); function stakePositionUpdate( address staker, bytes32 assetId, uint256 transactionNonce, uint256 newUserStakedAmount, uint256 newTotalStakedAmount, uint256 transactionIndex, uint256 timestamp, uint256 unstakeTimestamp, uint256[] memory erc721TokenIds, bool liquidated ) external; function pay( address payer, uint256 paymentType, address paymentToken, uint256 amount, uint256 nonce ) external; function execReward( address from, uint256 nonce, address rewardToken, uint256 rewardAmount, uint256 erc1155TokenId, uint256[] memory erc721TokenIds, bool isWithdrawTx ) external; function WETH() external view returns (address); function getOrCreateAsset( bytes32 _assetId, address _assetAddress, uint256 _erc1155TokenId, AssetType _assetType ) external returns (Asset memory); function getAssetById(bytes32 _assetId) external view returns (Asset memory); function getAssetId( address _assetAddress, uint256 _erc1155TokenId, AssetType _assetType ) external pure returns (bytes32); function assets(bytes32 _assetId) external view returns (Asset memory asset); function admin() external view returns (address); function emitNonce(address addr, uint256 amount, uint256 nonce) external; }
{ "evmVersion": "paris", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 12 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"earnStakingManager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"executor","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"erc1155TokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"erc721TokenIds","type":"uint256[]"},{"internalType":"enum AssetType","name":"assetType","type":"uint8"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"availableAfter","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"addReward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"erc1155tokenId","type":"uint256"},{"internalType":"enum AssetType","name":"assetType","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"erc721TokenIds","type":"uint256[]"}],"name":"adminWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isNonceUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingManager","outputs":[{"internalType":"contract IEarnStakingManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61014060405234801561001157600080fd5b506040516200228e3803806200228e8339810160408190526100329161013f565b604080518082018252600b81526a4561726e4e6574776f726b60a81b60208083019182528351808501855260018152603160f81b81830152835190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a081815287517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818701819052818a0186905260608201859052608082019390935230818301528851808203909201825260c0019097528651969093019590952086959192906080523060c0526101205250506001600081905580546001600160a01b0319166001600160a01b0394909416939093179092555061016f915050565b60006020828403121561015157600080fd5b81516001600160a01b038116811461016857600080fd5b9392505050565b60805160a05160c05160e05161010051610120516120cf620001bf600039600061142f0152600061147e01526000611459015260006113b2015260006113dc0152600061140601526120cf6000f3fe60806040526004361061006b5760003560e01c806301ffc9a714610070578063150b7a02146100a55780631f92f029146100de57806322828cc2146100f35780633a088326146101205780635d00bb1214610140578063bc197c8114610170578063f23a6e6114610190575b600080fd5b34801561007c57600080fd5b5061009061008b36600461189b565b6101bc565b60405190151581526020015b60405180910390f35b3480156100b157600080fd5b506100c56100c03660046119a6565b6101f3565b6040516001600160e01b0319909116815260200161009c565b6100f16100ec366004611a9d565b610204565b005b3480156100ff57600080fd5b50600154610113906001600160a01b031681565b60405161009c9190611b64565b34801561012c57600080fd5b506100f161013b366004611b78565b61034d565b34801561014c57600080fd5b5061009061015b366004611bed565b60026020526000908152604090205460ff1681565b34801561017c57600080fd5b506100c561018b366004611c06565b610593565b34801561019c57600080fd5b506100c56101ab366004611ca6565b63f23a6e6160e01b95945050505050565b60006001600160e01b03198216630271189760e51b14806101ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b630a85bd0160e11b5b949350505050565b61020c6105a5565b60006040518061012001604052808c6001600160a01b031681526020018b6001600160a01b031681526020018a815260200189815260200188815260200187600481111561025c5761025c611d0e565b8152602081018790526040810186905260600184905280519091506001600160a01b0316331480610295575080516001600160a01b0316155b6102dc5760405162461bcd60e51b815260206004820152601360248201527222a8291d102bb937b7339032bc32b1baba37b960691b60448201526064015b60405180910390fd5b80610100015142111561032c5760405162461bcd60e51b81526020600482015260186024820152774550523a205472616e73616374696f6e206f76657264756560401b60448201526064016102d3565b61033681836105fe565b506103416001600055565b50505050505050505050565b600160009054906101000a90046001600160a01b03166001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c49190611d24565b6001600160a01b0316336001600160a01b0316146104165760405162461bcd60e51b815260206004820152600f60248201526e22a0a41d1027b7363c9030b236b4b760891b60448201526064016102d3565b60015460405163718d7f9560e11b81526001600160a01b039091169063e31aff2a9061044d90600090899089908990600401611d63565b6060604051808303816000875af115801561046c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104909190611d8d565b506001546040516371ae49d560e11b81526000916001600160a01b03169063e35c93aa906104c690899089908990600401611df5565b602060405180830381865afa1580156104e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105079190611e19565b905061058b600160009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561055f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105839190611d24565b848484610804565b505050505050565b63bc197c8160e01b5b95945050505050565b6002600054036105f75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102d3565b6002600055565b600082606001511161064f5760405162461bcd60e51b815260206004820152601a6024820152794553503a20616d6f756e742063616e6e6f74206265207a65726f60301b60448201526064016102d3565b6106598282610a95565b6106668260c00151610cc7565b600154602083015160408085015160a0860151915163718d7f9560e11b81526000946001600160a01b03169363e31aff2a936106a9938793909190600401611d63565b6060604051808303816000875af11580156106c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ec9190611d8d565b9050610778600160009054906101000a90046001600160a01b03166001600160a01b031663e6a1ee026040518163ffffffff1660e01b8152600401602060405180830381865afa158015610744573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107689190611d24565b8460600151838660800151610d87565b600154835160c08501516020860151606087015160408089015160808a01519151632080f19960e21b81526001600160a01b0390971696638203c664966107cd96909590949093909291600090600401611e32565b600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b50505050505050565b600154604051634fed2db360e11b8152600481018390526000916001600160a01b031690639fda5b6690602401606060405180830381865afa15801561084e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108729190611d8d565b905060018160400151600481111561088c5761088c611d0e565b036108ac5780516108a7906001600160a01b031686866111dd565b610a8e565b6002816040015160048111156108c4576108c4611d0e565b0361096d5760005b83518110156109675781600001516001600160a01b03166342842e0e30888785815181106108fc576108fc611eb6565b60200260200101516040518463ffffffff1660e01b815260040161092293929190611ecc565b600060405180830381600087803b15801561093c57600080fd5b505af1158015610950573d6000803e3d6000fd5b50505050808061095f90611f06565b9150506108cc565b50610a8e565b60038160400151600481111561098557610985611d0e565b036109f95780516020820151604051637921219560e11b81526001600160a01b039092169163f242432a916109c29130918a918a90600401611f1f565b600060405180830381600087803b1580156109dc57600080fd5b505af11580156109f0573d6000803e3d6000fd5b50505050610a8e565b600481604001516004811115610a1157610a11611d0e565b03610a4c576040516001600160a01b0386169085156108fc029086906000818181858888f19350505050158015610967573d6000803e3d6000fd5b60405162461bcd60e51b81526020600482015260176024820152764541483a20756e6b6e6f776e206173736574207479706560481b60448201526064016102d3565b5050505050565b428261010001511015610ae55760405162461bcd60e51b81526020600482015260186024820152771154148e88191958591b1a5b99481a5cc81c995858da195960421b60448201526064016102d3565b428260e001511115610b325760405162461bcd60e51b81526020600482015260166024820152751154148e881b9bdd08185d985a5b18589b19481e595d60521b60448201526064016102d3565b6000610be07fc06edad632054a2d7b4389204db8b2e893eee8455ace8268f09f3a48bbfac4e584600001518560200151866040015187606001518860800151604051602001610b819190611f57565b604051602081830303815290604052805190602001208960a001518a60c001518b60e001518c6101000151604051602001610bc59a99989796959493929190611f8d565b60405160208183030381529060405280519060200120611240565b9050600160009054906101000a90046001600160a01b03166001600160a01b031663238ac9336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c599190611d24565b6001600160a01b0316610c6c828461128e565b6001600160a01b031614610cc25760405162461bcd60e51b815260206004820152601d60248201527f4561726e5061796d656e74733a2057726f6e67207369676e617475726500000060448201526064016102d3565b505050565b60008111610d135760405162461bcd60e51b81526020600482015260196024820152784541483a204e6f6e63652063616e6e6f74206265207a65726f60381b60448201526064016102d3565b60008181526002602052604090205460ff1615610d6c5760405162461bcd60e51b81526020600482015260176024820152761150520e88139bdb98d948185b1c9958591e481d5cd959604a1b60448201526064016102d3565b6000908152600260205260409020805460ff19166001179055565b600282604001516004811115610d9f57610d9f611d0e565b03610e055782815114610e005760405162461bcd60e51b8152602060048201526024808201527f4541483a20616d6f756e7420213d20657263373231546f6b656e4964732e6c656044820152630dccee8d60e31b60648201526084016102d3565b610e54565b805115610e545760405162461bcd60e51b815260206004820152601f60248201527f4541483a20657263373231546f6b656e4964732e6c656e67746820213d20300060448201526064016102d3565b600182604001516004811115610e6c57610e6c611d0e565b03610fd85781516040516370a0823160e01b81526000916001600160a01b0316906370a0823190610ea1908890600401611b64565b602060405180830381865afa158015610ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee29190611e19565b8351909150610efc906001600160a01b03163387876112b2565b82516040516370a0823160e01b81526000916001600160a01b0316906370a0823190610f2c908990600401611b64565b602060405180830381865afa158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190611e19565b905084610f7a8383611ff1565b14610fd15760405162461bcd60e51b815260206004820152602160248201527f4541483a206465746563746564204552433230207472616e73666572206665656044820152607360f81b60648201526084016102d3565b50506111d7565b600282604001516004811115610ff057610ff0611d0e565b036110995760005b81518110156110935782600001516001600160a01b03166342842e0e338785858151811061102857611028611eb6565b60200260200101516040518463ffffffff1660e01b815260040161104e93929190611ecc565b600060405180830381600087803b15801561106857600080fd5b505af115801561107c573d6000803e3d6000fd5b50505050808061108b90611f06565b915050610ff8565b506111d7565b6003826040015160048111156110b1576110b1611d0e565b036111255781516020830151604051637921219560e11b81526001600160a01b039092169163f242432a916110ee91339189918990600401611f1f565b600060405180830381600087803b15801561110857600080fd5b505af115801561111c573d6000803e3d6000fd5b505050506111d7565b60048260400151600481111561113d5761113d611d0e565b03610a4c573483146111915760405162461bcd60e51b815260206004820152601d60248201527f4541483a204e61746976652063757272656e6379206d69736d6174636800000060448201526064016102d3565b6001600160a01b03841630146111d7576040516001600160a01b0385169084156108fc029085906000818181858888f19350505050158015611093573d6000803e3d6000fd5b50505050565b6040516001600160a01b038316602482015260448101829052610cc290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526112d3565b60006101ed61124d6113a5565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061129d85856114cc565b915091506112aa81611511565b509392505050565b6111d7846323b872dd60e01b85858560405160240161120993929190611ecc565b6000611328826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166116599092919063ffffffff16565b805190915015610cc257808060200190518101906113469190612004565b610cc25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102d3565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156113fe57507f000000000000000000000000000000000000000000000000000000000000000046145b1561142857507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041036115025760208301516040840151606085015160001a6114f687828585611668565b9450945050505061150a565b506000905060025b9250929050565b600081600481111561152557611525611d0e565b0361152d5750565b600181600481111561154157611541611d0e565b036115895760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016102d3565b600281600481111561159d5761159d611d0e565b036115ea5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016102d3565b60038160048111156115fe576115fe611d0e565b036116565760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016102d3565b50565b60606101fc8484600085611722565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156116955750600090506003611719565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156116e9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661171257600060019250925050611719565b9150600090505b94509492505050565b6060824710156117835760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102d3565b600080866001600160a01b0316858760405161179f919061204a565b60006040518083038185875af1925050503d80600081146117dc576040519150601f19603f3d011682016040523d82523d6000602084013e6117e1565b606091505b50915091506117f2878383876117fd565b979650505050505050565b6060831561186c578251600003611865576001600160a01b0385163b6118655760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102d3565b50816101fc565b6101fc83838151156118815781518083602001fd5b8060405162461bcd60e51b81526004016102d39190612066565b6000602082840312156118ad57600080fd5b81356001600160e01b0319811681146118c557600080fd5b9392505050565b6001600160a01b038116811461165657600080fd5b80356118ec816118cc565b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561192f5761192f6118f1565b604052919050565b600082601f83011261194857600080fd5b81356001600160401b03811115611961576119616118f1565b611974601f8201601f1916602001611907565b81815284602083860101111561198957600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080608085870312156119bc57600080fd5b84356119c7816118cc565b935060208501356119d7816118cc565b92506040850135915060608501356001600160401b038111156119f957600080fd5b611a0587828801611937565b91505092959194509250565b600082601f830112611a2257600080fd5b813560206001600160401b03821115611a3d57611a3d6118f1565b8160051b611a4c828201611907565b9283528481018201928281019087851115611a6657600080fd5b83870192505b848310156117f257823582529183019190830190611a6c565b6005811061165657600080fd5b80356118ec81611a85565b6000806000806000806000806000806101408b8d031215611abd57600080fd5b611ac68b6118e1565b9950611ad460208c016118e1565b985060408b0135975060608b0135965060808b01356001600160401b0380821115611afe57600080fd5b611b0a8e838f01611a11565b9750611b1860a08e01611a92565b965060c08d0135955060e08d013594506101008d013593506101208d0135915080821115611b4557600080fd5b50611b528d828e01611937565b9150509295989b9194979a5092959850565b6001600160a01b0391909116815260200190565b600080600080600060a08688031215611b9057600080fd5b8535611b9b816118cc565b9450602086013593506040860135611bb281611a85565b92506060860135915060808601356001600160401b03811115611bd457600080fd5b611be088828901611a11565b9150509295509295909350565b600060208284031215611bff57600080fd5b5035919050565b600080600080600060a08688031215611c1e57600080fd5b8535611c29816118cc565b94506020860135611c39816118cc565b935060408601356001600160401b0380821115611c5557600080fd5b611c6189838a01611a11565b94506060880135915080821115611c7757600080fd5b611c8389838a01611a11565b93506080880135915080821115611c9957600080fd5b50611be088828901611937565b600080600080600060a08688031215611cbe57600080fd5b8535611cc9816118cc565b94506020860135611cd9816118cc565b9350604086013592506060860135915060808601356001600160401b03811115611d0257600080fd5b611be088828901611937565b634e487b7160e01b600052602160045260246000fd5b600060208284031215611d3657600080fd5b81516118c5816118cc565b60058110611d5f57634e487b7160e01b600052602160045260246000fd5b9052565b8481526001600160a01b0384166020820152604081018390526080810161059c6060830184611d41565b600060608284031215611d9f57600080fd5b604051606081016001600160401b0381118282101715611dc157611dc16118f1565b6040528251611dcf816118cc565b8152602083810151908201526040830151611de981611a85565b60408201529392505050565b6001600160a01b038416815260208101839052606081016101fc6040830184611d41565b600060208284031215611e2b57600080fd5b5051919050565b6001600160a01b03888116825260208083018990529087166040830152606082018690526080820185905260e060a0830181905284519083018190526000918581019161010085019190845b81811015611e9a57845184529382019392820192600101611e7e565b505050809250505082151560c083015298975050505050505050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201611f1857611f18611ef0565b5060010190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b815160009082906020808601845b83811015611f8157815185529382019390820190600101611f65565b50929695505050505050565b8a81526001600160a01b038a8116602083015289166040820152606081018890526080810187905260a081018690526101408101611fce60c0830187611d41565b8460e083015283610100830152826101208301529b9a5050505050505050505050565b818103818111156101ed576101ed611ef0565b60006020828403121561201657600080fd5b815180151581146118c557600080fd5b60005b83811015612041578181015183820152602001612029565b50506000910152565b6000825161205c818460208701612026565b9190910192915050565b6020815260008251806020840152612085816040850160208701612026565b601f01601f1916919091016040019291505056fea264697066735822122013cfdb5d44f9bc34e65ce7e264175273b24058d000d86877574823406fa4c9d764736f6c634300081400330000000000000000000000002a1d63c71db48061d2270b7c7c6d844115574644
Deployed Bytecode
0x60806040526004361061006b5760003560e01c806301ffc9a714610070578063150b7a02146100a55780631f92f029146100de57806322828cc2146100f35780633a088326146101205780635d00bb1214610140578063bc197c8114610170578063f23a6e6114610190575b600080fd5b34801561007c57600080fd5b5061009061008b36600461189b565b6101bc565b60405190151581526020015b60405180910390f35b3480156100b157600080fd5b506100c56100c03660046119a6565b6101f3565b6040516001600160e01b0319909116815260200161009c565b6100f16100ec366004611a9d565b610204565b005b3480156100ff57600080fd5b50600154610113906001600160a01b031681565b60405161009c9190611b64565b34801561012c57600080fd5b506100f161013b366004611b78565b61034d565b34801561014c57600080fd5b5061009061015b366004611bed565b60026020526000908152604090205460ff1681565b34801561017c57600080fd5b506100c561018b366004611c06565b610593565b34801561019c57600080fd5b506100c56101ab366004611ca6565b63f23a6e6160e01b95945050505050565b60006001600160e01b03198216630271189760e51b14806101ed57506301ffc9a760e01b6001600160e01b03198316145b92915050565b630a85bd0160e11b5b949350505050565b61020c6105a5565b60006040518061012001604052808c6001600160a01b031681526020018b6001600160a01b031681526020018a815260200189815260200188815260200187600481111561025c5761025c611d0e565b8152602081018790526040810186905260600184905280519091506001600160a01b0316331480610295575080516001600160a01b0316155b6102dc5760405162461bcd60e51b815260206004820152601360248201527222a8291d102bb937b7339032bc32b1baba37b960691b60448201526064015b60405180910390fd5b80610100015142111561032c5760405162461bcd60e51b81526020600482015260186024820152774550523a205472616e73616374696f6e206f76657264756560401b60448201526064016102d3565b61033681836105fe565b506103416001600055565b50505050505050505050565b600160009054906101000a90046001600160a01b03166001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c49190611d24565b6001600160a01b0316336001600160a01b0316146104165760405162461bcd60e51b815260206004820152600f60248201526e22a0a41d1027b7363c9030b236b4b760891b60448201526064016102d3565b60015460405163718d7f9560e11b81526001600160a01b039091169063e31aff2a9061044d90600090899089908990600401611d63565b6060604051808303816000875af115801561046c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104909190611d8d565b506001546040516371ae49d560e11b81526000916001600160a01b03169063e35c93aa906104c690899089908990600401611df5565b602060405180830381865afa1580156104e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105079190611e19565b905061058b600160009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561055f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105839190611d24565b848484610804565b505050505050565b63bc197c8160e01b5b95945050505050565b6002600054036105f75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102d3565b6002600055565b600082606001511161064f5760405162461bcd60e51b815260206004820152601a6024820152794553503a20616d6f756e742063616e6e6f74206265207a65726f60301b60448201526064016102d3565b6106598282610a95565b6106668260c00151610cc7565b600154602083015160408085015160a0860151915163718d7f9560e11b81526000946001600160a01b03169363e31aff2a936106a9938793909190600401611d63565b6060604051808303816000875af11580156106c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ec9190611d8d565b9050610778600160009054906101000a90046001600160a01b03166001600160a01b031663e6a1ee026040518163ffffffff1660e01b8152600401602060405180830381865afa158015610744573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107689190611d24565b8460600151838660800151610d87565b600154835160c08501516020860151606087015160408089015160808a01519151632080f19960e21b81526001600160a01b0390971696638203c664966107cd96909590949093909291600090600401611e32565b600060405180830381600087803b1580156107e757600080fd5b505af11580156107fb573d6000803e3d6000fd5b50505050505050565b600154604051634fed2db360e11b8152600481018390526000916001600160a01b031690639fda5b6690602401606060405180830381865afa15801561084e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108729190611d8d565b905060018160400151600481111561088c5761088c611d0e565b036108ac5780516108a7906001600160a01b031686866111dd565b610a8e565b6002816040015160048111156108c4576108c4611d0e565b0361096d5760005b83518110156109675781600001516001600160a01b03166342842e0e30888785815181106108fc576108fc611eb6565b60200260200101516040518463ffffffff1660e01b815260040161092293929190611ecc565b600060405180830381600087803b15801561093c57600080fd5b505af1158015610950573d6000803e3d6000fd5b50505050808061095f90611f06565b9150506108cc565b50610a8e565b60038160400151600481111561098557610985611d0e565b036109f95780516020820151604051637921219560e11b81526001600160a01b039092169163f242432a916109c29130918a918a90600401611f1f565b600060405180830381600087803b1580156109dc57600080fd5b505af11580156109f0573d6000803e3d6000fd5b50505050610a8e565b600481604001516004811115610a1157610a11611d0e565b03610a4c576040516001600160a01b0386169085156108fc029086906000818181858888f19350505050158015610967573d6000803e3d6000fd5b60405162461bcd60e51b81526020600482015260176024820152764541483a20756e6b6e6f776e206173736574207479706560481b60448201526064016102d3565b5050505050565b428261010001511015610ae55760405162461bcd60e51b81526020600482015260186024820152771154148e88191958591b1a5b99481a5cc81c995858da195960421b60448201526064016102d3565b428260e001511115610b325760405162461bcd60e51b81526020600482015260166024820152751154148e881b9bdd08185d985a5b18589b19481e595d60521b60448201526064016102d3565b6000610be07fc06edad632054a2d7b4389204db8b2e893eee8455ace8268f09f3a48bbfac4e584600001518560200151866040015187606001518860800151604051602001610b819190611f57565b604051602081830303815290604052805190602001208960a001518a60c001518b60e001518c6101000151604051602001610bc59a99989796959493929190611f8d565b60405160208183030381529060405280519060200120611240565b9050600160009054906101000a90046001600160a01b03166001600160a01b031663238ac9336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c599190611d24565b6001600160a01b0316610c6c828461128e565b6001600160a01b031614610cc25760405162461bcd60e51b815260206004820152601d60248201527f4561726e5061796d656e74733a2057726f6e67207369676e617475726500000060448201526064016102d3565b505050565b60008111610d135760405162461bcd60e51b81526020600482015260196024820152784541483a204e6f6e63652063616e6e6f74206265207a65726f60381b60448201526064016102d3565b60008181526002602052604090205460ff1615610d6c5760405162461bcd60e51b81526020600482015260176024820152761150520e88139bdb98d948185b1c9958591e481d5cd959604a1b60448201526064016102d3565b6000908152600260205260409020805460ff19166001179055565b600282604001516004811115610d9f57610d9f611d0e565b03610e055782815114610e005760405162461bcd60e51b8152602060048201526024808201527f4541483a20616d6f756e7420213d20657263373231546f6b656e4964732e6c656044820152630dccee8d60e31b60648201526084016102d3565b610e54565b805115610e545760405162461bcd60e51b815260206004820152601f60248201527f4541483a20657263373231546f6b656e4964732e6c656e67746820213d20300060448201526064016102d3565b600182604001516004811115610e6c57610e6c611d0e565b03610fd85781516040516370a0823160e01b81526000916001600160a01b0316906370a0823190610ea1908890600401611b64565b602060405180830381865afa158015610ebe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee29190611e19565b8351909150610efc906001600160a01b03163387876112b2565b82516040516370a0823160e01b81526000916001600160a01b0316906370a0823190610f2c908990600401611b64565b602060405180830381865afa158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190611e19565b905084610f7a8383611ff1565b14610fd15760405162461bcd60e51b815260206004820152602160248201527f4541483a206465746563746564204552433230207472616e73666572206665656044820152607360f81b60648201526084016102d3565b50506111d7565b600282604001516004811115610ff057610ff0611d0e565b036110995760005b81518110156110935782600001516001600160a01b03166342842e0e338785858151811061102857611028611eb6565b60200260200101516040518463ffffffff1660e01b815260040161104e93929190611ecc565b600060405180830381600087803b15801561106857600080fd5b505af115801561107c573d6000803e3d6000fd5b50505050808061108b90611f06565b915050610ff8565b506111d7565b6003826040015160048111156110b1576110b1611d0e565b036111255781516020830151604051637921219560e11b81526001600160a01b039092169163f242432a916110ee91339189918990600401611f1f565b600060405180830381600087803b15801561110857600080fd5b505af115801561111c573d6000803e3d6000fd5b505050506111d7565b60048260400151600481111561113d5761113d611d0e565b03610a4c573483146111915760405162461bcd60e51b815260206004820152601d60248201527f4541483a204e61746976652063757272656e6379206d69736d6174636800000060448201526064016102d3565b6001600160a01b03841630146111d7576040516001600160a01b0385169084156108fc029085906000818181858888f19350505050158015611093573d6000803e3d6000fd5b50505050565b6040516001600160a01b038316602482015260448101829052610cc290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526112d3565b60006101ed61124d6113a5565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b600080600061129d85856114cc565b915091506112aa81611511565b509392505050565b6111d7846323b872dd60e01b85858560405160240161120993929190611ecc565b6000611328826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166116599092919063ffffffff16565b805190915015610cc257808060200190518101906113469190612004565b610cc25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102d3565b6000306001600160a01b037f000000000000000000000000224ac24fa8d755037fd90c569c4b6385433f8b34161480156113fe57507f000000000000000000000000000000000000000000000000000000000000001946145b1561142857507f24c29760f0be75814d38bee49f8e56a03e7654773b9424a02358551ec8aafb7e90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fe16353b5cddd4c67ace23caaa71458b10b016dce36ffaf5614623106aae0292b828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041036115025760208301516040840151606085015160001a6114f687828585611668565b9450945050505061150a565b506000905060025b9250929050565b600081600481111561152557611525611d0e565b0361152d5750565b600181600481111561154157611541611d0e565b036115895760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016102d3565b600281600481111561159d5761159d611d0e565b036115ea5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016102d3565b60038160048111156115fe576115fe611d0e565b036116565760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016102d3565b50565b60606101fc8484600085611722565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156116955750600090506003611719565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156116e9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661171257600060019250925050611719565b9150600090505b94509492505050565b6060824710156117835760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102d3565b600080866001600160a01b0316858760405161179f919061204a565b60006040518083038185875af1925050503d80600081146117dc576040519150601f19603f3d011682016040523d82523d6000602084013e6117e1565b606091505b50915091506117f2878383876117fd565b979650505050505050565b6060831561186c578251600003611865576001600160a01b0385163b6118655760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102d3565b50816101fc565b6101fc83838151156118815781518083602001fd5b8060405162461bcd60e51b81526004016102d39190612066565b6000602082840312156118ad57600080fd5b81356001600160e01b0319811681146118c557600080fd5b9392505050565b6001600160a01b038116811461165657600080fd5b80356118ec816118cc565b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561192f5761192f6118f1565b604052919050565b600082601f83011261194857600080fd5b81356001600160401b03811115611961576119616118f1565b611974601f8201601f1916602001611907565b81815284602083860101111561198957600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080608085870312156119bc57600080fd5b84356119c7816118cc565b935060208501356119d7816118cc565b92506040850135915060608501356001600160401b038111156119f957600080fd5b611a0587828801611937565b91505092959194509250565b600082601f830112611a2257600080fd5b813560206001600160401b03821115611a3d57611a3d6118f1565b8160051b611a4c828201611907565b9283528481018201928281019087851115611a6657600080fd5b83870192505b848310156117f257823582529183019190830190611a6c565b6005811061165657600080fd5b80356118ec81611a85565b6000806000806000806000806000806101408b8d031215611abd57600080fd5b611ac68b6118e1565b9950611ad460208c016118e1565b985060408b0135975060608b0135965060808b01356001600160401b0380821115611afe57600080fd5b611b0a8e838f01611a11565b9750611b1860a08e01611a92565b965060c08d0135955060e08d013594506101008d013593506101208d0135915080821115611b4557600080fd5b50611b528d828e01611937565b9150509295989b9194979a5092959850565b6001600160a01b0391909116815260200190565b600080600080600060a08688031215611b9057600080fd5b8535611b9b816118cc565b9450602086013593506040860135611bb281611a85565b92506060860135915060808601356001600160401b03811115611bd457600080fd5b611be088828901611a11565b9150509295509295909350565b600060208284031215611bff57600080fd5b5035919050565b600080600080600060a08688031215611c1e57600080fd5b8535611c29816118cc565b94506020860135611c39816118cc565b935060408601356001600160401b0380821115611c5557600080fd5b611c6189838a01611a11565b94506060880135915080821115611c7757600080fd5b611c8389838a01611a11565b93506080880135915080821115611c9957600080fd5b50611be088828901611937565b600080600080600060a08688031215611cbe57600080fd5b8535611cc9816118cc565b94506020860135611cd9816118cc565b9350604086013592506060860135915060808601356001600160401b03811115611d0257600080fd5b611be088828901611937565b634e487b7160e01b600052602160045260246000fd5b600060208284031215611d3657600080fd5b81516118c5816118cc565b60058110611d5f57634e487b7160e01b600052602160045260246000fd5b9052565b8481526001600160a01b0384166020820152604081018390526080810161059c6060830184611d41565b600060608284031215611d9f57600080fd5b604051606081016001600160401b0381118282101715611dc157611dc16118f1565b6040528251611dcf816118cc565b8152602083810151908201526040830151611de981611a85565b60408201529392505050565b6001600160a01b038416815260208101839052606081016101fc6040830184611d41565b600060208284031215611e2b57600080fd5b5051919050565b6001600160a01b03888116825260208083018990529087166040830152606082018690526080820185905260e060a0830181905284519083018190526000918581019161010085019190845b81811015611e9a57845184529382019392820192600101611e7e565b505050809250505082151560c083015298975050505050505050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b039384168152919092166020820152604081019190915260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201611f1857611f18611ef0565b5060010190565b6001600160a01b0394851681529290931660208301526040820152606081019190915260a06080820181905260009082015260c00190565b815160009082906020808601845b83811015611f8157815185529382019390820190600101611f65565b50929695505050505050565b8a81526001600160a01b038a8116602083015289166040820152606081018890526080810187905260a081018690526101408101611fce60c0830187611d41565b8460e083015283610100830152826101208301529b9a5050505050505050505050565b818103818111156101ed576101ed611ef0565b60006020828403121561201657600080fd5b815180151581146118c557600080fd5b60005b83811015612041578181015183820152602001612029565b50506000910152565b6000825161205c818460208701612026565b9190910192915050565b6020815260008251806020840152612085816040850160208701612026565b601f01601f1916919091016040019291505056fea264697066735822122013cfdb5d44f9bc34e65ce7e264175273b24058d000d86877574823406fa4c9d764736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002a1d63c71db48061d2270b7c7c6d844115574644
-----Decoded View---------------
Arg [0] : earnStakingManager (address): 0x2a1D63c71dB48061d2270b7c7C6D844115574644
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002a1d63c71db48061d2270b7c7c6d844115574644
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.