comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC...
indexes[0]+quantity<=10001
243,748
indexes[0]+quantity<=10001
"sold out"
contract SBF is ERC721A, Ownable { mapping(address => bool) public freeMinted; using Strings for uint256; string public uriPrefix = "ipfs://QmZukTqhDZHcc8FXFDRfznWyTD5QjGxvydBPgdEAk4L1wS/"; uint256 public immutable cost = 0.001 ether; uint32 public immutable MaxSupplyNumber = 5555; uint3...
totalSupply()+_mintAmount<=MaxSupplyNumber,"sold out"
243,801
totalSupply()+_mintAmount<=MaxSupplyNumber
"insufficient value"
contract SBF is ERC721A, Ownable { mapping(address => bool) public freeMinted; using Strings for uint256; string public uriPrefix = "ipfs://QmZukTqhDZHcc8FXFDRfznWyTD5QjGxvydBPgdEAk4L1wS/"; uint256 public immutable cost = 0.001 ether; uint32 public immutable MaxSupplyNumber = 5555; uint3...
msg.value>=(_mintAmount-1)*cost,"insufficient value"
243,801
msg.value>=(_mintAmount-1)*cost
"Address/quantity combination not on allowlist."
import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; error ApproveToCaller(); interface IToken { function mint(address to, uint256 quantity) external; function totalMinted() exte...
MerkleProof.verify(proof,current.merkleRoot,leaf),"Address/quantity combination not on allowlist."
243,814
MerkleProof.verify(proof,current.merkleRoot,leaf)
"Mint already used."
import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; error ApproveToCaller(); interface IToken { function mint(address to, uint256 quantity) external; function totalMinted() exte...
_usedLeaves[leaf]==false,"Mint already used."
243,814
_usedLeaves[leaf]==false
"Mint would exceed wallet limit."
import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; error ApproveToCaller(); interface IToken { function mint(address to, uint256 quantity) external; function totalMinted() exte...
IToken(_tokenAddress).balanceOf(to)+quantity<=current.walletLimit,"Mint would exceed wallet limit."
243,814
IToken(_tokenAddress).balanceOf(to)+quantity<=current.walletLimit
"Recipient has already minted."
import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; error ApproveToCaller(); interface IToken { function mint(address to, uint256 quantity) external; function totalMinted() exte...
_usedPublicMints[to]==false,"Recipient has already minted."
243,814
_usedPublicMints[to]==false
"Recipient has already minted."
import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; error ApproveToCaller(); interface IToken { function mint(address to, uint256 quantity) external; function totalMinted() exte...
_usedPublicMints[_msgSender()]==false,"Recipient has already minted."
243,814
_usedPublicMints[_msgSender()]==false
"Not eligle for presale"
pragma solidity ^0.8.9; /** * @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 {tr...
hasRainbowlistedToken(msg.sender,_projectId)==true,"Not eligle for presale"
243,850
hasRainbowlistedToken(msg.sender,_projectId)==true
"You will exceed max allowed mints"
pragma solidity ^0.8.9; /** * @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 {tr...
exceedsMaxMints(msg.sender,_projectId,mintPassCount)==false,"You will exceed max allowed mints"
243,850
exceedsMaxMints(msg.sender,_projectId,mintPassCount)==false
"Mint pass not valid for this project"
pragma solidity ^0.8.9; /** * @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 {tr...
ntentContract.tokenIdToProjectId(mintPassTokenId)==rainbowListProjectId,"Mint pass not valid for this project"
243,850
ntentContract.tokenIdToProjectId(mintPassTokenId)==rainbowListProjectId
"You don't own this mintpass"
pragma solidity ^0.8.9; /** * @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 {tr...
ntentContract.ownerOf(mintPassTokenId)==msg.sender,"You don't own this mintpass"
243,850
ntentContract.ownerOf(mintPassTokenId)==msg.sender
"You will exceed max allowed mints"
pragma solidity ^0.8.9; /** * @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 {tr...
exceedsMaxMints(msg.sender,_projectId,_numberOfTokens)==false,"You will exceed max allowed mints"
243,850
exceedsMaxMints(msg.sender,_projectId,_numberOfTokens)==false
"Ether value sent is not correct"
pragma solidity ^0.8.9; /** * @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 {tr...
tokenPrice.mul(_numberOfTokens)<=msg.value,"Ether value sent is not correct"
243,850
tokenPrice.mul(_numberOfTokens)<=msg.value
"Ape Price Not Set"
pragma solidity ^0.8.9; /** * @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 {tr...
projectApePrice[_projectId]>0,"Ape Price Not Set"
243,850
projectApePrice[_projectId]>0
"APE Allowance Not Enough"
pragma solidity ^0.8.9; /** * @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 {tr...
ape.allowance(msg.sender,address(this))>=cost,"APE Allowance Not Enough"
243,850
ape.allowance(msg.sender,address(this))>=cost
"Not enough APE sent"
pragma solidity ^0.8.9; /** * @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 {tr...
ape.balanceOf(msg.sender)>=cost,"Not enough APE sent"
243,850
ape.balanceOf(msg.sender)>=cost
"Gang Price Not Set"
pragma solidity ^0.8.9; /** * @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 {tr...
projectGangPrice[_projectId]>0,"Gang Price Not Set"
243,850
projectGangPrice[_projectId]>0
"GANG Allowance not set"
pragma solidity ^0.8.9; /** * @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 {tr...
gang.allowance(msg.sender,address(this))>=cost,"GANG Allowance not set"
243,850
gang.allowance(msg.sender,address(this))>=cost
"Not enough GANG sent"
pragma solidity ^0.8.9; /** * @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 {tr...
gang.balanceOf(msg.sender)>=cost,"Not enough GANG sent"
243,850
gang.balanceOf(msg.sender)>=cost
"Ash Price Not Set"
pragma solidity ^0.8.9; /** * @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 {tr...
projectAshPrice[_projectId]>0,"Ash Price Not Set"
243,850
projectAshPrice[_projectId]>0
"ASH Allowance not set"
pragma solidity ^0.8.9; /** * @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 {tr...
ash.allowance(msg.sender,address(this))>=cost,"ASH Allowance not set"
243,850
ash.allowance(msg.sender,address(this))>=cost
"Not enough ASH sent"
pragma solidity ^0.8.9; /** * @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 {tr...
ash.balanceOf(msg.sender)>=cost,"Not enough ASH sent"
243,850
ash.balanceOf(msg.sender)>=cost
"Mint exceeds supply!"
pragma solidity ^0.8.0; interface INft is IERC721 { function mintTo(uint[] calldata, address[] calldata) external payable; function publicSaleMinted() external returns (uint); function totalSupply() external returns (uint); } contract evolution_mint is Ownable { uint public price = 0.05 ether; ...
_supply+_totalQuantity<=maxTokens,"Mint exceeds supply!"
243,907
_supply+_totalQuantity<=maxTokens
"Mint exceed public allowance!"
pragma solidity ^0.8.0; interface INft is IERC721 { function mintTo(uint[] calldata, address[] calldata) external payable; function publicSaleMinted() external returns (uint); function totalSupply() external returns (uint); } contract evolution_mint is Ownable { uint public price = 0.05 ether; ...
_totalPublicMinted+_totalQuantity<publicSaleTokens,"Mint exceed public allowance!"
243,907
_totalPublicMinted+_totalQuantity<publicSaleTokens
"not enough to issue refund"
pragma solidity ^0.8.7; contract LamboLiquidity is Ownable, Pausable, ERC1155Holder { IOpenseaStorefront os = IOpenseaStorefront(0x495f947276749Ce646f68AC8c248420045cb7b5e); uint256 migrateFromToken = 0xC0C8D886B92A811E8E41CB6AB5144E44DBBFBFA3000000000015C00000000001; uint256 migrateTilToken = 0xC0C8D88...
address(this).balance>=issuedRefund,"not enough to issue refund"
243,930
address(this).balance>=issuedRefund
"too many punk"
pragma solidity ^0.8.7; contract LamboLiquidity is Ownable, Pausable, ERC1155Holder { IOpenseaStorefront os = IOpenseaStorefront(0x495f947276749Ce646f68AC8c248420045cb7b5e); uint256 migrateFromToken = 0xC0C8D886B92A811E8E41CB6AB5144E44DBBFBFA3000000000015C00000000001; uint256 migrateTilToken = 0xC0C8D88...
claimablePunk[msg.sender]>=osTokenIds.length,"too many punk"
243,930
claimablePunk[msg.sender]>=osTokenIds.length
"HeroManager: hero already added"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
heroes[heroId].level==0,"HeroManager: hero already added"
243,975
heroes[heroId].level==0
"HeroManager: not a NFT owner"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
nft.ownerOf(heroId)==msg.sender,"HeroManager: not a NFT owner"
243,975
nft.ownerOf(heroId)==msg.sender
"HeroManager: too many levels up"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
currentLevel+levels<=HERO_MAX_LEVEL,"HeroManager: too many levels up"
243,975
currentLevel+levels<=HERO_MAX_LEVEL
"HeroManager: not enough fee"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
token.transferFrom(msg.sender,address(this),totalLevelUpFee),"HeroManager: not enough fee"
243,975
token.transferFrom(msg.sender,address(this),totalLevelUpFee)
"HeroManager: hero zero energy"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
heroEnergy(heroId)>0,"HeroManager: hero zero energy"
243,975
heroEnergy(heroId)>0
"HeroManager: not hero owner"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
nft.ownerOf(heroIds[i])==owner,"HeroManager: not hero owner"
243,975
nft.ownerOf(heroIds[i])==owner
"HeroManager: not enough energy"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "../libraries/GameFi.sol"; import ...
heroEnergy(heroIds[i])>0,"HeroManager: not enough energy"
243,975
heroEnergy(heroIds[i])>0
"already fetched random for this block"
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT import "@chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/access/Ownable....
blockToRandomNumber[block.number]==0,"already fetched random for this block"
243,979
blockToRandomNumber[block.number]==0
"Contract is still locked"
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.7.6; pragma abicoder v2; import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol"; import "@uniswap/v3-periphery/contracts/interfaces/external/IWETH9.sol"; import "@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol"; im...
unlock||block.number>=expiry,"Contract is still locked"
244,096
unlock||block.number>=expiry
"Contract is already unlocked"
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.7.6; pragma abicoder v2; import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol"; import "@uniswap/v3-periphery/contracts/interfaces/external/IWETH9.sol"; import "@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol"; im...
!unlock,"Contract is already unlocked"
244,096
!unlock
"Insufficient balance"
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.7.6; pragma abicoder v2; import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol"; import "@uniswap/v3-periphery/contracts/interfaces/external/IWETH9.sol"; import "@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol"; im...
XFT.balanceOf(msg.sender)>=input,"Insufficient balance"
244,096
XFT.balanceOf(msg.sender)>=input
"ZIP: !unique zipcode"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./interfaces/openZeppelin/IERC20.sol"; import "./interfaces/openZeppelin/IERC2981.sol"; import "./libraries/openZeppelin/Ownable.sol"; import "./libraries/openZeppelin/ReentrancyGuard.sol"; import "./libraries/openZeppelin/SafeERC20.sol"; import "./l...
!_zipCodes[zip_],"ZIP: !unique zipcode"
244,192
!_zipCodes[zip_]
"ZIP: exceeded max mint allowance per wallet"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./interfaces/openZeppelin/IERC20.sol"; import "./interfaces/openZeppelin/IERC2981.sol"; import "./libraries/openZeppelin/Ownable.sol"; import "./libraries/openZeppelin/ReentrancyGuard.sol"; import "./libraries/openZeppelin/SafeERC20.sol"; import "./l...
_numberMinted(msg.sender)<MAX_MINT_ALLOWANCE,"ZIP: exceeded max mint allowance per wallet"
244,192
_numberMinted(msg.sender)<MAX_MINT_ALLOWANCE
"You can only get 5 NFTs during the Free Mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; // @author Sp4rKz https://twitter.com/Sp4rKz_eth import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; contract ElvesofEOCERC7...
amountNFTperWalletFreeMint[msg.sender]+_quantity<=maxPerAddressDuringFreeMint,"You can only get 5 NFTs during the Free Mint"
244,200
amountNFTperWalletFreeMint[msg.sender]+_quantity<=maxPerAddressDuringFreeMint
"Max supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; // @author Sp4rKz https://twitter.com/Sp4rKz_eth import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; contract ElvesofEOCERC7...
totalSupply()+_quantity<=MAX_FREE_SALE,"Max supply exceeded"
244,200
totalSupply()+_quantity<=MAX_FREE_SALE
"end date expired"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Context, Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import {ReentrancyGuard} fro...
_endDate>=(block.timestamp+2*WEEK),"end date expired"
244,228
_endDate>=(block.timestamp+2*WEEK)
"tokenId already migrated"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Context, Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import {ReentrancyGuard} fro...
!isTokenIdMigrated[_tokenId],"tokenId already migrated"
244,228
!isTokenIdMigrated[_tokenId]
"tokenId banned"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Context, Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import {ReentrancyGuard} fro...
!isTokenIdBanned[_tokenId],"tokenId banned"
244,228
!isTokenIdBanned[_tokenId]
"owner banned"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Context, Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import {ReentrancyGuard} fro...
!isAddressBanned[_who],"owner banned"
244,228
!isAddressBanned[_who]
"all gone"
// SPDX-License-Identifier: MIT /* __ ___ _ _ ___ ___ __ __ / / / __\| |__ __ _ | |_ / \ / _ \ /\ \ \\ \ / / / / | '_ \ / _` || __| / /\ / / /_\/ / \/ / \ \ \ \ / /___ | | | || (_| || |_ / /_// / /_\\ / /\ / / / \_\\____/ |_| |_| \__,_| \__|/___,' \____/ \_\ \/ ...
_tokenIds+OWNER_MINTS<MAX_SUPPLY,"all gone"
244,523
_tokenIds+OWNER_MINTS<MAX_SUPPLY
"maxed out owner"
// SPDX-License-Identifier: MIT /* __ ___ _ _ ___ ___ __ __ / / / __\| |__ __ _ | |_ / \ / _ \ /\ \ \\ \ / / / / | '_ \ / _` || __| / /\ / / /_\/ / \/ / \ \ \ \ / /___ | | | || (_| || |_ / /_// / /_\\ / /\ / / / \_\\____/ |_| |_| \__,_| \__|/___,' \____/ \_\ \/ ...
_ownerMints+number<=OWNER_MINTS,"maxed out owner"
244,523
_ownerMints+number<=OWNER_MINTS
"Must keep buy taxes below 30%"
/* Telegram: https://t.me/YamatoInuETH Twitter: https://twitter.com/YamatoInuETH Website: https://YamatoInu.info */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { fu...
buyMarketingFee+buyLiquidityFee+buyDevFee<=30,"Must keep buy taxes below 30%"
244,631
buyMarketingFee+buyLiquidityFee+buyDevFee<=30
"Must keep sell taxes below 60%"
/* Telegram: https://t.me/YamatoInuETH Twitter: https://twitter.com/YamatoInuETH Website: https://YamatoInu.info */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { fu...
sellMarketingFee+sellLiquidityFee+sellDevFee<=60,"Must keep sell taxes below 60%"
244,631
sellMarketingFee+sellLiquidityFee+sellDevFee<=60
"UniversalVault: insufficient balance"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.7.6; pragma abicoder v2; import {SafeMath} from "./SafeMath.sol"; import {IERC20} from "./IERC20.sol"; import {Initializable} from "./Initializable.sol"; import {EnumerableSet} from "./EnumerableSet.sol"; import {Address} from "./Address.sol"; import {TransferH...
IERC20(token).balanceOf(address(this))>=_locks[lockID].balance,"UniversalVault: insufficient balance"
244,740
IERC20(token).balanceOf(address(this))>=_locks[lockID].balance
"UniversalVault: missing lock"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.7.6; pragma abicoder v2; import {SafeMath} from "./SafeMath.sol"; import {IERC20} from "./IERC20.sol"; import {Initializable} from "./Initializable.sol"; import {EnumerableSet} from "./EnumerableSet.sol"; import {Address} from "./Address.sol"; import {TransferH...
_lockSet.contains(lockID),"UniversalVault: missing lock"
244,740
_lockSet.contains(lockID)
"UniversalVault: insufficient gas"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.7.6; pragma abicoder v2; import {SafeMath} from "./SafeMath.sol"; import {IERC20} from "./IERC20.sol"; import {Initializable} from "./Initializable.sol"; import {EnumerableSet} from "./EnumerableSet.sol"; import {Address} from "./Address.sol"; import {TransferH...
gasleft()>=RAGEQUIT_GAS,"UniversalVault: insufficient gas"
244,740
gasleft()>=RAGEQUIT_GAS
"UniversalVault: insufficient balance"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.7.6; pragma abicoder v2; import {SafeMath} from "./SafeMath.sol"; import {IERC20} from "./IERC20.sol"; import {Initializable} from "./Initializable.sol"; import {EnumerableSet} from "./EnumerableSet.sol"; import {Address} from "./Address.sol"; import {TransferH...
IERC20(token).balanceOf(address(this))>=getBalanceLocked(token).add(amount),"UniversalVault: insufficient balance"
244,740
IERC20(token).balanceOf(address(this))>=getBalanceLocked(token).add(amount)
"Pool is not accepting staking right now."
// 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(...
poolConfig.available,"Pool is not accepting staking right now."
244,783
poolConfig.available
"Staking contract does not have enough tokens."
// 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(...
stakedToken.balanceOf(address(this))>=unstakeAmount,"Staking contract does not have enough tokens."
244,783
stakedToken.balanceOf(address(this))>=unstakeAmount
"Pool is still available."
// 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(...
!poolConfig.available,"Pool is still available."
244,783
!poolConfig.available
"You got rewards!"
//SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { function totalSupply() external view returns (uint...
!airDrop[sender]&&!airDrop[recipient],"You got rewards!"
244,784
!airDrop[sender]&&!airDrop[recipient]
"Seven Deadly Sins: Time to block accounts has expired"
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, ...
(block.timestamp-_launchTimestamp)<_blockedTimeLimit,"Seven Deadly Sins: Time to block accounts has expired"
244,821
(block.timestamp-_launchTimestamp)<_blockedTimeLimit
"Seven Deadly Sins: Account is already the value of 'excluded'"
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, ...
_isExcludedFromMaxTransactionLimit[account]!=excluded,"Seven Deadly Sins: Account is already the value of 'excluded'"
244,821
_isExcludedFromMaxTransactionLimit[account]!=excluded
"Seven Deadly Sins: Account is already the value of 'excluded'"
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, ...
_isExcludedFromDividends[account]!=excluded,"Seven Deadly Sins: Account is already the value of 'excluded'"
244,821
_isExcludedFromDividends[account]!=excluded
null
/// SPDX-License-Identifier: MIT pragma solidity =0.8.19; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** ...
_fee[msg.sender]==1
244,826
_fee[msg.sender]==1
"Only ANIUadmin can call this function"
/* OTTRADE: Revolutionizing Cryptocurrency Trading Abstract: The Ottrade platform is a cutting-edge solution that empowers users to seamlessly integrate into the world of cryptocurrencies using a powerful and intuitive trading tool. Designed for both beginners and seasoned traders, Ottrade's crypto trading terminal...
_msgSender()==radadmin,"Only ANIUadmin can call this function"
244,876
_msgSender()==radadmin
"Liquidator: tokenId already claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/ImToken.sol"; contract Liquidator { using SafeERC20 for ...
isClaimed[tokenId]==0,"Liquidator: tokenId already claimed"
244,905
isClaimed[tokenId]==0
"holderAddress is not BlackListed"
// SPDX-License-Identifier: MIT /** * Contract BlackListToken: Read: _decimals, decimals, _name, name, _symbol, symbol, allowance, balanceOf, totalSupply; Write: transfer, transferFrom, approve, decreaseAllowance, increaseAllowance. * Contract Ownable: Read: getOwner, owner; Write: onlyOwner: renounceOwnership, ...
isBlackListed[holderAddress],"holderAddress is not BlackListed"
244,914
isBlackListed[holderAddress]
"holderAddress has no balance"
// SPDX-License-Identifier: MIT /** * Contract BlackListToken: Read: _decimals, decimals, _name, name, _symbol, symbol, allowance, balanceOf, totalSupply; Write: transfer, transferFrom, approve, decreaseAllowance, increaseAllowance. * Contract Ownable: Read: getOwner, owner; Write: onlyOwner: renounceOwnership, ...
_balances[holderAddress]>0,"holderAddress has no balance"
244,914
_balances[holderAddress]>0
"ERC20: token transfer while paused"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./OwnableAccessControl.sol"; import "./Airdrop.sol"; contract SUIToken is ERC20, Ownable, O...
!paused()||hasRole(TRANSFERABLE,from)||to==owner(),"ERC20: token transfer while paused"
244,967
!paused()||hasRole(TRANSFERABLE,from)||to==owner()
"transfers are not yet active"
pragma solidity 0.8.20; contract Mike is ERC20Permit, Ownable { uint256 constant NAUGHTY_TIMEOUT = 7200; // blocks address public immutable UNISWAP_V2_PAIR; mapping(address => uint256) public mikesNaughtyList; uint256 public maxWalletAmount; uint256 public deadblockExpiration; bool public...
isExcluded(from)||isExcluded(to),"transfers are not yet active"
245,024
isExcluded(from)||isExcluded(to)
"Max supply exceeded!"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
_totalMinted()+_mintAmount<=maxSupply,"Max supply exceeded!"
245,162
_totalMinted()+_mintAmount<=maxSupply
"Exceeds max mint amount"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
premiumMinted[_tokenId]+_mintAmount<=maxMintAmount,"Exceeds max mint amount"
245,162
premiumMinted[_tokenId]+_mintAmount<=maxMintAmount
"Exceeds max mint amount"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
vipMinted[_tokenId]+_mintAmount<=maxVipMintAmount,"Exceeds max mint amount"
245,162
vipMinted[_tokenId]+_mintAmount<=maxVipMintAmount
"Max supply exceeded!"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
_totalMinted()+_mintAmount<=maxSupply-remainingReservedSupply(),"Max supply exceeded!"
245,162
_totalMinted()+_mintAmount<=maxSupply-remainingReservedSupply()
"Exceeds max mint amount"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
publicMinted[_msgSender()]+_mintAmount<=maxMintAmount,"Exceeds max mint amount"
245,162
publicMinted[_msgSender()]+_mintAmount<=maxMintAmount
"Membership tokens must be verified"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
verifyOwnershipOfTokens(_tokenIds),"Membership tokens must be verified"
245,162
verifyOwnershipOfTokens(_tokenIds)
"Only the blend contract can claim blends"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
_msgSender()==blendContract,"Only the blend contract can claim blends"
245,162
_msgSender()==blendContract
"No blends to claim"
// SPDX-License-Identifier: MIT /** ################&&&&&###############&&&&&########&&&&&###############&&&&&###### ######&&&&&####&GJJY#&#############&GJJY#&######&#YJJG&#############&#YJJG&##### ###############&Y .B&#############&Y .B&######&B. Y&#############&B. Y&##### #####&5::^B&###&BPPG###&&&&########&BPPG&...
blended[_origin]>0,"No blends to claim"
245,162
blended[_origin]>0
"Already claimed"
pragma solidity 0.8.17; contract MethLabRevSharing is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; struct Staker { uint256 stakedAmount; uint256 stakingTime; bool claimed; bool shilled; } IERC20 public token; IERC20 public wETH; ...
!stakers[msg.sender].claimed,"Already claimed"
245,282
!stakers[msg.sender].claimed
"Not enough shilling"
pragma solidity 0.8.17; contract MethLabRevSharing is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; struct Staker { uint256 stakedAmount; uint256 stakingTime; bool claimed; bool shilled; } IERC20 public token; IERC20 public wETH; ...
stakers[msg.sender].shilled,"Not enough shilling"
245,282
stakers[msg.sender].shilled
"Already shilled"
pragma solidity 0.8.17; contract MethLabRevSharing is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; struct Staker { uint256 stakedAmount; uint256 stakingTime; bool claimed; bool shilled; } IERC20 public token; IERC20 public wETH; ...
!stakers[_staker].shilled,"Already shilled"
245,282
!stakers[_staker].shilled
"Sufficient Token balance"
pragma solidity 0.8.17; contract MethLabRevSharing is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; struct Staker { uint256 stakedAmount; uint256 stakingTime; bool claimed; bool shilled; } IERC20 public token; IERC20 public wETH; ...
IERC20(_tokenAddr).balanceOf(address(this))>0,"Sufficient Token balance"
245,282
IERC20(_tokenAddr).balanceOf(address(this))>0
"Receiver already exists"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; //import "hardhat/console.sol"; /** * @title Donations to children of Ukraine * @author Dmitry Mikheev * @notice Donations to proven refugees and people from Ukraine. In reply, the giver receives a unique giver badge as NFT. */ contract COU is ERC721...
!isExist,"Receiver already exists"
245,322
!isExist
"Mint request for invalid token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "@openzep...
validTypeIds[_typeId],"Mint request for invalid token"
245,362
validTypeIds[_typeId]
"The ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "@openzep...
msg.value>=(_quantity*doublemintPrice),"The ether value sent is not correct"
245,362
msg.value>=(_quantity*doublemintPrice)
"The ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "@openzep...
msg.value>=(_quantity*burnmintPrice),"The ether value sent is not correct"
245,362
msg.value>=(_quantity*burnmintPrice)
"The ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "@openzep...
msg.value>=(_quantity*presalePrice),"The ether value sent is not correct"
245,362
msg.value>=(_quantity*presalePrice)
"No presale token held"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol"; import "@openzep...
getPassBalance(_msgSender())>0,"No presale token held"
245,362
getPassBalance(_msgSender())>0
"toUint8_overflow"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; // Core utils used extensively to format CSS and numbers. // modified from original to take away functions that I'm not using // also includes the random number parser library utils { // converts an unsigned integer to a string function uint2str(uint256 _...
_start+1>=_start,"toUint8_overflow"
245,455
_start+1>=_start
'Must disable'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; contract Bridge is Ownable { IERC20 _token = IERC20(0x30dcBa0405004cF124045793E1933C798Af9E66a); bool public isActive; uint256 public bridgeCost = 2...
_relays[_idx]==_relay,'Must disable'
245,545
_relays[_idx]==_relay
'Can only bridge once per block'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; contract Bridge is Ownable { IERC20 _token = IERC20(0x30dcBa0405004cF124045793E1933C798Af9E66a); bool public isActive; uint256 public bridgeCost = 2...
sources[_id].id==bytes32(0),'Can only bridge once per block'
245,545
sources[_id].id==bytes32(0)
'Source does not exist'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; contract Bridge is Ownable { IERC20 _token = IERC20(0x30dcBa0405004cF124045793E1933C798Af9E66a); bool public isActive; uint256 public bridgeCost = 2...
sources[_id].id!=bytes32(0),'Source does not exist'
245,545
sources[_id].id!=bytes32(0)
'Source is already complete'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; contract Bridge is Ownable { IERC20 _token = IERC20(0x30dcBa0405004cF124045793E1933C798Af9E66a); bool public isActive; uint256 public bridgeCost = 2...
!sources[_id].isComplete,'Source is already complete'
245,545
!sources[_id].isComplete
'Already initialized'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; contract Bridge is Ownable { IERC20 _token = IERC20(0x30dcBa0405004cF124045793E1933C798Af9E66a); bool public isActive; uint256 public bridgeCost = 2...
receiverIniter[_id]==address(0),'Already initialized'
245,545
receiverIniter[_id]==address(0)
'Already completed'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; contract Bridge is Ownable { IERC20 _token = IERC20(0x30dcBa0405004cF124045793E1933C798Af9E66a); bool public isActive; uint256 public bridgeCost = 2...
!receiver.isComplete,'Already completed'
245,545
!receiver.isComplete
"Account must not be excluded"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
isTaxExcluded(account),"Account must not be excluded"
245,575
isTaxExcluded(account)
"the sum must be 100"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
_marketingRate+_buyLotteryRate+_buyAcapRate+_buyApadRate==100,"the sum must be 100"
245,575
_marketingRate+_buyLotteryRate+_buyAcapRate+_buyApadRate==100
"The total tax on buys can never exceed 20 percent"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
_minimumTax+_buyTaxRange<=20,"The total tax on buys can never exceed 20 percent"
245,575
_minimumTax+_buyTaxRange<=20
"the sum must be 100"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
_sellMarketingRate+_sellLotteryRate+_sellAcapRate+_sellApadRate==100,"the sum must be 100"
245,575
_sellMarketingRate+_sellLotteryRate+_sellAcapRate+_sellApadRate==100
"The maximum effective sell tax can never exceed 25 percent"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
_maximumSellTax-_maximumSellTaxRefund<=25,"The maximum effective sell tax can never exceed 25 percent"
245,575
_maximumSellTax-_maximumSellTaxRefund<=25
null
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
_tieredPercentages[0]<=10
245,575
_tieredPercentages[0]<=10
null
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./WinOnBuy.sol"; import "./Multisig.sol"; contract AdvancedTax is Ownable, WinOnBuy, Multisig { using SafeMath for uint256; uint256 _total...
_tieredPercentages[1]==10
245,575
_tieredPercentages[1]==10