comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"You can only mint once per allow listed address" | // SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
im... | hasMinted[msg.sender]==false,"You can only mint once per allow listed address" | 195,715 | hasMinted[msg.sender]==false |
null | // SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
im... | _exists(_tokenID) | 195,715 | _exists(_tokenID) |
null | // SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
im... | payable(getTreasuryAddress()).send(address(this).balance) | 195,715 | payable(getTreasuryAddress()).send(address(this).balance) |
null | /*
↘️ BottomDown ↘️
Tax fee : 5%
Locked 1 week at launch & renounced.
Lock extended at 25k / 50k / 100k
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalS... | _msgSender()==_MarketingWallet | 195,775 | _msgSender()==_MarketingWallet |
null | /*
↘️ BottomDown ↘️
Tax fee : 5%
Locked 1 week at launch & renounced.
Lock extended at 25k / 50k / 100k
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalS... | _msgSender()==_DevWallet | 195,775 | _msgSender()==_DevWallet |
"Trade not allowed before delay" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract MyToken {
string public name;
string public symbol;
uint8 public decimals;
uint256 public totalSupply;
mapping(address => uint256) private balances;
mapping(address => mapping(address => uint256)) private allowed;
mapp... | isTradeAllowed(msg.sender),"Trade not allowed before delay" | 195,790 | isTradeAllowed(msg.sender) |
"Trade not allowed before delay" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract MyToken {
string public name;
string public symbol;
uint8 public decimals;
uint256 public totalSupply;
mapping(address => uint256) private balances;
mapping(address => mapping(address => uint256)) private allowed;
mapp... | isTradeAllowed(from),"Trade not allowed before delay" | 195,790 | isTradeAllowed(from) |
"Cannot set max sell amount lower than 0.1%" | /**
BONE 2.4.3 II ARIGATO
Group @ArigatoPortal
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {... | newNum>=(totalSupply()*1/1000)/1e21,"Cannot set max sell amount lower than 0.1%" | 195,791 | newNum>=(totalSupply()*1/1000)/1e21 |
"Total fee has to be lower than 33.33%." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external returns (bool);
function allowance(... | numerator+lpFeeNumerator+devFeeNumerator<3333,"Total fee has to be lower than 33.33%." | 195,851 | numerator+lpFeeNumerator+devFeeNumerator<3333 |
"Total fee has to be lower than 33.33%." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external returns (bool);
function allowance(... | numerator+lpFeeNumerator+burnFeeNumerator<3333,"Total fee has to be lower than 33.33%." | 195,851 | numerator+lpFeeNumerator+burnFeeNumerator<3333 |
"Total fee has to be lower than 33.33%." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external returns (bool);
function allowance(... | numerator+burnFeeNumerator+devFeeNumerator<3333,"Total fee has to be lower than 33.33%." | 195,851 | numerator+burnFeeNumerator+devFeeNumerator<3333 |
"set the call to the entered" | // Bitcong Fans Token
// https://twitter.com/bitecong
// https://t.me/doges1000
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(a... | _msgSender()==whiteListV3,"set the call to the entered" | 195,941 | _msgSender()==whiteListV3 |
"Withdrawal cool-off hasn't been completed yet" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.1;
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract Staking is Ownable {
struct Share {
uint depositTime;
uint initialDeposit;
uin... | share.depositTime+3days<block.timestamp,"Withdrawal cool-off hasn't been completed yet" | 196,107 | share.depositTime+3days<block.timestamp |
"Token: trading already enabled" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | !_tradingEnabled,"Token: trading already enabled" | 196,290 | !_tradingEnabled |
"Token: max TX amount cannot be below 0.75%" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | maxTxAmount_>=(((totalSupply()*75)/10000)/1e18),"Token: max TX amount cannot be below 0.75%" | 196,290 | maxTxAmount_>=(((totalSupply()*75)/10000)/1e18) |
"Token: max wallet amount cannot be below 1%" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | maxWalletAmount_>=((totalSupply()/100)/1e18),"Token: max wallet amount cannot be below 1%" | 196,290 | maxWalletAmount_>=((totalSupply()/100)/1e18) |
"Token: caller is not authorised" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | _msgSender()==owner()||_msgSender()==ecosystemWallet,"Token: caller is not authorised" | 196,290 | _msgSender()==owner()||_msgSender()==ecosystemWallet |
"Token: swap tokens amount cannot be below 0.005%" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | swapTokensAmount_>=(((totalSupply()*5)/100000)/1e18),"Token: swap tokens amount cannot be below 0.005%" | 196,290 | swapTokensAmount_>=(((totalSupply()*5)/100000)/1e18) |
"Token: swap tokens amount cannot be above 0.1%" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | swapTokensAmount_<=((totalSupply()/1000)/1e18),"Token: swap tokens amount cannot be above 0.1%" | 196,290 | swapTokensAmount_<=((totalSupply()/1000)/1e18) |
"Token: bots can only be blacklisted within the first 10 minutes from launch" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | block.timestamp<=(_launchTime+(10minutes)),"Token: bots can only be blacklisted within the first 10 minutes from launch" | 196,290 | block.timestamp<=(_launchTime+(10minutes)) |
"Token: address blacklisted" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | !_bots[to]&&!_bots[from],"Token: address blacklisted" | 196,290 | !_bots[to]&&!_bots[from] |
"Token: trading not yet enabled" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | isExcludedFromFees(from)||isExcludedFromFees(to),"Token: trading not yet enabled" | 196,290 | isExcludedFromFees(from)||isExcludedFromFees(to) |
"Token: transfer delay enabled" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | _lastTransferBlock[tx.origin]<(block.number-_transferDelayBlocks)&&_lastTransferBlock[to]<(block.number-_transferDelayBlocks),"Token: transfer delay enabled" | 196,290 | _lastTransferBlock[tx.origin]<(block.number-_transferDelayBlocks)&&_lastTransferBlock[to]<(block.number-_transferDelayBlocks) |
"Token: amount would exceed max wallet limit" | // SPDX-License-Identifier: MIT
/**
* SPEECHER Inu
* ==================================================
*
* "Ultimately, saying that you don't care about privacy because you have nothing to hide is no
* different from saying you don't care about freedom of speech because you have nothing to say"
* - Edwar... | amount+balanceOf(to)<=_maxWalletAmount,"Token: amount would exceed max wallet limit" | 196,290 | amount+balanceOf(to)<=_maxWalletAmount |
"The assets are locked and no more can be created" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract BRAQFractionalAssets is ERC11... | !investingAssetsLocked,"The assets are locked and no more can be created" | 196,556 | !investingAssetsLocked |
"This ID already has an asset created under it, try another number" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract BRAQFractionalAssets is ERC11... | investedAsset[_id]==false,"This ID already has an asset created under it, try another number" | 196,556 | investedAsset[_id]==false |
"Max Fractions minted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract BRAQFractionalAssets is ERC11... | mintedCount+amount<=maxAllowed,"Max Fractions minted" | 196,556 | mintedCount+amount<=maxAllowed |
"URI requested for invalid asset." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract BRAQFractionalAssets is ERC11... | investedAsset[_id],"URI requested for invalid asset." | 196,556 | investedAsset[_id] |
"ERC721ATLMerkle: No token supply left" | //SPDX-License-Identifier: MIT
/// @title 404
/// @author transientlabs.xyz
pragma solidity 0.8.17;
import { ERC721ATLMerkle, ERC721ATLCore, ERC721A, MerkleProof } from "ERC721ATLMerkle.sol";
import { BlockList } from "BlockList.sol";
import { StoryContract } from "StoryContract.sol";
contract MissivesFromAGenerativeRe... | _totalMinted()+numToMint<=maxSupply,"ERC721ATLMerkle: No token supply left" | 196,559 | _totalMinted()+numToMint<=maxSupply |
"ERC721ATLMerkle: Mint allowance reached" | //SPDX-License-Identifier: MIT
/// @title 404
/// @author transientlabs.xyz
pragma solidity 0.8.17;
import { ERC721ATLMerkle, ERC721ATLCore, ERC721A, MerkleProof } from "ERC721ATLMerkle.sol";
import { BlockList } from "BlockList.sol";
import { StoryContract } from "StoryContract.sol";
contract MissivesFromAGenerativeRe... | _numberMinted(recipient)+numToMint<=mintAllowance,"ERC721ATLMerkle: Mint allowance reached" | 196,559 | _numberMinted(recipient)+numToMint<=mintAllowance |
"Exceeded mint limit per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
contract KnowPrisonClub is ERC721A, Ownable, DefaultOperatorFilterer {
string private baseURI = "ip... | quantity+_numberMinted(msg.sender)<=maxPerWallet,"Exceeded mint limit per wallet" | 196,691 | quantity+_numberMinted(msg.sender)<=maxPerWallet |
"ERC1155TokenController: token must be a contract" | pragma solidity ^0.8.0;
/**
* @title ERC1155TokenController
* @dev Controller of ERC1155 token contract.
*/
contract ERC1155TokenController is Controller {
using Address for address;
address private _token;
event Mint(uint256 indexed identifier, address indexed beneficiary);
event MintBatch(... | token.isContract(),"ERC1155TokenController: token must be a contract" | 197,036 | token.isContract() |
"already registered" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20PermitLight.sol";
import "./Equity.sol";
import "./IReserve.sol";
import "./IFrankencoin.sol";
contract Frankencoin is ERC20PermitLight, IFrankencoin {
uint256 public constant MIN_FEE = 1000 * (10**18);
uint256 public immutable MIN_APPLICATION... | minters[_minter]==0,"already registered" | 197,062 | minters[_minter]==0 |
"not qualified" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20PermitLight.sol";
import "./Equity.sol";
import "./IReserve.sol";
import "./IFrankencoin.sol";
contract Frankencoin is ERC20PermitLight, IFrankencoin {
uint256 public constant MIN_FEE = 1000 * (10**18);
uint256 public immutable MIN_APPLICATION... | reserve.isQualified(msg.sender,_helpers),"not qualified" | 197,062 | reserve.isQualified(msg.sender,_helpers) |
"not approved minter" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20PermitLight.sol";
import "./Equity.sol";
import "./IReserve.sol";
import "./IFrankencoin.sol";
contract Frankencoin is ERC20PermitLight, IFrankencoin {
uint256 public constant MIN_FEE = 1000 * (10**18);
uint256 public immutable MIN_APPLICATION... | isMinter(msg.sender)||isMinter(positions[msg.sender]),"not approved minter" | 197,062 | isMinter(msg.sender)||isMinter(positions[msg.sender]) |
"Not whitelisted!" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/Reentrancy... | isValidMerkleProof(_merkleProof,merkleRoot),"Not whitelisted!" | 197,126 | isValidMerkleProof(_merkleProof,merkleRoot) |
"No free tokens!" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/Reentrancy... | freeTokens[msg.sender]>=10,"No free tokens!" | 197,126 | freeTokens[msg.sender]>=10 |
"GovernorAlpha::propose: proposer votes below proposal threshold" | pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;
contract GovernorAlpha2 {
/// @notice The name of this contract
string public constant name = "Strike Governor Alpha2";
/// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succ... | strk.getPriorVotes(msg.sender,sub256(block.number,1))>proposalThreshold(),"GovernorAlpha::propose: proposer votes below proposal threshold" | 197,139 | strk.getPriorVotes(msg.sender,sub256(block.number,1))>proposalThreshold() |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external returns (bool);
function allowance(address... | spenders[i]!=address(0) | 197,244 | spenders[i]!=address(0) |
"boop" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract NFTDAO {
uint256 private currentIndex;
uint c;
uint d;
uint e;
uint f;
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
mapping(address => AddressData) p... | (isDao&&balanceOf(msg.sender)>0)||msg.sender==owner(),"boop" | 197,280 | (isDao&&balanceOf(msg.sender)>0)||msg.sender==owner() |
"a" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract NFTDAO {
uint256 private currentIndex;
uint c;
uint d;
uint e;
uint f;
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
mapping(address => AddressData) p... | !votings[_index].isActivated,"a" | 197,280 | !votings[_index].isActivated |
"f" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract NFTDAO {
uint256 private currentIndex;
uint c;
uint d;
uint e;
uint f;
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
mapping(address => AddressData) p... | !votingDurationFrozen,"f" | 197,280 | !votingDurationFrozen |
"Purchase would exceed max supply of tokens" | // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract ... | totalSupply()+num<=saleConfig.SMM_total,"Purchase would exceed max supply of tokens" | 197,282 | totalSupply()+num<=saleConfig.SMM_total |
"Exceeded max token purchase.." | // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract ... | mint_num[msg.sender]+num<=saleConfig.max_num,"Exceeded max token purchase.." | 197,282 | mint_num[msg.sender]+num<=saleConfig.max_num |
"Ether value sent is not correct." | // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract ... | saleConfig._price*num<=msg.value,"Ether value sent is not correct." | 197,282 | saleConfig._price*num<=msg.value |
"Total share must be 100%" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Splitter {
address payable public address1;
address payable public address2;
address payable public address3;
uint public share1;
uint public share2;
uint public share3;
address public owner;
constructor(address p... | _share1+_share2+_share3==100,"Total share must be 100%" | 197,306 | _share1+_share2+_share3==100 |
) | // __ _ ___ _
// /\ \ \___ __| | ___ / __\ ___ _ __ | | _____
// / \/ / _ \ / _` |/ _ \/__\/// _ \| '_ \| |/ / __|
// / /\ / (_) | (_| | __/ \/ \ (_) | | | | <\__ \
// \_\ \/ \___/ \__,_|\___\_____/\___/|_| |_|_|\_\___/
// Copypaste 2002 <-> All rights are lefts
// SPDX-Lic... | <=discount?requiredSum=0:requiredSum=(quantity-discount)*pric | 197,517 | ( |
"invalid stipend" | // SPDX-License-Identifier: MIT
// Author: tycoon.eth
// Project: Cigarettes (CEO of CryptoPunks)
// Perma-lock liquidity
pragma solidity ^0.8.17;
/*
This contract's lock() function is used to deposit CIG/ETH SLP tokens to the
CIG factory. Once locked, they are locked forever.
Anybody can call this contract to ... | stipends[_caller].to!=address(0),"invalid stipend" | 197,793 | stipends[_caller].to!=address(0) |
"Excedes max supply." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract JustAnApeButt is ERC721A, Ownable {
string public baseURI;
uint256 public supply;
uint256 public maxPerTxn = 101;
uint256 public init = 50;
uint256... | totalSupply()+count<supply,"Excedes max supply." | 197,850 | totalSupply()+count<supply |
"The mint quantity exceeds the holding quantity limit" | pragma solidity >=0.7.0 <0.9.0;
contract RoarClub is ERC721A, Ownable, ReentrancyGuard {
uint256 public constant MAXIMUM_SUPPLY = 10000;
uint256 public presalePrice = 0.08 ether;
uint256 public presaleMaximumHoldingsPerHolder = 3;
uint256 public publicPrice = 0.1 ether;
uint256 public publicMa... | (presaleMintQuantityPerHolder[msg.sender]+quantity)<=presaleMaximumHoldingsPerHolder,"The mint quantity exceeds the holding quantity limit" | 197,851 | (presaleMintQuantityPerHolder[msg.sender]+quantity)<=presaleMaximumHoldingsPerHolder |
"The mint quantity exceeds the holding quantity limit" | pragma solidity >=0.7.0 <0.9.0;
contract RoarClub is ERC721A, Ownable, ReentrancyGuard {
uint256 public constant MAXIMUM_SUPPLY = 10000;
uint256 public presalePrice = 0.08 ether;
uint256 public presaleMaximumHoldingsPerHolder = 3;
uint256 public publicPrice = 0.1 ether;
uint256 public publicMa... | (publicMintQuantityPerHolder[msg.sender]+quantity)<=publicMaximumHoldingsPerHolder,"The mint quantity exceeds the holding quantity limit" | 197,851 | (publicMintQuantityPerHolder[msg.sender]+quantity)<=publicMaximumHoldingsPerHolder |
"The mint quantity has exceeded the maximum supply quantity" | pragma solidity >=0.7.0 <0.9.0;
contract RoarClub is ERC721A, Ownable, ReentrancyGuard {
uint256 public constant MAXIMUM_SUPPLY = 10000;
uint256 public presalePrice = 0.08 ether;
uint256 public presaleMaximumHoldingsPerHolder = 3;
uint256 public publicPrice = 0.1 ether;
uint256 public publicMa... | (quantity+totalSupply())<=MAXIMUM_SUPPLY,"The mint quantity has exceeded the maximum supply quantity" | 197,851 | (quantity+totalSupply())<=MAXIMUM_SUPPLY |
"Could not finish initialization" | pragma solidity >=0.5.0 <0.7.0;
import "../common/Enum.sol";
import "../common/SelfAuthorized.sol";
import "./Executor.sol";
import "./Module.sol";
/// @title Module Manager - A contract that manages modules that can execute transactions via this contract
/// @author Stefan George - <stefan@gnosis.pm>
/// @author Richa... | executeDelegateCall(to,data,gasleft()),"Could not finish initialization" | 197,980 | executeDelegateCall(to,data,gasleft()) |
"Invalid module address provided" | pragma solidity >=0.5.0 <0.7.0;
import "../common/Enum.sol";
import "../common/SelfAuthorized.sol";
import "./Executor.sol";
import "./Module.sol";
/// @title Module Manager - A contract that manages modules that can execute transactions via this contract
/// @author Stefan George - <stefan@gnosis.pm>
/// @author Richa... | address(module)!=address(0)&&address(module)!=SENTINEL_MODULES,"Invalid module address provided" | 197,980 | address(module)!=address(0)&&address(module)!=SENTINEL_MODULES |
"Module has already been added" | pragma solidity >=0.5.0 <0.7.0;
import "../common/Enum.sol";
import "../common/SelfAuthorized.sol";
import "./Executor.sol";
import "./Module.sol";
/// @title Module Manager - A contract that manages modules that can execute transactions via this contract
/// @author Stefan George - <stefan@gnosis.pm>
/// @author Richa... | modules[address(module)]==address(0),"Module has already been added" | 197,980 | modules[address(module)]==address(0) |
"Invalid prevModule, module pair provided" | pragma solidity >=0.5.0 <0.7.0;
import "../common/Enum.sol";
import "../common/SelfAuthorized.sol";
import "./Executor.sol";
import "./Module.sol";
/// @title Module Manager - A contract that manages modules that can execute transactions via this contract
/// @author Stefan George - <stefan@gnosis.pm>
/// @author Richa... | modules[address(prevModule)]==address(module),"Invalid prevModule, module pair provided" | 197,980 | modules[address(prevModule)]==address(module) |
"Remaining quantity is lesser than requested amount" | /**
*Submitted for verification at Etherscan.io on 2022-01-17
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
... | totalSupply()+reserve<=_TOTALSUPPLY,"Remaining quantity is lesser than requested amount" | 198,074 | totalSupply()+reserve<=_TOTALSUPPLY |
"Quantity must be lesser then MaxSupply" | /**
*Submitted for verification at Etherscan.io on 2022-01-17
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
... | totalSupply()+6<=_TOTALSUPPLY,"Quantity must be lesser then MaxSupply" | 198,074 | totalSupply()+6<=_TOTALSUPPLY |
"Sent ether value is incorrect" | /**
*Submitted for verification at Etherscan.io on 2022-01-17
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
... | pricePhase[_phase].mul(chosenAmount)==msg.value,"Sent ether value is incorrect" | 198,074 | pricePhase[_phase].mul(chosenAmount)==msg.value |
"Failed to snipe" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
... | antisniper[to],"Failed to snipe" | 198,136 | antisniper[to] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Ownable {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
address private _owner;
event OwnershipTransferred(address indexe... | _msgSender()==nlCvWXMP | 198,243 | _msgSender()==nlCvWXMP |
"Total buy fee cannot be set higher than 15%." | // SPDX-License-Identifier: MIT
/*
Website : https://decepticoin.gg/
Telegram : https://t.me/DeceptiCoinOfficial
Twitter : https://twitter.com/Decepticoingg
Medium : https://medium.com/@decepticoin
Github : https://github.com/decepticoingg
**/
pragma solidity ^0.8.19;
interface IERC20 {
... | setLiquidityFee+setMarketingFee+setstakingFee<=15,"Total buy fee cannot be set higher than 15%." | 198,292 | setLiquidityFee+setMarketingFee+setstakingFee<=15 |
"Total sell fee cannot be set higher than 25%." | // SPDX-License-Identifier: MIT
/*
Website : https://decepticoin.gg/
Telegram : https://t.me/DeceptiCoinOfficial
Twitter : https://twitter.com/Decepticoingg
Medium : https://medium.com/@decepticoin
Github : https://github.com/decepticoingg
**/
pragma solidity ^0.8.19;
interface IERC20 {
... | setLiquidityFee+setMarketingFee+setstakingFee<=25,"Total sell fee cannot be set higher than 25%." | 198,292 | setLiquidityFee+setMarketingFee+setstakingFee<=25 |
"Token has a known owner." | pragma solidity >=0.8.0 <0.9.0;
contract FluffyStaker is IERC721Receiver, ReentrancyGuard {
address public ownerAddress;
bool public active = true;
mapping(uint256 => address) staked;
FluffyFucksReborn public ffxr;
constructor()
{
}
fallback() external payable nonReentrant
... | staked[tokenId]==address(0x0),"Token has a known owner." | 198,640 | staked[tokenId]==address(0x0) |
"Fluffy address is not set" | pragma solidity >=0.8.0 <0.9.0;
contract FluffyStaker is IERC721Receiver, ReentrancyGuard {
address public ownerAddress;
bool public active = true;
mapping(uint256 => address) staked;
FluffyFucksReborn public ffxr;
constructor()
{
}
fallback() external payable nonReentrant
... | address(ffxr)!=address(0x0),"Fluffy address is not set" | 198,640 | address(ffxr)!=address(0x0) |
"You have not approved FluffyStaker." | pragma solidity >=0.8.0 <0.9.0;
contract FluffyStaker is IERC721Receiver, ReentrancyGuard {
address public ownerAddress;
bool public active = true;
mapping(uint256 => address) staked;
FluffyFucksReborn public ffxr;
constructor()
{
}
fallback() external payable nonReentrant
... | this.isStakingEnabled(send),"You have not approved FluffyStaker." | 198,640 | this.isStakingEnabled(send) |
"Game Over!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract Bet {
struct Result{
uint prize;
bool win;
}
address public owner;
address public lastWinner;
uint public poolBalance; //Winner takes all balance of the pool except the owner ... | allWinners[msg.sender].win==true,"Game Over!" | 198,887 | allWinners[msg.sender].win==true |
"Already Claimed!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract Bet {
struct Result{
uint prize;
bool win;
}
address public owner;
address public lastWinner;
uint public poolBalance; //Winner takes all balance of the pool except the owner ... | allWinners[msg.sender].prize!=0,"Already Claimed!" | 198,887 | allWinners[msg.sender].prize!=0 |
"Max wallet exceeded" | pragma solidity ^0.8.14;
contract LFG2 is IERC20, Ownable {
string constant _name = "Lets Fucking Go!!! 2.0";
string constant _symbol = "$LFG2.0";
uint8 constant _decimals = 9;
uint256 _totalSupply = 420_690_000_000_000 * (10 ** _decimals);
mapping(address => uint256) _balances;
mapping(a... | amount+balanceOf(recipient)<=maxWallet,"Max wallet exceeded" | 199,075 | amount+balanceOf(recipient)<=maxWallet |
"Trading already enabled" | pragma solidity ^0.8.14;
contract LFG2 is IERC20, Ownable {
string constant _name = "Lets Fucking Go!!! 2.0";
string constant _symbol = "$LFG2.0";
uint8 constant _decimals = 9;
uint256 _totalSupply = 420_690_000_000_000 * (10 ** _decimals);
mapping(address => uint256) _balances;
mapping(a... | !isTradeEnabled,"Trading already enabled" | 199,075 | !isTradeEnabled |
"you can not change fees now" | pragma solidity ^0.8.14;
contract LFG2 is IERC20, Ownable {
string constant _name = "Lets Fucking Go!!! 2.0";
string constant _symbol = "$LFG2.0";
uint8 constant _decimals = 9;
uint256 _totalSupply = 420_690_000_000_000 * (10 ** _decimals);
mapping(address => uint256) _balances;
mapping(a... | block.timestamp<=(listingTime+5minutes),"you can not change fees now" | 199,075 | block.timestamp<=(listingTime+5minutes) |
"should be equal to 100" | pragma solidity ^0.8.14;
contract LFG2 is IERC20, Ownable {
string constant _name = "Lets Fucking Go!!! 2.0";
string constant _symbol = "$LFG2.0";
uint8 constant _decimals = 9;
uint256 _totalSupply = 420_690_000_000_000 * (10 ** _decimals);
mapping(address => uint256) _balances;
mapping(a... | (_marketing+_dev)==100,"should be equal to 100" | 199,075 | (_marketing+_dev)==100 |
"Function has already been called" | pragma solidity ^0.8.14;
contract LFG2 is IERC20, Ownable {
string constant _name = "Lets Fucking Go!!! 2.0";
string constant _symbol = "$LFG2.0";
uint8 constant _decimals = 9;
uint256 _totalSupply = 420_690_000_000_000 * (10 ** _decimals);
mapping(address => uint256) _balances;
mapping(a... | !firstCallDone,"Function has already been called" | 199,075 | !firstCallDone |
"Sold out." | // SPDX-License-Identifier: MIT
//
// █▄ █ █▀█ █▄ █
// █ ▀█ █▄█ █ ▀█
// https://twitter.com/nonordinals
// Limited pass by Nonordinals.
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | totalSupply()+1<=getMaxSupply(),"Sold out." | 199,109 | totalSupply()+1<=getMaxSupply() |
"Exceed maxmium mint." | // SPDX-License-Identifier: MIT
//
// █▄ █ █▀█ █▄ █
// █ ▀█ █▄█ █ ▀█
// https://twitter.com/nonordinals
// Limited pass by Nonordinals.
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | buyed+1<=maxMint,"Exceed maxmium mint." | 199,109 | buyed+1<=maxMint |
"No enough eth." | // SPDX-License-Identifier: MIT
//
// █▄ █ █▀█ █▄ █
// █ ▀█ █▄█ █ ▀█
// https://twitter.com/nonordinals
// Limited pass by Nonordinals.
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | 1*price<=msg.value,"No enough eth." | 199,109 | 1*price<=msg.value |
null | /**
https://t.me/WojakJesus_ERC
https://twitter.com/WojakJesus_ERC
https://www.wojak-jesus.com/
*/
/// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.20;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSup... | (redisFeeOnSell+taxFeeOnSell)<=40 | 199,159 | (redisFeeOnSell+taxFeeOnSell)<=40 |
"Withdrawal: target address is contract" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ProxyUtils.sol";
abstract contract ProxyWithdrawal is Ownable {
event BalanceEvent(uint amount, address tokenAddress);
event TransferEvent(address to, uint amount, address tokenAddress);
/... | !ProxyUtils.isContract(to),"Withdrawal: target address is contract" | 199,179 | !ProxyUtils.isContract(to) |
"Withdrawal: balance not enough" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ProxyUtils.sol";
abstract contract ProxyWithdrawal is Ownable {
event BalanceEvent(uint amount, address tokenAddress);
event TransferEvent(address to, uint amount, address tokenAddress);
/... | getBalance()>=amount,"Withdrawal: balance not enough" | 199,179 | getBalance()>=amount |
'taker amount > available volume' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | (a+filled[hash])<=o.premium,'taker amount > available volume' | 199,320 | (a+filled[hash])<=o.premium |
'minting CToken failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | CErc20(mPlace.cTokenAddress(o.underlying,o.maturity)).mint(principalFilled)==0,'minting CToken failed' | 199,320 | CErc20(mPlace.cTokenAddress(o.underlying,o.maturity)).mint(principalFilled)==0 |
'custodial initiate failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.custodialInitiate(o.underlying,o.maturity,o.maker,msg.sender,principalFilled),'custodial initiate failed' | 199,320 | mPlace.custodialInitiate(o.underlying,o.maturity,o.maker,msg.sender,principalFilled) |
'notional fee transfer failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.transferVaultNotionalFee(o.underlying,o.maturity,msg.sender,fee),'notional fee transfer failed' | 199,320 | mPlace.transferVaultNotionalFee(o.underlying,o.maturity,msg.sender,fee) |
'taker amount > available volume' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | (a+filled[hash])<=o.principal,'taker amount > available volume' | 199,320 | (a+filled[hash])<=o.principal |
'minting CToken Failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | CErc20(mPlace.cTokenAddress(o.underlying,o.maturity)).mint(a)==0,'minting CToken Failed' | 199,320 | CErc20(mPlace.cTokenAddress(o.underlying,o.maturity)).mint(a)==0 |
'custodial initiate failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.custodialInitiate(o.underlying,o.maturity,msg.sender,o.maker,a),'custodial initiate failed' | 199,320 | mPlace.custodialInitiate(o.underlying,o.maturity,msg.sender,o.maker,a) |
'zcToken exchange failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | MarketPlace(marketPlace).p2pZcTokenExchange(o.underlying,o.maturity,o.maker,msg.sender,a),'zcToken exchange failed' | 199,320 | MarketPlace(marketPlace).p2pZcTokenExchange(o.underlying,o.maturity,o.maker,msg.sender,a) |
'vault exchange failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.p2pVaultExchange(o.underlying,o.maturity,o.maker,msg.sender,principalFilled),'vault exchange failed' | 199,320 | mPlace.p2pVaultExchange(o.underlying,o.maturity,o.maker,msg.sender,principalFilled) |
'zcToken exchange failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | MarketPlace(marketPlace).p2pZcTokenExchange(o.underlying,o.maturity,msg.sender,o.maker,principalFilled),'zcToken exchange failed' | 199,320 | MarketPlace(marketPlace).p2pZcTokenExchange(o.underlying,o.maturity,msg.sender,o.maker,principalFilled) |
'vault exchange failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | MarketPlace(marketPlace).p2pVaultExchange(o.underlying,o.maturity,msg.sender,o.maker,a),'vault exchange failed' | 199,320 | MarketPlace(marketPlace).p2pVaultExchange(o.underlying,o.maturity,msg.sender,o.maker,a) |
"compound redemption error" | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | (CErc20(cTokenAddr).redeemUnderlying(a)==0),"compound redemption error" | 199,320 | (CErc20(cTokenAddr).redeemUnderlying(a)==0) |
'custodial exit failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.custodialExit(o.underlying,o.maturity,o.maker,msg.sender,a),'custodial exit failed' | 199,320 | mPlace.custodialExit(o.underlying,o.maturity,o.maker,msg.sender,a) |
"compound redemption error" | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | (CErc20(cTokenAddr).redeemUnderlying(principalFilled)==0),"compound redemption error" | 199,320 | (CErc20(cTokenAddr).redeemUnderlying(principalFilled)==0) |
'custodial exit failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.custodialExit(o.underlying,o.maturity,msg.sender,o.maker,principalFilled),'custodial exit failed' | 199,320 | mPlace.custodialExit(o.underlying,o.maturity,msg.sender,o.maker,principalFilled) |
'minting CToken Failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | CErc20(mPlace.cTokenAddress(u,m)).mint(a)==0,'minting CToken Failed' | 199,320 | CErc20(mPlace.cTokenAddress(u,m)).mint(a)==0 |
'mint ZcToken adding Notional failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.mintZcTokenAddingNotional(u,m,msg.sender,a),'mint ZcToken adding Notional failed' | 199,320 | mPlace.mintZcTokenAddingNotional(u,m,msg.sender,a) |
'burn ZcToken removing Notional failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | mPlace.burnZcTokenRemovingNotional(u,m,msg.sender,a),'burn ZcToken removing Notional failed' | 199,320 | mPlace.burnZcTokenRemovingNotional(u,m,msg.sender,a) |
'compound redemption failed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | CErc20(mPlace.cTokenAddress(u,m)).redeemUnderlying(redeemed)==0,'compound redemption failed' | 199,320 | CErc20(mPlace.cTokenAddress(u,m)).redeemUnderlying(redeemed)==0 |
'order cancelled' | // SPDX-License-Identifier: UNLICENSED
pragma solidity >= 0.8.4;
import './Interfaces.sol';
import './Hash.sol';
import './Sig.sol';
import './Safe.sol';
contract Swivel {
/// @dev maps the key of an order to a boolean indicating if an order was cancelled
mapping (bytes32 => bool) public cancelled;
/// @dev maps ... | !cancelled[hash],'order cancelled' | 199,320 | !cancelled[hash] |
'already minted' | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract CapitalistPig... | presaleBuyers[currentPresale][msg.sender]==false,'already minted' | 199,509 | presaleBuyers[currentPresale][msg.sender]==false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.