More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 6,206 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Rewards | 17149833 | 28 hrs ago | IN | 0 CRO | 1.96780825 | ||||
Withdraw Rewards | 17144432 | 37 hrs ago | IN | 0 CRO | 0.52327595 | ||||
Withdraw Rewards | 17142006 | 41 hrs ago | IN | 0 CRO | 1.6370588 | ||||
Withdraw Rewards | 17141640 | 41 hrs ago | IN | 0 CRO | 1.69455275 | ||||
Withdraw Rewards | 17132309 | 2 days ago | IN | 0 CRO | 0.53458795 | ||||
Withdraw Rewards | 17121534 | 3 days ago | IN | 0 CRO | 0.87106945 | ||||
Withdraw Rewards | 17120274 | 3 days ago | IN | 0 CRO | 1.07830971 | ||||
Withdraw Rewards | 17117228 | 3 days ago | IN | 0 CRO | 0.87094825 | ||||
Withdraw Rewards | 17117217 | 3 days ago | IN | 0 CRO | 1.20278375 | ||||
Withdraw Rewards | 17115075 | 3 days ago | IN | 0 CRO | 1.96780825 | ||||
Withdraw Rewards | 17115040 | 3 days ago | IN | 0 CRO | 0.53422435 | ||||
Withdraw Rewards | 17115022 | 3 days ago | IN | 0 CRO | 0.77958365 | ||||
Withdraw Rewards | 17114505 | 3 days ago | IN | 0 CRO | 0.53434555 | ||||
Withdraw Rewards | 17114500 | 3 days ago | IN | 0 CRO | 0.53446675 | ||||
Withdraw Rewards | 17114492 | 3 days ago | IN | 0 CRO | 0.53440615 | ||||
Withdraw Rewards | 17114483 | 3 days ago | IN | 0 CRO | 1.88139265 | ||||
Withdraw Rewards | 17113241 | 3 days ago | IN | 0 CRO | 0.53434555 | ||||
Withdraw Rewards | 17106403 | 4 days ago | IN | 0 CRO | 0.52218035 | ||||
Withdraw Rewards | 17102123 | 4 days ago | IN | 0 CRO | 2.93696801 | ||||
Withdraw Rewards | 17100199 | 4 days ago | IN | 0 CRO | 0.62076115 | ||||
Withdraw Rewards | 17098588 | 4 days ago | IN | 0 CRO | 0.52321535 | ||||
Withdraw Rewards | 17098263 | 4 days ago | IN | 0 CRO | 2.65793585 | ||||
Withdraw Rewards | 17085510 | 5 days ago | IN | 0 CRO | 0.52122228 | ||||
Withdraw Rewards | 17085358 | 5 days ago | IN | 0 CRO | 0.52161955 | ||||
Withdraw Rewards | 17081457 | 5 days ago | IN | 0 CRO | 0.55482216 |
Loading...
Loading
Contract Name:
EarnRewardsHolder
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} from "./EarnAssetHolder.sol"; contract EarnRewardsHolder is EIP712, EarnAssetHolder { using ECDSA for bytes32; struct ExecutionData { address executor; bytes32 assetId; uint256 amount; uint256[] erc721TokenIds; uint256 nonce; uint256 availableAfter; uint256 deadline; } constructor( address earnStakingManager ) EIP712("EarnNetwork", "1") EarnAssetHolder(earnStakingManager) {} function withdrawReward( address executor, bytes32 assetId, uint256 amount, uint256[] memory erc721TokenIds, uint256 nonce, uint256 availableAfter, uint256 deadline, bytes memory signature ) external payable nonReentrant { ExecutionData memory data = ExecutionData( executor, assetId, amount, erc721TokenIds, nonce, availableAfter, deadline ); _withdraw(data, signature); } function withdrawRewards( ExecutionData[] memory data, bytes[] memory signatures ) external payable nonReentrant { require(data.length == signatures.length, "ERH: Wrong data length"); for (uint256 i = 0; i < data.length; i++) { _withdraw(data[i], signatures[i]); } } function _withdraw( ExecutionData memory data, bytes memory signature ) internal { require(data.executor == msg.sender, "ERH: Wrong executor"); require(data.amount > 0, "ERH: amount cannot be zero"); _verifySignature(data, signature); _useNonce(data.nonce); Asset memory sa = stakingManager.getAssetById(data.assetId); _withdrawAssets( msg.sender, data.amount, data.erc721TokenIds, data.assetId ); stakingManager.execReward( data.executor, data.nonce, sa.assetAddress, data.amount, sa.erc1155TokenId, data.erc721TokenIds, true ); } function _verifySignature( ExecutionData memory data, bytes memory signature ) internal view { require(data.deadline >= block.timestamp, "ERH: deadline is reached"); require( data.availableAfter <= block.timestamp, "ERH: not available yet" ); bytes32 typedHash = _hashTypedDataV4( keccak256( abi.encode( keccak256( "WithdrawReward(address executor,bytes32 assetId,uint256 amount,uint256[] erc721TokenIds,uint256 nonce,uint256 availableAfter,uint256 deadline)" ), data.executor, data.assetId, data.amount, keccak256(abi.encodePacked(data.erc721TokenIds)), data.nonce, data.availableAfter, data.deadline ) ) ); require( ECDSA.recover(typedHash, signature) == stakingManager.signer(), "ERH: Wrong signature" ); } receive() payable external{} // 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":"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"},{"inputs":[{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes32","name":"assetId","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"erc721TokenIds","type":"uint256[]"},{"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":"withdrawReward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes32","name":"assetId","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"erc721TokenIds","type":"uint256[]"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"availableAfter","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct EarnRewardsHolder.ExecutionData[]","name":"data","type":"tuple[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"name":"withdrawRewards","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
61014060405234801561001157600080fd5b50604051611f25380380611f258339810160408190526100309161013d565b604080518082018252600b81526a4561726e4e6574776f726b60a81b60208083019182528351808501855260018152603160f81b81830152835190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a081815287517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818701819052818a0186905260608201859052608082019390935230818301528851808203909201825260c0019097528651969093019590952086959192906080523060c0526101205250506001600081905580546001600160a01b0319166001600160a01b0394909416939093179092555061016d915050565b60006020828403121561014f57600080fd5b81516001600160a01b038116811461016657600080fd5b9392505050565b60805160a05160c05160e0516101005161012051611d696101bc6000396000610fe2015260006110310152600061100c01526000610f6501526000610f8f01526000610fb90152611d696000f3fe60806040526004361061007a5760003560e01c806301ffc9a714610086578063150b7a02146100bb57806322828cc2146100f45780633a0883261461012c5780635d00bb121461014e5780637d3a16b91461017e5780638ae7192b14610191578063bc197c81146101a4578063f23a6e61146101c457600080fd5b3661008157005b600080fd5b34801561009257600080fd5b506100a66100a136600461143f565b6101f0565b60405190151581526020015b60405180910390f35b3480156100c757600080fd5b506100db6100d6366004611572565b610227565b6040516001600160e01b031990911681526020016100b2565b34801561010057600080fd5b50600154610114906001600160a01b031681565b6040516001600160a01b0390911681526020016100b2565b34801561013857600080fd5b5061014c610147366004611678565b610238565b005b34801561015a57600080fd5b506100a66101693660046116ed565b60026020526000908152604090205460ff1681565b61014c61018c366004611785565b610483565b61014c61019f3660046118d5565b61053e565b3480156101b057600080fd5b506100db6101bf36600461197b565b6105a5565b3480156101d057600080fd5b506100db6101df366004611a1b565b63f23a6e6160e01b95945050505050565b60006001600160e01b03198216630271189760e51b148061022157506301ffc9a760e01b6001600160e01b03198316145b92915050565b630a85bd0160e11b5b949350505050565b600160009054906101000a90046001600160a01b03166001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa15801561028b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102af9190611a83565b6001600160a01b0316336001600160a01b0316146103065760405162461bcd60e51b815260206004820152600f60248201526e22a0a41d1027b7363c9030b236b4b760891b60448201526064015b60405180910390fd5b60015460405163718d7f9560e11b81526001600160a01b039091169063e31aff2a9061033d90600090899089908990600401611ad8565b6060604051808303816000875af115801561035c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103809190611b02565b506001546040516371ae49d560e11b81526000916001600160a01b03169063e35c93aa906103b690899089908990600401611b6a565b602060405180830381865afa1580156103d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f79190611b8e565b905061047b600160009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561044f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104739190611a83565b8484846105b7565b505050505050565b61048b61087d565b80518251146104d55760405162461bcd60e51b815260206004820152601660248201527508aa4907440aee4dedcce40c8c2e8c240d8cadccee8d60531b60448201526064016102fd565b60005b825181101561052f5761051d8382815181106104f6576104f6611ba7565b602002602001015183838151811061051057610510611ba7565b60200260200101516108d6565b8061052781611bbd565b9150506104d8565b5061053a6001600055565b5050565b61054661087d565b60006040518060e001604052808a6001600160a01b0316815260200189815260200188815260200187815260200186815260200185815260200184815250905061059081836108d6565b5061059b6001600055565b5050505050505050565b63bc197c8160e01b5b95945050505050565b600154604051634fed2db360e11b8152600481018390526000916001600160a01b031690639fda5b6690602401606060405180830381865afa158015610601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106259190611b02565b905060018160400151600481111561063f5761063f611aa0565b0361065f57805161065a906001600160a01b03168686610a9e565b610876565b60028160400151600481111561067757610677611aa0565b0361073a5760005b83518110156107345781600001516001600160a01b03166342842e0e30888785815181106106af576106af611ba7565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561070957600080fd5b505af115801561071d573d6000803e3d6000fd5b50505050808061072c90611bbd565b91505061067f565b50610876565b60038160400151600481111561075257610752611aa0565b036107e15780516020820151604051637921219560e11b81523060048201526001600160a01b03888116602483015260448201929092526064810187905260a06084820152600060a482015291169063f242432a9060c401600060405180830381600087803b1580156107c457600080fd5b505af11580156107d8573d6000803e3d6000fd5b50505050610876565b6004816040015160048111156107f9576107f9611aa0565b03610834576040516001600160a01b0386169085156108fc029086906000818181858888f19350505050158015610734573d6000803e3d6000fd5b60405162461bcd60e51b81526020600482015260176024820152764541483a20756e6b6e6f776e206173736574207479706560481b60448201526064016102fd565b5050505050565b6002600054036108cf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102fd565b6002600055565b81516001600160a01b031633146109255760405162461bcd60e51b815260206004820152601360248201527222a9241d102bb937b7339032bc32b1baba37b960691b60448201526064016102fd565b60008260400151116109765760405162461bcd60e51b815260206004820152601a6024820152794552483a20616d6f756e742063616e6e6f74206265207a65726f60301b60448201526064016102fd565b6109808282610af5565b61098d8260800151610d45565b6001546020830151604051634183256760e01b815260048101919091526000916001600160a01b031690634183256790602401606060405180830381865afa1580156109dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a019190611b02565b9050610a1b338460400151856060015186602001516105b7565b60018054845160808601518451604080890151602088015160608b01519251632080f19960e21b81526001600160a01b0390971697638203c66497610a67979695949190600401611be4565b600060405180830381600087803b158015610a8157600080fd5b505af1158015610a95573d6000803e3d6000fd5b50505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610af0908490610e05565b505050565b428260c001511015610b445760405162461bcd60e51b81526020600482015260186024820152771154920e88191958591b1a5b99481a5cc81c995858da195960421b60448201526064016102fd565b428260a001511115610b915760405162461bcd60e51b81526020600482015260166024820152751154920e881b9bdd08185d985a5b18589b19481e595d60521b60448201526064016102fd565b6000610c6c7f28307995d70334fe18b4c5c84661b4c0750a446972f8fc55a7b251c8b87048a28460000151856020015186604001518760600151604051602001610bdb9190611c68565b6040516020818303038152906040528051906020012088608001518960a001518a60c00151604051602001610c519897969594939291909788526001600160a01b0396909616602088015260408701949094526060860192909252608085015260a084015260c083015260e08201526101000190565b60405160208183030381529060405280519060200120610ed7565b9050600160009054906101000a90046001600160a01b03166001600160a01b031663238ac9336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce59190611a83565b6001600160a01b0316610cf88284610f25565b6001600160a01b031614610af05760405162461bcd60e51b81526020600482015260146024820152734552483a2057726f6e67207369676e617475726560601b60448201526064016102fd565b60008111610d915760405162461bcd60e51b81526020600482015260196024820152784541483a204e6f6e63652063616e6e6f74206265207a65726f60381b60448201526064016102fd565b60008181526002602052604090205460ff1615610dea5760405162461bcd60e51b81526020600482015260176024820152761150520e88139bdb98d948185b1c9958591e481d5cd959604a1b60448201526064016102fd565b6000908152600260205260409020805460ff19166001179055565b6000610e5a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f499092919063ffffffff16565b805190915015610af05780806020019051810190610e789190611c9e565b610af05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102fd565b6000610221610ee4610f58565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000610f34858561107f565b91509150610f41816110c4565b509392505050565b6060610230848460008561120c565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610fb157507f000000000000000000000000000000000000000000000000000000000000000046145b15610fdb57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041036110b55760208301516040840151606085015160001a6110a9878285856112e7565b945094505050506110bd565b506000905060025b9250929050565b60008160048111156110d8576110d8611aa0565b036110e05750565b60018160048111156110f4576110f4611aa0565b0361113c5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016102fd565b600281600481111561115057611150611aa0565b0361119d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016102fd565b60038160048111156111b1576111b1611aa0565b036112095760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016102fd565b50565b60608247101561126d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102fd565b600080866001600160a01b031685876040516112899190611ce4565b60006040518083038185875af1925050503d80600081146112c6576040519150601f19603f3d011682016040523d82523d6000602084013e6112cb565b606091505b50915091506112dc878383876113a1565b979650505050505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156113145750600090506003611398565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611368573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661139157600060019250925050611398565b9150600090505b94509492505050565b60608315611410578251600003611409576001600160a01b0385163b6114095760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102fd565b5081610230565b61023083838151156114255781518083602001fd5b8060405162461bcd60e51b81526004016102fd9190611d00565b60006020828403121561145157600080fd5b81356001600160e01b03198116811461146957600080fd5b9392505050565b6001600160a01b038116811461120957600080fd5b803561149081611470565b919050565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156114cd576114cd611495565b60405290565b604051601f8201601f191681016001600160401b03811182821017156114fb576114fb611495565b604052919050565b600082601f83011261151457600080fd5b81356001600160401b0381111561152d5761152d611495565b611540601f8201601f19166020016114d3565b81815284602083860101111561155557600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000806080858703121561158857600080fd5b843561159381611470565b935060208501356115a381611470565b92506040850135915060608501356001600160401b038111156115c557600080fd5b6115d187828801611503565b91505092959194509250565b6005811061120957600080fd5b60006001600160401b0382111561160357611603611495565b5060051b60200190565b600082601f83011261161e57600080fd5b8135602061163361162e836115ea565b6114d3565b82815260059290921b8401810191818101908684111561165257600080fd5b8286015b8481101561166d5780358352918301918301611656565b509695505050505050565b600080600080600060a0868803121561169057600080fd5b853561169b81611470565b94506020860135935060408601356116b2816115dd565b92506060860135915060808601356001600160401b038111156116d457600080fd5b6116e08882890161160d565b9150509295509295909350565b6000602082840312156116ff57600080fd5b5035919050565b600082601f83011261171757600080fd5b8135602061172761162e836115ea565b82815260059290921b8401810191818101908684111561174657600080fd5b8286015b8481101561166d5780356001600160401b038111156117695760008081fd5b6117778986838b0101611503565b84525091830191830161174a565b6000806040838503121561179857600080fd5b82356001600160401b03808211156117af57600080fd5b818501915085601f8301126117c357600080fd5b813560206117d361162e836115ea565b82815260059290921b840181019181810190898411156117f257600080fd5b8286015b848110156118a75780358681111561180d57600080fd5b870160e0818d03601f1901121561182357600080fd5b61182b6114ab565b611836868301611485565b8152604082013586820152606082013560408201526080808301358981111561185f5760008081fd5b61186d8f898387010161160d565b60608401525060a0838101359183019190915260c0808401359183019190915260e0909201359181019190915283529183019183016117f6565b50965050860135925050808211156118be57600080fd5b506118cb85828601611706565b9150509250929050565b600080600080600080600080610100898b0312156118f257600080fd5b88356118fd81611470565b9750602089013596506040890135955060608901356001600160401b038082111561192757600080fd5b6119338c838d0161160d565b965060808b0135955060a08b0135945060c08b0135935060e08b013591508082111561195e57600080fd5b5061196b8b828c01611503565b9150509295985092959890939650565b600080600080600060a0868803121561199357600080fd5b853561199e81611470565b945060208601356119ae81611470565b935060408601356001600160401b03808211156119ca57600080fd5b6119d689838a0161160d565b945060608801359150808211156119ec57600080fd5b6119f889838a0161160d565b93506080880135915080821115611a0e57600080fd5b506116e088828901611503565b600080600080600060a08688031215611a3357600080fd5b8535611a3e81611470565b94506020860135611a4e81611470565b9350604086013592506060860135915060808601356001600160401b03811115611a7757600080fd5b6116e088828901611503565b600060208284031215611a9557600080fd5b815161146981611470565b634e487b7160e01b600052602160045260246000fd5b60058110611ad457634e487b7160e01b600052602160045260246000fd5b9052565b8481526001600160a01b038416602082015260408101839052608081016105ae6060830184611ab6565b600060608284031215611b1457600080fd5b604051606081016001600160401b0381118282101715611b3657611b36611495565b6040528251611b4481611470565b8152602083810151908201526040830151611b5e816115dd565b60408201529392505050565b6001600160a01b038416815260208101839052606081016102306040830184611ab6565b600060208284031215611ba057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201611bdd57634e487b7160e01b600052601160045260246000fd5b5060010190565b6001600160a01b03888116825260208083018990529087166040830152606082018690526080820185905260e060a0830181905284519083018190526000918581019161010085019190845b81811015611c4c57845184529382019392820192600101611c30565b505050809250505082151560c083015298975050505050505050565b815160009082906020808601845b83811015611c9257815185529382019390820190600101611c76565b50929695505050505050565b600060208284031215611cb057600080fd5b8151801515811461146957600080fd5b60005b83811015611cdb578181015183820152602001611cc3565b50506000910152565b60008251611cf6818460208701611cc0565b9190910192915050565b6020815260008251806020840152611d1f816040850160208701611cc0565b601f01601f1916919091016040019291505056fea2646970667358221220bf7bb62999e33aba6c1f8bc790b16da8f50d19df0066efe4931239009cf7855764736f6c634300081400330000000000000000000000002a1d63c71db48061d2270b7c7c6d844115574644
Deployed Bytecode
0x60806040526004361061007a5760003560e01c806301ffc9a714610086578063150b7a02146100bb57806322828cc2146100f45780633a0883261461012c5780635d00bb121461014e5780637d3a16b91461017e5780638ae7192b14610191578063bc197c81146101a4578063f23a6e61146101c457600080fd5b3661008157005b600080fd5b34801561009257600080fd5b506100a66100a136600461143f565b6101f0565b60405190151581526020015b60405180910390f35b3480156100c757600080fd5b506100db6100d6366004611572565b610227565b6040516001600160e01b031990911681526020016100b2565b34801561010057600080fd5b50600154610114906001600160a01b031681565b6040516001600160a01b0390911681526020016100b2565b34801561013857600080fd5b5061014c610147366004611678565b610238565b005b34801561015a57600080fd5b506100a66101693660046116ed565b60026020526000908152604090205460ff1681565b61014c61018c366004611785565b610483565b61014c61019f3660046118d5565b61053e565b3480156101b057600080fd5b506100db6101bf36600461197b565b6105a5565b3480156101d057600080fd5b506100db6101df366004611a1b565b63f23a6e6160e01b95945050505050565b60006001600160e01b03198216630271189760e51b148061022157506301ffc9a760e01b6001600160e01b03198316145b92915050565b630a85bd0160e11b5b949350505050565b600160009054906101000a90046001600160a01b03166001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa15801561028b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102af9190611a83565b6001600160a01b0316336001600160a01b0316146103065760405162461bcd60e51b815260206004820152600f60248201526e22a0a41d1027b7363c9030b236b4b760891b60448201526064015b60405180910390fd5b60015460405163718d7f9560e11b81526001600160a01b039091169063e31aff2a9061033d90600090899089908990600401611ad8565b6060604051808303816000875af115801561035c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103809190611b02565b506001546040516371ae49d560e11b81526000916001600160a01b03169063e35c93aa906103b690899089908990600401611b6a565b602060405180830381865afa1580156103d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f79190611b8e565b905061047b600160009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561044f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104739190611a83565b8484846105b7565b505050505050565b61048b61087d565b80518251146104d55760405162461bcd60e51b815260206004820152601660248201527508aa4907440aee4dedcce40c8c2e8c240d8cadccee8d60531b60448201526064016102fd565b60005b825181101561052f5761051d8382815181106104f6576104f6611ba7565b602002602001015183838151811061051057610510611ba7565b60200260200101516108d6565b8061052781611bbd565b9150506104d8565b5061053a6001600055565b5050565b61054661087d565b60006040518060e001604052808a6001600160a01b0316815260200189815260200188815260200187815260200186815260200185815260200184815250905061059081836108d6565b5061059b6001600055565b5050505050505050565b63bc197c8160e01b5b95945050505050565b600154604051634fed2db360e11b8152600481018390526000916001600160a01b031690639fda5b6690602401606060405180830381865afa158015610601573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106259190611b02565b905060018160400151600481111561063f5761063f611aa0565b0361065f57805161065a906001600160a01b03168686610a9e565b610876565b60028160400151600481111561067757610677611aa0565b0361073a5760005b83518110156107345781600001516001600160a01b03166342842e0e30888785815181106106af576106af611ba7565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561070957600080fd5b505af115801561071d573d6000803e3d6000fd5b50505050808061072c90611bbd565b91505061067f565b50610876565b60038160400151600481111561075257610752611aa0565b036107e15780516020820151604051637921219560e11b81523060048201526001600160a01b03888116602483015260448201929092526064810187905260a06084820152600060a482015291169063f242432a9060c401600060405180830381600087803b1580156107c457600080fd5b505af11580156107d8573d6000803e3d6000fd5b50505050610876565b6004816040015160048111156107f9576107f9611aa0565b03610834576040516001600160a01b0386169085156108fc029086906000818181858888f19350505050158015610734573d6000803e3d6000fd5b60405162461bcd60e51b81526020600482015260176024820152764541483a20756e6b6e6f776e206173736574207479706560481b60448201526064016102fd565b5050505050565b6002600054036108cf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102fd565b6002600055565b81516001600160a01b031633146109255760405162461bcd60e51b815260206004820152601360248201527222a9241d102bb937b7339032bc32b1baba37b960691b60448201526064016102fd565b60008260400151116109765760405162461bcd60e51b815260206004820152601a6024820152794552483a20616d6f756e742063616e6e6f74206265207a65726f60301b60448201526064016102fd565b6109808282610af5565b61098d8260800151610d45565b6001546020830151604051634183256760e01b815260048101919091526000916001600160a01b031690634183256790602401606060405180830381865afa1580156109dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a019190611b02565b9050610a1b338460400151856060015186602001516105b7565b60018054845160808601518451604080890151602088015160608b01519251632080f19960e21b81526001600160a01b0390971697638203c66497610a67979695949190600401611be4565b600060405180830381600087803b158015610a8157600080fd5b505af1158015610a95573d6000803e3d6000fd5b50505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610af0908490610e05565b505050565b428260c001511015610b445760405162461bcd60e51b81526020600482015260186024820152771154920e88191958591b1a5b99481a5cc81c995858da195960421b60448201526064016102fd565b428260a001511115610b915760405162461bcd60e51b81526020600482015260166024820152751154920e881b9bdd08185d985a5b18589b19481e595d60521b60448201526064016102fd565b6000610c6c7f28307995d70334fe18b4c5c84661b4c0750a446972f8fc55a7b251c8b87048a28460000151856020015186604001518760600151604051602001610bdb9190611c68565b6040516020818303038152906040528051906020012088608001518960a001518a60c00151604051602001610c519897969594939291909788526001600160a01b0396909616602088015260408701949094526060860192909252608085015260a084015260c083015260e08201526101000190565b60405160208183030381529060405280519060200120610ed7565b9050600160009054906101000a90046001600160a01b03166001600160a01b031663238ac9336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce59190611a83565b6001600160a01b0316610cf88284610f25565b6001600160a01b031614610af05760405162461bcd60e51b81526020600482015260146024820152734552483a2057726f6e67207369676e617475726560601b60448201526064016102fd565b60008111610d915760405162461bcd60e51b81526020600482015260196024820152784541483a204e6f6e63652063616e6e6f74206265207a65726f60381b60448201526064016102fd565b60008181526002602052604090205460ff1615610dea5760405162461bcd60e51b81526020600482015260176024820152761150520e88139bdb98d948185b1c9958591e481d5cd959604a1b60448201526064016102fd565b6000908152600260205260409020805460ff19166001179055565b6000610e5a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f499092919063ffffffff16565b805190915015610af05780806020019051810190610e789190611c9e565b610af05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102fd565b6000610221610ee4610f58565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000610f34858561107f565b91509150610f41816110c4565b509392505050565b6060610230848460008561120c565b6000306001600160a01b037f0000000000000000000000005b52b1988de8685540d12ba72980376fa2baaa9116148015610fb157507f000000000000000000000000000000000000000000000000000000000000001946145b15610fdb57507f0b8497acdf3ba6704e86bd6b74b7b841dcd5999b7f288cf81a7d9cf2a3c6f5c690565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fe16353b5cddd4c67ace23caaa71458b10b016dce36ffaf5614623106aae0292b828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008082516041036110b55760208301516040840151606085015160001a6110a9878285856112e7565b945094505050506110bd565b506000905060025b9250929050565b60008160048111156110d8576110d8611aa0565b036110e05750565b60018160048111156110f4576110f4611aa0565b0361113c5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016102fd565b600281600481111561115057611150611aa0565b0361119d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016102fd565b60038160048111156111b1576111b1611aa0565b036112095760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016102fd565b50565b60608247101561126d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102fd565b600080866001600160a01b031685876040516112899190611ce4565b60006040518083038185875af1925050503d80600081146112c6576040519150601f19603f3d011682016040523d82523d6000602084013e6112cb565b606091505b50915091506112dc878383876113a1565b979650505050505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b038311156113145750600090506003611398565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611368573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661139157600060019250925050611398565b9150600090505b94509492505050565b60608315611410578251600003611409576001600160a01b0385163b6114095760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102fd565b5081610230565b61023083838151156114255781518083602001fd5b8060405162461bcd60e51b81526004016102fd9190611d00565b60006020828403121561145157600080fd5b81356001600160e01b03198116811461146957600080fd5b9392505050565b6001600160a01b038116811461120957600080fd5b803561149081611470565b919050565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156114cd576114cd611495565b60405290565b604051601f8201601f191681016001600160401b03811182821017156114fb576114fb611495565b604052919050565b600082601f83011261151457600080fd5b81356001600160401b0381111561152d5761152d611495565b611540601f8201601f19166020016114d3565b81815284602083860101111561155557600080fd5b816020850160208301376000918101602001919091529392505050565b6000806000806080858703121561158857600080fd5b843561159381611470565b935060208501356115a381611470565b92506040850135915060608501356001600160401b038111156115c557600080fd5b6115d187828801611503565b91505092959194509250565b6005811061120957600080fd5b60006001600160401b0382111561160357611603611495565b5060051b60200190565b600082601f83011261161e57600080fd5b8135602061163361162e836115ea565b6114d3565b82815260059290921b8401810191818101908684111561165257600080fd5b8286015b8481101561166d5780358352918301918301611656565b509695505050505050565b600080600080600060a0868803121561169057600080fd5b853561169b81611470565b94506020860135935060408601356116b2816115dd565b92506060860135915060808601356001600160401b038111156116d457600080fd5b6116e08882890161160d565b9150509295509295909350565b6000602082840312156116ff57600080fd5b5035919050565b600082601f83011261171757600080fd5b8135602061172761162e836115ea565b82815260059290921b8401810191818101908684111561174657600080fd5b8286015b8481101561166d5780356001600160401b038111156117695760008081fd5b6117778986838b0101611503565b84525091830191830161174a565b6000806040838503121561179857600080fd5b82356001600160401b03808211156117af57600080fd5b818501915085601f8301126117c357600080fd5b813560206117d361162e836115ea565b82815260059290921b840181019181810190898411156117f257600080fd5b8286015b848110156118a75780358681111561180d57600080fd5b870160e0818d03601f1901121561182357600080fd5b61182b6114ab565b611836868301611485565b8152604082013586820152606082013560408201526080808301358981111561185f5760008081fd5b61186d8f898387010161160d565b60608401525060a0838101359183019190915260c0808401359183019190915260e0909201359181019190915283529183019183016117f6565b50965050860135925050808211156118be57600080fd5b506118cb85828601611706565b9150509250929050565b600080600080600080600080610100898b0312156118f257600080fd5b88356118fd81611470565b9750602089013596506040890135955060608901356001600160401b038082111561192757600080fd5b6119338c838d0161160d565b965060808b0135955060a08b0135945060c08b0135935060e08b013591508082111561195e57600080fd5b5061196b8b828c01611503565b9150509295985092959890939650565b600080600080600060a0868803121561199357600080fd5b853561199e81611470565b945060208601356119ae81611470565b935060408601356001600160401b03808211156119ca57600080fd5b6119d689838a0161160d565b945060608801359150808211156119ec57600080fd5b6119f889838a0161160d565b93506080880135915080821115611a0e57600080fd5b506116e088828901611503565b600080600080600060a08688031215611a3357600080fd5b8535611a3e81611470565b94506020860135611a4e81611470565b9350604086013592506060860135915060808601356001600160401b03811115611a7757600080fd5b6116e088828901611503565b600060208284031215611a9557600080fd5b815161146981611470565b634e487b7160e01b600052602160045260246000fd5b60058110611ad457634e487b7160e01b600052602160045260246000fd5b9052565b8481526001600160a01b038416602082015260408101839052608081016105ae6060830184611ab6565b600060608284031215611b1457600080fd5b604051606081016001600160401b0381118282101715611b3657611b36611495565b6040528251611b4481611470565b8152602083810151908201526040830151611b5e816115dd565b60408201529392505050565b6001600160a01b038416815260208101839052606081016102306040830184611ab6565b600060208284031215611ba057600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201611bdd57634e487b7160e01b600052601160045260246000fd5b5060010190565b6001600160a01b03888116825260208083018990529087166040830152606082018690526080820185905260e060a0830181905284519083018190526000918581019161010085019190845b81811015611c4c57845184529382019392820192600101611c30565b505050809250505082151560c083015298975050505050505050565b815160009082906020808601845b83811015611c9257815185529382019390820190600101611c76565b50929695505050505050565b600060208284031215611cb057600080fd5b8151801515811461146957600080fd5b60005b83811015611cdb578181015183820152602001611cc3565b50506000910152565b60008251611cf6818460208701611cc0565b9190910192915050565b6020815260008251806020840152611d1f816040850160208701611cc0565b601f01601f1916919091016040019291505056fea2646970667358221220bf7bb62999e33aba6c1f8bc790b16da8f50d19df0066efe4931239009cf7855764736f6c63430008140033
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 | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 28.49% | $0.000001 | 47,108,346,010.0092 | $41,752.13 | |
BASE | 9.68% | $0.005112 | 2,774,926.1905 | $14,185.95 | |
BASE | 1.45% | $0.000003 | 757,761,389 | $2,121.73 | |
BASE | 1.25% | $0.179673 | 10,207.4288 | $1,834 | |
BASE | 0.90% | $0.000154 | 8,578,237.3499 | $1,322.52 | |
BASE | 0.16% | $0.015544 | 14,903.0038 | $231.65 | |
BASE | 0.13% | $1.81 | 102.5216 | $185.56 | |
BASE | 0.05% | $3,907.56 | 0.02 | $78.15 | |
BASE | 0.05% | $0.000257 | 289,066.1848 | $74.4 | |
BASE | 0.03% | $0.000065 | 791,025 | $51.12 | |
BASE | <0.01% | $0.001742 | 5,889.0263 | $10.26 | |
BASE | <0.01% | $1 | 10 | $10 | |
BASE | <0.01% | $0.00496 | 100 | $0.496 | |
BASE | <0.01% | $0.00033 | 500 | $0.1652 | |
CRONOS | 16.53% | $0.000042 | 572,124,638.6699 | $24,223.76 | |
CRONOS | 4.85% | $0.184028 | 38,639.1038 | $7,110.68 | |
CRONOS | 2.65% | $0.000184 | 21,052,817.2092 | $3,879.02 | |
CRONOS | 1.65% | $0.000003 | 934,749,579.5985 | $2,411.65 | |
CRONOS | 1.50% | $0.00426 | 515,645.1184 | $2,196.51 | |
CRONOS | 1.19% | $0.000005 | 337,877,519.7099 | $1,743.45 | |
CRONOS | 1.16% | $0.006476 | 262,256.9427 | $1,698.26 | |
CRONOS | 1.13% | $0.000004 | 398,517,168.7809 | $1,657.83 | |
CRONOS | 0.93% | $0.000541 | 2,506,052.2305 | $1,356.75 | |
CRONOS | 0.37% | $0.000182 | 3,013,814.7508 | $547.73 | |
CRONOS | 0.26% | <$0.000001 | 9,204,937,299.0021 | $376.48 | |
CRONOS | 0.22% | $0.000022 | 14,328,724.867 | $315.95 | |
CRONOS | 0.13% | $0.000304 | 615,383.6729 | $187.24 | |
CRONOS | 0.04% | $0.000005 | 13,569,105.7706 | $65.27 | |
BSC | 15.35% | $0.000562 | 40,000,000 | $22,493.2 | |
BSC | 1.14% | $2.34 | 714.3335 | $1,673.45 | |
BSC | 0.88% | $0.406321 | 3,190.8521 | $1,296.51 | |
BSC | 0.87% | $0.001273 | 998,620.7971 | $1,271.22 | |
BSC | 0.67% | $0.002462 | 398,092.4482 | $980.16 | |
BSC | 0.61% | $709 | 1.2596 | $893.08 | |
BSC | 0.52% | $0.001427 | 535,874.0909 | $764.7 | |
BSC | 0.45% | $0.000028 | 23,371,032.4653 | $655.85 | |
BSC | 0.38% | $120.83 | 4.6079 | $556.77 | |
BSC | 0.16% | $0.205508 | 1,163.1275 | $239.03 | |
BSC | 0.16% | $0.000238 | 999,898.836 | $237.76 | |
BSC | 0.16% | <$0.000001 | 949,975,414.9136 | $231.55 | |
BSC | 0.11% | <$0.000001 | 730,000,000 | $168.33 | |
BSC | 0.10% | $1 | 150 | $150 | |
BSC | 0.02% | $0.068915 | 399.824 | $27.55 | |
BSC | <0.01% | $0.000044 | 71,444.5683 | $3.11 | |
BSC | <0.01% | $707.75 | 0.00000001 | $0.000007 | |
ARB | 0.43% | $0.000024 | 26,512,889.6059 | $627.03 | |
ARB | 0.28% | $1.04 | 390 | $405.21 | |
ARB | 0.25% | $0.643745 | 565.9033 | $364.3 | |
ARB | 0.11% | <$0.000001 | 699,689,762.3897 | $161.42 | |
POL | 0.46% | <$0.000001 | 39,508,982,518.486 | $667.7 | |
POL | 0.31% | $0.000005 | 88,419,241.401 | $453.64 | |
POL | 0.14% | $1 | 199.9769 | $199.98 | |
POL | 0.09% | $0.62627 | 214.997 | $134.65 | |
AVAX | 0.37% | $0.033279 | 16,486.5149 | $548.65 | |
AVAX | 0.34% | $52.92 | 9.5493 | $505.39 | |
AVAX | 0.27% | $0.000002 | 166,596,895.6736 | $389.84 | |
ETH | 0.45% | <$0.000001 | 6,739,507,233.0138 | $662.96 | |
ETH | 0.12% | $0.356609 | 474.7934 | $169.32 |
[ 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.