// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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);
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.11;
/**
@title A minimalistic, gas-efficient ERC-721 implementation forked from the
`Super721` ERC-721 implementation used by SuperFarm.
@author Tim Clancy
@author 0xthrpw
@author Qazawat Zirak
@author Rostislav Khlebnikov
Compared to the original `Super721` implementation that this contract forked
from, this is a very pared-down contract that includes simple delegated
minting and transfer locks.
This contract includes the gas efficiency techniques graciously shared with
the world in the specific ERC-721 implementation by Chiru Labs that is being
called "ERC-721A" (https://github.com/chiru-labs/ERC721A). We have validated
this contract against their test cases.
February 8th, 2022.
*/
interface ITiny721 {
/**
Return whether or not the transfer of a particular token ID `_id` is locked.
@param _id The ID of the token to check the lock status of.
@return Whether or not the particular token ID `_id` has transfers locked.
*/
function transferLocks (
uint256 _id
) external returns (bool);
/**
Provided with an address parameter, this function returns the number of all
tokens in this collection that are owned by the specified address.
@param _owner The address of the account for which we are checking balances
*/
function balanceOf (
address _owner
) external returns ( uint256 );
/**
Return the address that holds a particular token ID.
@param _id The token ID to check for the holding address of.
@return The address that holds the token with ID of `_id`.
*/
function ownerOf (
uint256 _id
) external returns (address);
/**
This function allows permissioned minters of this contract to mint one or
more tokens dictated by the `_amount` parameter. Any minted tokens are sent
to the `_recipient` address.
Note that tokens are always minted sequentially starting at one. That is,
the list of token IDs is always increasing and looks like [ 1, 2, 3... ].
Also note that per our use cases the intended recipient of these minted
items will always be externally-owned accounts and not other contracts. As a
result there is no safety check on whether or not the mint destination can
actually correctly handle an ERC-721 token.
@param _recipient The recipient of the tokens being minted.
@param _amount The amount of tokens to mint.
*/
function mint_Qgo (
address _recipient,
uint256 _amount
) external;
/**
This function allows an administrative caller to lock the transfer of
particular token IDs. This is designed for a non-escrow staking contract
that comes later to lock a user's NFT while still letting them keep it in
their wallet.
@param _id The ID of the token to lock.
@param _locked The status of the lock; true to lock, false to unlock.
*/
function lockTransfer (
uint256 _id,
bool _locked
) external;
}
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../interfaces/ITiny721.sol";
/*
It saves bytecode to revert on custom errors instead of using require
statements. We are just declaring these errors for reverting with upon various
conditions later in this contract.
*/
error CannotConfigureEmptyCriteria();
error CannotConfigureWithoutOutputItem();
error CannotConfigureWithoutPaymentToken();
error CannotRedeemForZeroItems();
error CannotRedeemCriteriaLengthMismatch();
error CannotRedeemItemAlreadyRedeemed();
error CannotRedeemUnownedItem();
error SweepingTransferFailed();
/**
@title A contract for minting ERC-721 items given an ERC-20 token burn and
ownership of some prerequisite ERC-721 items.
@author 0xthrpw
@author Tim Clancy
This contract allows for the configuration of multiple redemption rounds. Each
redemption round is configured with a set of ERC-721 item collection addresses
in the `redemptionCriteria` mapping that any prospective redeemers must hold.
Each redemption round is also configured with a redemption configuration per
the `redemptionConfigs` mapping. This configuration allows a caller holding
the required ERC-721 items to mint some amount `amountOut` of a new ERC-721
`tokenOut` item in exchange for burning `price` amount of a `payingToken`
ERC-20 token.
Any ERC-721 collection being minted by this redeemer must grant minting
permissions to this contract in some fashion. Users must also approve this
contract to spend any requisite `payingToken` ERC-20 tokens on their behalf.
April 27th, 2022.
*/
contract ImpostorsRedeemer721 is
Ownable, ReentrancyGuard
{
using SafeERC20 for IERC20;
/**
A configurable address to transfer burned ERC-20 tokens to. The intent of
specifying an address like this is to support burning otherwise unburnable
ERC-20 tokens by transferring them to provably unrecoverable destinations,
such as blackhole smart contracts.
*/
address public immutable burnDestination;
/**
A mapping from a redemption round ID to an array of ERC-721 item collection
addresses required to be held in fulfilling a redemption claim. In order to
participate in a redemption round, a caller must hold a specific item from
each of these required ERC-721 item collections.
*/
mapping ( uint256 => address[] ) public redemptionCriteria;
/**
This struct is used when configuring a redemption round to specify a
caller's required payment and the ERC-721 items they may be minted in
return.
@param price The amount of `payingToken` that a caller must pay for each set
of items redeemed in this round.
@param tokenOut The address of the ERC-721 item collection from which a
caller will receive newly-minted items.
@param payingToken The ERC-20 token of which `price` must be paid for each
redemption.
@param amountOut The number of new `tokenOut` ERC-721 items a caller will
receive in return for fulfilling a claim.
*/
struct RedemptionConfig {
uint96 price;
address tokenOut;
address payingToken;
uint96 amountOut;
}
/// A mapping from a redemption round ID to its configuration details.
mapping ( uint256 => RedemptionConfig ) public redemptionConfigs;
/**
A triple mapping from a redemption round ID to an ERC-721 item collection
address to the token ID of a specific item in the ERC-721 item collection.
This mapping ensures that a specific item can only be used once in any given
redemption round.
*/
mapping (
uint256 => mapping (
address => mapping (
uint256 => bool
)
)
) public redeemed;
/**
An event tracking a claim in a redemption round for some ERC-721 items.
@param round The redemption round ID involved in the claim.
@param caller The caller who triggered the claim.
@param tokenIds The array of token IDs for specific items keyed against the
matching `criteria` paramter.
*/
event TokenRedemption (
uint256 indexed round,
address indexed caller,
uint256[] tokenIds
);
/**
An event tracking a configuration update for the details of a particular
redemption round.
@param round The redemption round ID with updated configuration.
@param criteria The array of ERC-721 item collection addresses required for
fulfilling a redemption claim in this round.
@param configuration The updated `RedemptionConfig` configuration details
for this round.
*/
event ConfigUpdate (
uint256 indexed round,
address[] indexed criteria,
RedemptionConfig indexed configuration
);
/**
Construct a new item redeemer by specifying a destination for burnt tokens.
@param _burnDestination An address where tokens received for fulfilling
redemptions are sent.
*/
constructor (
address _burnDestination
) {
burnDestination = _burnDestination;
}
/**
Easily check the redemption status of multiple tokens of a single
collection in a single round.
@param _round The round to check for token redemption against.
@param _collection The address of the specific item collection to check.
@param _tokenIds An array of token IDs belonging to the collection
`_collection` to check for redemption status.
@return An array of boolean redemption status for each of the items being
checked in `_tokenIds`.
*/
function isRedeemed (
uint256 _round,
address _collection,
uint256[] memory _tokenIds
) external view returns (bool[] memory) {
bool[] memory redemptionStatus = new bool[](_tokenIds.length);
for (uint256 i = 0; i < _tokenIds.length; i += 1) {
redemptionStatus[i] = redeemed[_round][_collection][_tokenIds[i]];
}
return redemptionStatus;
}
/**
Set the configuration details for a particular redemption round. A specific
redemption round may be effectively disabled by setting the `amountOut`
field of the given `RedemptionConfig` `_config` value to 0.
@param _round The redemption round ID to configure.
@param _criteria An array of ERC-721 item collection addresses to require
holdings from when a caller attempts to redeem from the round of ID
`_round`.
@param _config The `RedemptionConfig` configuration data to use for setting
new configuration details for the round of ID `_round`.
*/
function setConfig (
uint256 _round,
address[] calldata _criteria,
RedemptionConfig calldata _config
) external onlyOwner {
/*
Prevent a redemption round from being configured with no requisite ERC-721
item collection holding criteria.
*/
if (_criteria.length == 0) {
revert CannotConfigureEmptyCriteria();
}
/*
Perform input validation on the provided configuration details. A
redemption round may not be configured with no ERC-721 item collection to
mint as output.
*/
if (_config.tokenOut == address(0)) {
revert CannotConfigureWithoutOutputItem();
}
/*
A redemption round may not be configured with no ERC-20 token address to
attempt to enforce payment from.
*/
if (_config.payingToken == address(0)) {
revert CannotConfigureWithoutPaymentToken();
}
// Update the redemption criteria of this round.
redemptionCriteria[_round] = _criteria;
// Update the contents of the round configuration mapping.
redemptionConfigs[_round] = RedemptionConfig({
amountOut: _config.amountOut,
price: _config.price,
tokenOut: _config.tokenOut,
payingToken: _config.payingToken
});
// Emit the configuration update event.
emit ConfigUpdate(_round, _criteria, _config);
}
/**
Allow a caller to redeem potentially multiple sets of criteria ERC-721 items
in `_tokenIds` against the redemption round of ID `_round`.
@param _round The ID of the redemption round to redeem against.
@param _tokenIds An array of token IDs for the specific ERC-721 items keyed
to the item collection criteria addresses for this round in
the `redemptionCriteria` mapping.
*/
function redeem (
uint256 _round,
uint256[][] memory _tokenIds
) external nonReentrant {
address[] memory criteria = redemptionCriteria[_round];
RedemptionConfig memory config = redemptionConfigs[_round];
// Prevent a caller from redeeming from a round with zero output items.
if (config.amountOut < 1) {
revert CannotRedeemForZeroItems();
}
/*
The caller may be attempting to redeem for multiple independent sets of
items in this redemption round. Process each set of token IDs against the
criteria addresses.
*/
for (uint256 set = 0; set < _tokenIds.length; set += 1) {
/*
If the item set is not the same length as the criteria array, we have a
mismatch and the set cannot possibly be fulfilled.
*/
if (_tokenIds[set].length != criteria.length) {
revert CannotRedeemCriteriaLengthMismatch();
}
/*
Check each item in the set against each of the expected, required
criteria collections.
*/
for (uint256 i; i < criteria.length; i += 1) {
// Verify that no item may be redeemed twice against a single round.
if (redeemed[_round][criteria[i]][_tokenIds[set][i]]) {
revert CannotRedeemItemAlreadyRedeemed();
}
/*
Verify that the caller owns each of the items involved in the
redemption claim.
*/
if (ITiny721(criteria[i]).ownerOf(_tokenIds[set][i]) != _msgSender()) {
revert CannotRedeemUnownedItem();
}
// Flag each item as redeemed against this round.
redeemed[_round][criteria[i]][_tokenIds[set][i]] = true;
}
// Emit an event indicating which tokens were redeemed.
emit TokenRedemption(_round, _msgSender(), _tokenIds[set]);
}
// If there is a non-zero redemption price, perform the required token burn.
if (config.price > 0) {
IERC20(config.payingToken).safeTransferFrom(
_msgSender(),
burnDestination,
config.price * _tokenIds.length
);
}
// Mint the caller their redeemed items.
ITiny721(config.tokenOut).mint_Qgo(
_msgSender(),
config.amountOut * _tokenIds.length
);
}
/**
Allow the owner to sweep either Ether or a particular ERC-20 token from the
contract and send it to another address. This allows the owner of the shop
to withdraw their funds after the sale is completed.
@param _token The token to sweep the balance from; if a zero address is sent
then the contract's balance of Ether will be swept.
@param _destination The address to send the swept tokens to.
@param _amount The amount of token to sweep.
*/
function sweep (
address _token,
address _destination,
uint256 _amount
) external onlyOwner nonReentrant {
// A zero address means we should attempt to sweep Ether.
if (_token == address(0)) {
(bool success, ) = payable(_destination).call{ value: _amount }("");
if (!success) { revert SweepingTransferFailed(); }
// Otherwise, we should try to sweep an ERC-20 token.
} else {
IERC20(_token).safeTransfer(_destination, _amount);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// 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 v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.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));
}
}
/**
* @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");
}
}
}
{
"compilationTarget": {
"contracts/drops/ImpostorsRedeemer721.sol": "ImpostorsRedeemer721"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"_burnDestination","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotConfigureEmptyCriteria","type":"error"},{"inputs":[],"name":"CannotConfigureWithoutOutputItem","type":"error"},{"inputs":[],"name":"CannotConfigureWithoutPaymentToken","type":"error"},{"inputs":[],"name":"CannotRedeemCriteriaLengthMismatch","type":"error"},{"inputs":[],"name":"CannotRedeemForZeroItems","type":"error"},{"inputs":[],"name":"CannotRedeemItemAlreadyRedeemed","type":"error"},{"inputs":[],"name":"CannotRedeemUnownedItem","type":"error"},{"inputs":[],"name":"SweepingTransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"round","type":"uint256"},{"indexed":true,"internalType":"address[]","name":"criteria","type":"address[]"},{"components":[{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"address","name":"payingToken","type":"address"},{"internalType":"uint96","name":"amountOut","type":"uint96"}],"indexed":true,"internalType":"struct ImpostorsRedeemer721.RedemptionConfig","name":"configuration","type":"tuple"}],"name":"ConfigUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"round","type":"uint256"},{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"TokenRedemption","type":"event"},{"inputs":[],"name":"burnDestination","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"},{"internalType":"address","name":"_collection","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isRedeemed","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"},{"internalType":"uint256[][]","name":"_tokenIds","type":"uint256[][]"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"redeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"redemptionConfigs","outputs":[{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"address","name":"payingToken","type":"address"},{"internalType":"uint96","name":"amountOut","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"redemptionCriteria","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"},{"internalType":"address[]","name":"_criteria","type":"address[]"},{"components":[{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"address","name":"payingToken","type":"address"},{"internalType":"uint96","name":"amountOut","type":"uint96"}],"internalType":"struct ImpostorsRedeemer721.RedemptionConfig","name":"_config","type":"tuple"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]