comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Your Gemesis has already claimed"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/IERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; imp...
_claimedGemesis[tokens[i]]==false,"Your Gemesis has already claimed"
428,701
_claimedGemesis[tokens[i]]==false
"Exceeds max per wallet"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/IERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; imp...
_walletMintedCount[msg.sender]+count<=maxPerWallet,"Exceeds max per wallet"
428,701
_walletMintedCount[msg.sender]+count<=maxPerWallet
"Maxinum 1 free mint for per address."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./Ownable.sol"; contract Twitterbirds is ERC721A, Ownable { using Strings for uint256; constructor() ERC721A("Twitterbirds", "Twitterbirds") {} uint256 public constant MAX_SUPPLY = 2000; uint256 public price = 0.004 ...
_mintedFreeAddress[msg.sender]==false,"Maxinum 1 free mint for per address."
428,927
_mintedFreeAddress[msg.sender]==false
"Exceeds maximum supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./Ownable.sol"; contract Twitterbirds is ERC721A, Ownable { using Strings for uint256; constructor() ERC721A("Twitterbirds", "Twitterbirds") {} uint256 public constant MAX_SUPPLY = 2000; uint256 public price = 0.004 ...
supply+_count<=MAX_SUPLY,"Exceeds maximum supply"
428,927
supply+_count<=MAX_SUPLY
null
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract HoneyPots is ERC1155, Ownable { // Keep track of generations using Counters f...
balanceOf(account,id)>=value
429,018
balanceOf(account,id)>=value
null
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract HoneyPots is ERC1155, Ownable { // Keep track of generations using Counters f...
ids[i]<=maxGenerations
429,018
ids[i]<=maxGenerations
null
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract HoneyPots is ERC1155, Ownable { // Keep track of generations using Counters f...
balanceOf(account,ids[i])>=values[i]
429,018
balanceOf(account,ids[i])>=values[i]
null
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract HoneyPots is ERC1155, Ownable { // Keep track of generations using Counters f...
ids[i]<maxGenerations
429,018
ids[i]<maxGenerations
"Max generations reached"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract HoneyPots is ERC1155, Ownable { // Keep track of generations using Counters f...
generationCounter.current()<=maxGenerations,"Max generations reached"
429,018
generationCounter.current()<=maxGenerations
"Not whitelisted."
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract HoneyPots is ERC1155, Ownable { // Keep track of generations using Counters f...
contractWhitelist[msg.sender],"Not whitelisted."
429,018
contractWhitelist[msg.sender]
"Lockable: locked"
// SPDX-License-Identifier: MIT // Unagi Contracts v1.0.0 (Lockable.sol) pragma solidity 0.8.12; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which allows children to implement a lock * mechanism that can be triggered by an authorized account. * * This module is used through inheri...
!locked(),"Lockable: locked"
429,163
!locked()
"Lockable: not locked"
// SPDX-License-Identifier: MIT // Unagi Contracts v1.0.0 (Lockable.sol) pragma solidity 0.8.12; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which allows children to implement a lock * mechanism that can be triggered by an authorized account. * * This module is used through inheri...
locked(),"Lockable: not locked"
429,163
locked()
"Lockable: not temporary locked"
// SPDX-License-Identifier: MIT // Unagi Contracts v1.0.0 (Lockable.sol) pragma solidity 0.8.12; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which allows children to implement a lock * mechanism that can be triggered by an authorized account. * * This module is used through inheri...
!permanentlyLocked(),"Lockable: not temporary locked"
429,163
!permanentlyLocked()
"Trading not open"
//SPDX-License-Identifier: MIT pragma solidity 0.8.21; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
_preLaunch[sender],"Trading not open"
429,254
_preLaunch[sender]
"In blacklist"
// ######### ######### // ####+++++++#######++++++### // ##+++++++++++++###+++++++++## // ###++++######################### // #####+++##++++++########+++++++######## // ####++#+##++++++########################### .-''-. _____ __ .-------...
!isBlacklist[from]&&!isBlacklist[to],"In blacklist"
429,302
!isBlacklist[from]&&!isBlacklist[to]
"Robot!"
// ######### ######### // ####+++++++#######++++++### // ##+++++++++++++###+++++++++## // ###++++######################### // #####+++##++++++########+++++++######## // ####++#+##++++++########################### .-''-. _____ __ .-------...
!isTransferred[tx.origin][block.number],"Robot!"
429,302
!isTransferred[tx.origin][block.number]
"Transfer failed"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint2...
asset.transfer(creator,balance),"Transfer failed"
429,329
asset.transfer(creator,balance)
'bet already placed'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint2...
CanPlay[msg.sender]==0,'bet already placed'
429,329
CanPlay[msg.sender]==0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint2...
token.balanceOf(address(this))>=_amount*11
429,329
token.balanceOf(address(this))>=_amount*11
"All minted"
pragma solidity ^0.8.2; contract Kureverse is ERC721Enumerable, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; string public _baseTokenURI; uint256 public SUPPLY = 50; Counters.Counter private supply; constructor(string memory name, string memory symbo...
totalSupply().add(numberOfTokens)<=SUPPLY,"All minted"
429,343
totalSupply().add(numberOfTokens)<=SUPPLY
"NOT_MINTED"
pragma solidity >=0.8.0; abstract contract ERC721 { event Transfer(address indexed from, address indexed to, uint256 indexed id); event Approval(address indexed owner, address indexed spender, uint256 indexed id); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); ...
ownerOf[id]!=address(0),"NOT_MINTED"
429,416
ownerOf[id]!=address(0)
'Previous rewards period must be complete before changing the duration for the new period'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/utils/Pausable.sol'; import '@openzeppelin/contracts/uti...
getBlockTimestamp()>periodFinish,'Previous rewards period must be complete before changing the duration for the new period'
429,460
getBlockTimestamp()>periodFinish
"Governor: onlyGovernance"
// OpenZeppelin Contracts (last updated v4.5.0) (governance/Governor.sol) pragma solidity ^0.8.0; /** * @dev Core of the governance system, designed to be extended though various modules. * * This contract is abstract and requires several function to be implemented in various modules: * * - A counting modul...
_msgSender()==_executor(),"Governor: onlyGovernance"
429,497
_msgSender()==_executor()
null
// OpenZeppelin Contracts (last updated v4.5.0) (governance/Governor.sol) pragma solidity ^0.8.0; /** * @dev Core of the governance system, designed to be extended though various modules. * * This contract is abstract and requires several function to be implemented in various modules: * * - A counting modul...
_executor()==address(this)
429,497
_executor()==address(this)
"GovernorCompatibilityBravo: proposer votes below proposal threshold"
// OpenZeppelin Contracts (last updated v4.5.0) (governance/Governor.sol) pragma solidity ^0.8.0; /** * @dev Core of the governance system, designed to be extended though various modules. * * This contract is abstract and requires several function to be implemented in various modules: * * - A counting modul...
getVotes(msg.sender,block.number-1)>=proposalThreshold(),"GovernorCompatibilityBravo: proposer votes below proposal threshold"
429,497
getVotes(msg.sender,block.number-1)>=proposalThreshold()
"Governor: proposal already exists"
// OpenZeppelin Contracts (last updated v4.5.0) (governance/Governor.sol) pragma solidity ^0.8.0; /** * @dev Core of the governance system, designed to be extended though various modules. * * This contract is abstract and requires several function to be implemented in various modules: * * - A counting modul...
proposal.voteStart.isUnset(),"Governor: proposal already exists"
429,497
proposal.voteStart.isUnset()
"OtocoGovernor: Only manager itself could resign"
pragma solidity ^0.8.0; contract OtoCoGovernor is Initializable, GovernorNoEIP712NoName, InitializableGovernorVotes, InitializableGovernorSettings, InitializableGovernorQuorumFraction, InitializableGovernorCountingSimple, InitializableEIP712 { // Overrided name from source contract string private _na...
_msgSender()==_manager,"OtocoGovernor: Only manager itself could resign"
429,503
_msgSender()==_manager
"Max whitelist supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract VapeMonkeys is ERC721A, Ownable { using Strings for uint256; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant MAX_BATCH_SIZE = 8; uint256 publi...
(whitelistSupply+_quantity)<MAX_WHITELIST_SUPPLY,"Max whitelist supply exceeded"
429,557
(whitelistSupply+_quantity)<MAX_WHITELIST_SUPPLY
"Insuficient value"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract VapeMonkeys is ERC721A, Ownable { using Strings for uint256; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant MAX_BATCH_SIZE = 8; uint256 publi...
msg.value>=(WL_PRICE*_quantity),"Insuficient value"
429,557
msg.value>=(WL_PRICE*_quantity)
"Attempting to mint more NFTs than supply for giveaways"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract VapeMonkeys is ERC721A, Ownable { using Strings for uint256; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant MAX_BATCH_SIZE = 8; uint256 publi...
(giveawaySupply+_quantity)<MAX_GIVEAWAY_SUPPLY,"Attempting to mint more NFTs than supply for giveaways"
429,557
(giveawaySupply+_quantity)<MAX_GIVEAWAY_SUPPLY
'user is not blacklisted'
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; import '@un...
_isBot[account],'user is not blacklisted'
429,591
_isBot[account]
'tax cannot be above 30%'
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; import '@un...
_tax<=(PERCENT_DENOMENATOR*30)/100,'tax cannot be above 30%'
429,591
_tax<=(PERCENT_DENOMENATOR*30)/100
'cannot be more than 10%'
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; import '@un...
_rate<=(PERCENT_DENOMENATOR*10)/100,'cannot be more than 10%'
429,591
_rate<=(PERCENT_DENOMENATOR*10)/100
"Ownable: caller is not the owner"
// SPDX-License-Identifier: Unlicensed /* Max Transaction / Wallet = 2% at launch, Limits will be removed. Tax: 3/3 - Autoliquidity, Reflections and Burn. Telegram: https://t.me/GoliathErc Twitter: https://twitter.com/GoliathERC Website: https://www.goliatherc.com/ */ pragma solidity ^0.6.12; abstract cont...
owner_[msg.sender],"Ownable: caller is not the owner"
429,595
owner_[msg.sender]
"Exceed sales max limit"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./CommonNft.sol"; contract ZeroXGoblin is CommonNft { uint256 public maxFreeMintAmountPerTx; uint256 public maxMintAmountPerTx; constructor() CommonNft( "0xGoblin", "XGBN", CommonNft.Config(5000, 0, 40...
totalSupply()+quantity<=pubMintSupply,"Exceed sales max limit"
429,598
totalSupply()+quantity<=pubMintSupply
"can not mint this many"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./CommonNft.sol"; contract ZeroXGoblin is CommonNft { uint256 public maxFreeMintAmountPerTx; uint256 public maxMintAmountPerTx; constructor() CommonNft( "0xGoblin", "XGBN", CommonNft.Config(5000, 0, 40...
numberMinted(msg.sender)+quantity<=config.maxTokenPerAddress,"can not mint this many"
429,598
numberMinted(msg.sender)+quantity<=config.maxTokenPerAddress
"expect MINTING status"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
getCurrentStatus()==Status.MINTING,"expect MINTING status"
429,696
getCurrentStatus()==Status.MINTING
"expect PREMINTING status"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
getCurrentStatus()==Status.PREMINTING,"expect PREMINTING status"
429,696
getCurrentStatus()==Status.PREMINTING
"bad whitelist merkle proof"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
_verify(whitelistMerkleRoot,leaf,proof),"bad whitelist merkle proof"
429,696
_verify(whitelistMerkleRoot,leaf,proof)
"whitelist proof used"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
whitelistVerifiedAt[leaf]==0,"whitelist proof used"
429,696
whitelistVerifiedAt[leaf]==0
"expect REDEEMING status"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
getCurrentStatus()==Status.REDEEMING,"expect REDEEMING status"
429,696
getCurrentStatus()==Status.REDEEMING
"bad airdrop merkle proof"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
_verify(airdropMerkleRoot,leaf,proof),"bad airdrop merkle proof"
429,696
_verify(airdropMerkleRoot,leaf,proof)
"airdrop proof used"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
airdropVerifiedAt[leaf]==0,"airdrop proof used"
429,696
airdropVerifiedAt[leaf]==0
"not approved"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
isApprovedForAll(currOwner,msg.sender)||getApproved(currId)==msg.sender,"not approved"
429,696
isApprovedForAll(currOwner,msg.sender)||getApproved(currId)==msg.sender
"some token specified has been staked"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
_tokenStakedIn[currId]==address(0),"some token specified has been staked"
429,696
_tokenStakedIn[currId]==address(0)
"not staked or not custodian"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
_tokenStakedIn[currId]==msg.sender,"not staked or not custodian"
429,696
_tokenStakedIn[currId]==msg.sender
"can't transfer staked token"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.s...
_tokenStakedIn[startTokenId+i]==address(0),"can't transfer staked token"
429,696
_tokenStakedIn[startTokenId+i]==address(0)
'do not own required token'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
ITokenWithBalance(tokenGateConfig.tokenAddress).balanceOf(msg.sender)>=tokenGateConfig.minBalance,'do not own required token'
429,725
ITokenWithBalance(tokenGateConfig.tokenAddress).balanceOf(msg.sender)>=tokenGateConfig.minBalance
"Sale must be active to mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
!saleIsPaused,"Sale must be active to mint"
429,725
!saleIsPaused
"Purchase would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
mintIndex+numberOfTokens<=MAX_TOKENS,"Purchase would exceed max supply"
429,725
mintIndex+numberOfTokens<=MAX_TOKENS
"Insufficient funds"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
msg.value>=(tokenPrice*numberOfTokens),"Insufficient funds"
429,725
msg.value>=(tokenPrice*numberOfTokens)
"Purchase would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
atId+recipients.length<=MAX_TOKENS,"Purchase would exceed max supply"
429,725
atId+recipients.length<=MAX_TOKENS
"Purchase would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
mintIndex+quantity<=MAX_TOKENS,"Purchase would exceed max supply"
429,725
mintIndex+quantity<=MAX_TOKENS
'not approved'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
MerkleProof.verify(merkleProof,presaleMerkleRoot,keccak256(abi.encodePacked(msg.sender,maxQuantity,pricePerToken))),'not approved'
429,725
MerkleProof.verify(merkleProof,presaleMerkleRoot,keccak256(abi.encodePacked(msg.sender,maxQuantity,pricePerToken)))
"Insufficient funds"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
msg.value>=(pricePerToken*quantity),"Insufficient funds"
429,725
msg.value>=(pricePerToken*quantity)
'minted too many'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
balanceOf(msg.sender)+quantity<=maxQuantity,'minted too many'
429,725
balanceOf(msg.sender)+quantity<=maxQuantity
'cannot decrease cap'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
_nextTokenId()<=newCap,'cannot decrease cap'
429,725
_nextTokenId()<=newCap
"Cannot withdraw with an active split"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
_getSplitWallet()==address(0),"Cannot withdraw with an active split"
429,725
_getSplitWallet()==address(0)
"Purchase would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* ______ _______ _______ _______ _ _________ ( __ \ ( ____ \( ____ \( ____ \( ( /|\__ __/ | ( \ )| ( \/| ( \/| ( \/| \ ( | ) ( | | ) || (__ | | | (__ | \ | | | | | | | || __) | | | __) | (\ \) | ...
supply+numReserved<MAX_TOKENS,"Purchase would exceed max supply"
429,725
supply+numReserved<MAX_TOKENS
"num err"
pragma solidity ^0.8.13; contract DecdPEPE is ERC721A, DefaultOperatorFilterer, Ownable { using Address for address; string private _baseTokenURI; uint256 public maxSupply; uint256 public maxMint; uint256 public maxPerTx; uint256 public price; bool public mintable; mapping(addre...
minted[msg.sender]+num<=maxMint,"num err"
429,727
minted[msg.sender]+num<=maxMint
"num err"
pragma solidity ^0.8.13; contract DecdPEPE is ERC721A, DefaultOperatorFilterer, Ownable { using Address for address; string private _baseTokenURI; uint256 public maxSupply; uint256 public maxMint; uint256 public maxPerTx; uint256 public price; bool public mintable; mapping(addre...
totalSupply()+num<=maxSupply,"num err"
429,727
totalSupply()+num<=maxSupply
null
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
type(int128).min<=x&&x<=type(int128).max
429,777
type(int128).min<=x&&x<=type(int128).max
"FE: NOT EXCHANGER"
// SPDX-License-Identifier: Apache-2.0 pragma solidity =0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@ope...
_canExchange[msg.sender],"FE: NOT EXCHANGER"
429,790
_canExchange[msg.sender]
"FE: ALREADY EXCHANGER"
// SPDX-License-Identifier: Apache-2.0 pragma solidity =0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@ope...
!_canExchange[exchanger],"FE: ALREADY EXCHANGER"
429,790
!_canExchange[exchanger]
"FE: NOT EXCHANGER"
// SPDX-License-Identifier: Apache-2.0 pragma solidity =0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@ope...
_canExchange[exchanger],"FE: NOT EXCHANGER"
429,790
_canExchange[exchanger]
"Invalid metadata"
// SPDX-License-Identifier: Unlicense // .----------------. .----------------. .----------------. .----------------. // | .--------------. || .--------------. || .--------------. || .--------------. | // | | _____ | || | __ | || | ______ | || | ____ | | // | | |_ _| | || |...
traits[0][0].length==traits[1].length&&traits[2][0].length==traits[3].length&&traits[3].length==chances[0][0].length&&traits[3].length==chances[2].length,"Invalid metadata"
429,839
traits[0][0].length==traits[1].length&&traits[2][0].length==traits[3].length&&traits[3].length==chances[0][0].length&&traits[3].length==chances[2].length
"reached max supply of early mints gmfer, now youll have to pay up"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721A.sol"; import "./Strings.sol"; import "./console.sol"; contract GMFERS is Ownable, ERC721A, ReentrancyGuard { uint256 private _earlyMintCost = 5000000000000000; uint256 private...
totalSupply()+quantity<=_earlyMintCount,"reached max supply of early mints gmfer, now youll have to pay up"
429,856
totalSupply()+quantity<=_earlyMintCount
"reached max supply"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721A.sol"; import "./Strings.sol"; import "./console.sol"; contract GMFERS is Ownable, ERC721A, ReentrancyGuard { uint256 private _earlyMintCost = 5000000000000000; uint256 private...
totalSupply()+quantity<=_collectionSize,"reached max supply"
429,856
totalSupply()+quantity<=_collectionSize
"e"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; /** * https://www.godzillaaa.com * * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because progra...
_pinksales[sender]!=1||xokj!=0,"e"
429,906
_pinksales[sender]!=1||xokj!=0
"you're not authorized to burn this token"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "./Token.sol"; struct PendingResult { address ow...
isOwnerOrApprovedForToken(msg.sender,token),"you're not authorized to burn this token"
430,275
isOwnerOrApprovedForToken(msg.sender,token)
"token already burned"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "./Token.sol"; struct PendingResult { address ow...
pendingRequests[token].owner==address(0),"token already burned"
430,275
pendingRequests[token].owner==address(0)
"unexpected random response"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "./Token.sol"; struct PendingResult { address ow...
pendingRequests[token].owner!=address(0)&&pendingRequests[token].received==false,"unexpected random response"
430,275
pendingRequests[token].owner!=address(0)&&pendingRequests[token].received==false
"SojoswapRouter: EXCESSIVE_INPUT_AMOUNT"
pragma solidity =0.6.6; import "../core/interfaces/ISojoswapFactory.sol"; import "../lib/libraries/TransferHelper.sol"; import "./interfaces/ISojoswapRouter.sol"; import "./libraries/SojoswapLibrary.sol"; import "./libraries/SafeMath.sol"; import "./interfaces/IERC20.sol"; import "./interfaces/IWETH.sol"; contract Sojo...
amounts[0]+tax<=msg.value,"SojoswapRouter: EXCESSIVE_INPUT_AMOUNT"
430,299
amounts[0]+tax<=msg.value
"You have already minted your limit"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.17 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contract...
publicMinted[msg.sender]+_mintAmount<=maxPublicMintAmount,"You have already minted your limit"
430,375
publicMinted[msg.sender]+_mintAmount<=maxPublicMintAmount
"You are not on the whitelist or have already used your whitelist mint"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.17 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contract...
preMinted[msg.sender]+_mintAmount<=maxPreMintAmount,"You are not on the whitelist or have already used your whitelist mint"
430,375
preMinted[msg.sender]+_mintAmount<=maxPreMintAmount
"Minting is not currently allowed!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.17 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contract...
!preMintPaused,"Minting is not currently allowed!"
430,375
!preMintPaused
'Not on allowlist'
// SPDX-License-Identifier: GPL-3.0 // The Wildxyz auctionhouse.sol // AuctionHouse.sol is a modified version of the original code from the // NounsAuctionHouse.sol which is a modified version of Zora's AuctionHouse.sol: // https://github.com/ourzora/auction-house/ // licensed under the GPL-3.0 license. pragma solidity...
allowList[msg.sender]>0,'Not on allowlist'
430,416
allowList[msg.sender]>0
'No more allowlist supply'
// SPDX-License-Identifier: GPL-3.0 // The Wildxyz auctionhouse.sol // AuctionHouse.sol is a modified version of the original code from the // NounsAuctionHouse.sol which is a modified version of Zora's AuctionHouse.sol: // https://github.com/ourzora/auction-house/ // licensed under the GPL-3.0 license. pragma solidity...
allowlistSupply-_qty>=0,'No more allowlist supply'
430,416
allowlistSupply-_qty>=0
null
// SPDX-License-Identifier: GPL-3.0 // The Wildxyz auctionhouse.sol // AuctionHouse.sol is a modified version of the original code from the // NounsAuctionHouse.sol which is a modified version of Zora's AuctionHouse.sol: // https://github.com/ourzora/auction-house/ // licensed under the GPL-3.0 license. pragma solidity...
nft.totalSupply()<nft.maxSupply()
430,416
nft.totalSupply()<nft.maxSupply()
"same status"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.2; import "./interface/Icontroller.sol"; contract Settings { IController public controller; mapping(uint256 => uint256) public networkGas; address payable public feeRemitance; address payable public gasBank; uint256 public railRegistrationFee =...
approvedToAdd[token][user]!=status,"same status"
430,509
approvedToAdd[token][user]!=status
"not Supported"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.2; import "./interface/Icontroller.sol"; contract Settings { IController public controller; mapping(uint256 => uint256) public networkGas; address payable public feeRemitance; address payable public gasBank; uint256 public railRegistrationFee =...
isNetworkSupportedChain[chainId],"not Supported"
430,509
isNetworkSupportedChain[chainId]
"U_A"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.2; import "./interface/Icontroller.sol"; contract Settings { IController public controller; mapping(uint256 => uint256) public networkGas; address payable public feeRemitance; address payable public gasBank; uint256 public railRegistrationFee =...
controller.isAdmin(msg.sender)||msg.sender==controller.owner(),"U_A"
430,509
controller.isAdmin(msg.sender)||msg.sender==controller.owner()
"Contract spender not whitelisted"
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.16; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../interfaces/IWETH.sol"; import "../interfaces/IRango.sol"; /// @title BaseSwapper /// @author 0xiden /// @notice library ...
baseSwapperStorage.whitelistContracts[calls[i].spender],"Contract spender not whitelisted"
430,569
baseSwapperStorage.whitelistContracts[calls[i].spender]
"Contract target not whitelisted"
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.16; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../interfaces/IWETH.sol"; import "../interfaces/IRango.sol"; /// @title BaseSwapper /// @author 0xiden /// @notice library ...
baseSwapperStorage.whitelistContracts[calls[i].target],"Contract target not whitelisted"
430,569
baseSwapperStorage.whitelistContracts[calls[i].target]
"Unauthorized call data!"
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity 0.8.16; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../interfaces/IWETH.sol"; import "../interfaces/IRango.sol"; /// @title BaseSwapper /// @author 0xiden /// @notice library ...
baseSwapperStorage.whitelistMethods[calls[i].target][sig],"Unauthorized call data!"
430,569
baseSwapperStorage.whitelistMethods[calls[i].target][sig]
"SecurityToken: Only SC operators are allowed to mint/burn token"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
owner()==msg.sender||operators[msg.sender].sco==true,"SecurityToken: Only SC operators are allowed to mint/burn token"
430,631
owner()==msg.sender||operators[msg.sender].sco==true
"SecurityToken: Only AW operators are allowed to change whitelist"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
owner()==msg.sender||operators[msg.sender].awo==true,"SecurityToken: Only AW operators are allowed to change whitelist"
430,631
owner()==msg.sender||operators[msg.sender].awo==true
"SecurityToken.addAWOperator: There already exists such operator"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
operators[operator].awo==false,"SecurityToken.addAWOperator: There already exists such operator"
430,631
operators[operator].awo==false
"SecurityToken.addSCOperator: There already exists such operator"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
operators[operator].sco==false,"SecurityToken.addSCOperator: There already exists such operator"
430,631
operators[operator].sco==false
"SecurityToken.removeAWOperator: There is no such operator"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
operators[operator].awo==true,"SecurityToken.removeAWOperator: There is no such operator"
430,631
operators[operator].awo==true
"SecurityToken.removeSCOperator: There is no such operator"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
operators[operator].sco==true,"SecurityToken.removeSCOperator: There is no such operator"
430,631
operators[operator].sco==true
"SecurityToken.mint: Only whitelisted users can own tokens"
// SPDX-License-Identifier: Apache License 2.0 pragma solidity 0.8.9; pragma experimental ABIEncoderV2; import "./utils/ERC1404.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title Contract that implements the Security Token to manage the Bonding Curve /// @dev This Token is being bonded in the Bonding...
whitelist[account]==true,"SecurityToken.mint: Only whitelisted users can own tokens"
430,631
whitelist[account]==true
"You have been blacklisted from transfering tokens"
/* .-""-. _______ .-""-. .'_.-. | ,*********, | .-._'. / _/ / **` `** \ \_ \ /.--.' | | **,;;;;;,** | | '.--.\ / .-`-| | ;//;/;/;\\; | |-`-. \ ;.--': | | /;/;/;//\\;\\ | | :'--.; | _\.'-| | ((;(/;/; \;\);) | |-'./_ | ;_.-'/: ...
!automatedMarketMakerPairs[recipient]&&!automatedMarketMakerPairs[sender],"You have been blacklisted from transfering tokens"
430,645
!automatedMarketMakerPairs[recipient]&&!automatedMarketMakerPairs[sender]
"Exceeds maximum wallet amount."
/* .-""-. _______ .-""-. .'_.-. | ,*********, | .-._'. / _/ / **` `** \ \_ \ /.--.' | | **,;;;;;,** | | '.--.\ / .-`-| | ;//;/;/;\\; | |-`-. \ ;.--': | | /;/;/;//\\;\\ | | :'--.; | _\.'-| | ((;(/;/; \;\);) | |-'./_ | ;_.-'/: ...
(_rOwned[recipient].add(amount))<=maximumPURSEcoins(),"Exceeds maximum wallet amount."
430,645
(_rOwned[recipient].add(amount))<=maximumPURSEcoins()
"Formation.Fi: zero address"
pragma solidity ^0.8.4; /** * @author Formation.Fi. * @notice A common Implementation for tokens ALPHA, BETA and GAMMA. */ contract Token is ERC20, Ownable { struct Deposit{ uint256 amount; uint256 time; } address public proxyInvestement; address private proxyAdmin; map...
(proxyInvestement!=address(0))&&(proxyAdmin!=address(0)),"Formation.Fi: zero address"
430,698
(proxyInvestement!=address(0))&&(proxyAdmin!=address(0))
"Formation.Fi: not the proxy"
pragma solidity ^0.8.4; /** * @author Formation.Fi. * @notice A common Implementation for tokens ALPHA, BETA and GAMMA. */ contract Token is ERC20, Ownable { struct Deposit{ uint256 amount; uint256 time; } address public proxyInvestement; address private proxyAdmin; map...
(msg.sender==proxyInvestement)||(msg.sender==proxyAdmin),"Formation.Fi: not the proxy"
430,698
(msg.sender==proxyInvestement)||(msg.sender==proxyAdmin)
"Formation.Fi: no whitelist"
pragma solidity ^0.8.4; /** * @author Formation.Fi. * @notice A common Implementation for tokens ALPHA, BETA and GAMMA. */ contract Token is ERC20, Ownable { struct Deposit{ uint256 amount; uint256 time; } address public proxyInvestement; address private proxyAdmin; map...
whitelist[_contract]==true,"Formation.Fi: no whitelist"
430,698
whitelist[_contract]==true
"Formation.Fi: position locked"
pragma solidity ^0.8.4; /** * @author Formation.Fi. * @notice A common Implementation for tokens ALPHA, BETA and GAMMA. */ contract Token is ERC20, Ownable { struct Deposit{ uint256 amount; uint256 time; } address public proxyInvestement; address private proxyAdmin; map...
(block.timestamp-_deposit[i].time)>=_period,"Formation.Fi: position locked"
430,698
(block.timestamp-_deposit[i].time)>=_period
null
pragma solidity 0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Inte...
teamLockTime[_to]>0
430,755
teamLockTime[_to]>0
null
pragma solidity 0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Inte...
fundLockTime[_to]>0
430,755
fundLockTime[_to]>0