comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
null
pragma solidity ^0.4.23; /** * SafeMath <https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol/> * Copyright (c) 2016 Smart Contract Solutions, Inc. * Released under the MIT License (MIT) */ /// @title Math operations with safety checks library SafeMath { function...
!codeExportEnabled
35,831
!codeExportEnabled
null
pragma solidity ^0.4.23; /** * SafeMath <https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol/> * Copyright (c) 2016 Smart Contract Solutions, Inc. * Released under the MIT License (MIT) */ /// @title Math operations with safety checks library SafeMath { function...
balances[owner]>=tokensToSend
35,831
balances[owner]>=tokensToSend
null
pragma solidity ^0.4.23; /** * SafeMath <https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol/> * Copyright (c) 2016 Smart Contract Solutions, Inc. * Released under the MIT License (MIT) */ /// @title Math operations with safety checks library SafeMath { function...
shareholders[_blacklistAddress].allowed
35,831
shareholders[_blacklistAddress].allowed
"Liquidity generation grace period still ongoing"
// but thanks a million Gwei to MIT and Zeppelin. You guys rock!!! // MAINNET VERSION. pragma solidity >=0.6.0; contract Corlibri_Token is ERC20 { using SafeMath for uint256; using Address for address; event LiquidityAddition(address indexed dst, uint value); event LPTokenClaimed(address dst, uin...
contractStart_Timestamp.add(emergencyPeriod)<block.timestamp,"Liquidity generation grace period still ongoing"
35,838
contractStart_Timestamp.add(emergencyPeriod)<block.timestamp
"max 10ETH contribution per address"
// but thanks a million Gwei to MIT and Zeppelin. You guys rock!!! // MAINNET VERSION. pragma solidity >=0.6.0; contract Corlibri_Token is ERC20 { using SafeMath for uint256; using Address for address; event LiquidityAddition(address indexed dst, uint value); event LPTokenClaimed(address dst, uin...
ethContributed[msg.sender].add(msg.value)<=individualCap,"max 10ETH contribution per address"
35,838
ethContributed[msg.sender].add(msg.value)<=individualCap
"750 ETH Hard cap"
// but thanks a million Gwei to MIT and Zeppelin. You guys rock!!! // MAINNET VERSION. pragma solidity >=0.6.0; contract Corlibri_Token is ERC20 { using SafeMath for uint256; using Address for address; event LiquidityAddition(address indexed dst, uint value); event LPTokenClaimed(address dst, uin...
totalETHContributed.add(msg.value)<=totalCap,"750 ETH Hard cap"
35,838
totalETHContributed.add(msg.value)<=totalCap
"Nothing to claim, move along"
// but thanks a million Gwei to MIT and Zeppelin. You guys rock!!! // MAINNET VERSION. pragma solidity >=0.6.0; contract Corlibri_Token is ERC20 { using SafeMath for uint256; using Address for address; event LiquidityAddition(address indexed dst, uint value); event LPTokenClaimed(address dst, uin...
ethContributed[msg.sender]>0,"Nothing to claim, move along"
35,838
ethContributed[msg.sender]>0
"Grow some mustache kiddo..."
// but thanks a million Gwei to MIT and Zeppelin. You guys rock!!! // MAINNET VERSION. pragma solidity >=0.6.0; contract Corlibri_Token is ERC20 { using SafeMath for uint256; using Address for address; event LiquidityAddition(address indexed dst, uint value); event LPTokenClaimed(address dst, uin...
governanceLevels[msg.sender]>=_level,"Grow some mustache kiddo..."
35,838
governanceLevels[msg.sender]>=_level
"Max reached"
pragma solidity ^0.8.0; contract BBL1 is ERC721Enumerable, Ownable { //BB Variables using Strings for uint256; uint256 public cost = 0.04 ether; uint16 public cmMaxSupply = 9261; uint16 public cmCount; uint16 private maxLB = 1900; uint16 private maxSB = 1850; uint16 private maxCB = 1876; uint...
cmCount+_mintAmount<=cmMaxSupply,"Max reached"
35,919
cmCount+_mintAmount<=cmMaxSupply
"pre-sale max reached"
pragma solidity ^0.8.0; contract BBL1 is ERC721Enumerable, Ownable { //BB Variables using Strings for uint256; uint256 public cost = 0.04 ether; uint16 public cmMaxSupply = 9261; uint16 public cmCount; uint16 private maxLB = 1900; uint16 private maxSB = 1850; uint16 private maxCB = 1876; uint...
cmCount+_mintAmount<=pLmt,"pre-sale max reached"
35,919
cmCount+_mintAmount<=pLmt
"5 mints per person during pre-sale"
pragma solidity ^0.8.0; contract BBL1 is ERC721Enumerable, Ownable { //BB Variables using Strings for uint256; uint256 public cost = 0.04 ether; uint16 public cmMaxSupply = 9261; uint16 public cmCount; uint16 private maxLB = 1900; uint16 private maxSB = 1850; uint16 private maxCB = 1876; uint...
ownerTokenBalance+_mintAmount<=5,"5 mints per person during pre-sale"
35,919
ownerTokenBalance+_mintAmount<=5
"Purchase would exceed max supply of Sylvia"
// SPDX-License-Identifier: MIT // Adapted from BoringBananasCo // Modified and updated to 0.8.0 by @Danny_One_ // Project Sylvia art by @kakigaijin // <3 VeVefam // Special thanks to BoringBananasCo & Blockhead Devs for all the resources & assistance along the way! import "./ERC721_flat.sol"; pragma solidity ^0...
totalSupply()+numberOfTokens<MAX_SYLVIAS-sylReserve+1,"Purchase would exceed max supply of Sylvia"
35,921
totalSupply()+numberOfTokens<MAX_SYLVIAS-sylReserve+1
"Sale end"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721Burnable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./ERC721Pausable.sol"; contract Prive is ERC721Enumerable, Ownable, ERC721Burnable, ER...
_totalSupply()<=MAX_NFT,"Sale end"
35,929
_totalSupply()<=MAX_NFT
"Max limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./ERC721Burnable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./ERC721Pausable.sol"; contract Prive is ERC721Enumerable, Ownable, ERC721Burnable, ER...
total+_count<=MAX_NFT,"Max limit"
35,929
total+_count<=MAX_NFT
"Sold Out"
pragma solidity ^0.8.0; contract BellaPoarchDAO is ERC721A, Ownable { uint256 public NFT_PRICE = 0.01 ether; uint256 public MAX_SUPPLY = 1111; uint256 public MAX_MINTS = 10; uint256 public MAX_MINTS_RESERVED = 5; uint256 public freeTokens = 222; string public projName = "BellaPoarchDAO"; stri...
totalSupply()+numTokens<=MAX_SUPPLY,"Sold Out"
35,941
totalSupply()+numTokens<=MAX_SUPPLY
"Only 5 reserved mints per wallet"
pragma solidity ^0.8.0; contract BellaPoarchDAO is ERC721A, Ownable { uint256 public NFT_PRICE = 0.01 ether; uint256 public MAX_SUPPLY = 1111; uint256 public MAX_MINTS = 10; uint256 public MAX_MINTS_RESERVED = 5; uint256 public freeTokens = 222; string public projName = "BellaPoarchDAO"; stri...
addressToReservedMints[msg.sender]+numTokens<=MAX_MINTS_RESERVED,"Only 5 reserved mints per wallet"
35,941
addressToReservedMints[msg.sender]+numTokens<=MAX_MINTS_RESERVED
"There are no reserved mints left"
pragma solidity ^0.8.0; contract BellaPoarchDAO is ERC721A, Ownable { uint256 public NFT_PRICE = 0.01 ether; uint256 public MAX_SUPPLY = 1111; uint256 public MAX_MINTS = 10; uint256 public MAX_MINTS_RESERVED = 5; uint256 public freeTokens = 222; string public projName = "BellaPoarchDAO"; stri...
totalSupply()+numTokens<=freeTokens,"There are no reserved mints left"
35,941
totalSupply()+numTokens<=freeTokens
"TwitterValidationOperator: INVALID_REGISTRY_ADDRESS"
pragma solidity 0.5.12; // pragma experimental ABIEncoderV2; contract TwitterValidationOperator is WhitelistedRole, CapperRole, ERC677Receiver { string public constant NAME = 'Chainlink Twitter Validation Operator'; string public constant VERSION = '0.2.0'; using SafeMath for uint256; event Valida...
address(_registry)!=address(0),"TwitterValidationOperator: INVALID_REGISTRY_ADDRESS"
35,987
address(_registry)!=address(0)
"TwitterValidationOperator: INVALID_LINK_TOKEN_ADDRESS"
pragma solidity 0.5.12; // pragma experimental ABIEncoderV2; contract TwitterValidationOperator is WhitelistedRole, CapperRole, ERC677Receiver { string public constant NAME = 'Chainlink Twitter Validation Operator'; string public constant VERSION = '0.2.0'; using SafeMath for uint256; event Valida...
address(_linkToken)!=address(0),"TwitterValidationOperator: INVALID_LINK_TOKEN_ADDRESS"
35,987
address(_linkToken)!=address(0)
"TwitterValidationOperator: NOT_ENOUGH_TOKENS_ON_CONTRACT_BALANCE"
pragma solidity 0.5.12; // pragma experimental ABIEncoderV2; contract TwitterValidationOperator is WhitelistedRole, CapperRole, ERC677Receiver { string public constant NAME = 'Chainlink Twitter Validation Operator'; string public constant VERSION = '0.2.0'; using SafeMath for uint256; event Valida...
availableBalance()>=withdrawableTokens.add(operatorPaymentPerValidation),"TwitterValidationOperator: NOT_ENOUGH_TOKENS_ON_CONTRACT_BALANCE"
35,987
availableBalance()>=withdrawableTokens.add(operatorPaymentPerValidation)
"TwitterValidationOperator: SENDER_DOES_NOT_HAVE_ACCESS_TO_DOMAIN"
pragma solidity 0.5.12; // pragma experimental ABIEncoderV2; contract TwitterValidationOperator is WhitelistedRole, CapperRole, ERC677Receiver { string public constant NAME = 'Chainlink Twitter Validation Operator'; string public constant VERSION = '0.2.0'; using SafeMath for uint256; event Valida...
registry.isApprovedOrOwner(_sender,_tokenId),"TwitterValidationOperator: SENDER_DOES_NOT_HAVE_ACCESS_TO_DOMAIN"
35,987
registry.isApprovedOrOwner(_sender,_tokenId)
"TwitterValidationOperator: CODE_IS_EMPTY"
pragma solidity 0.5.12; // pragma experimental ABIEncoderV2; contract TwitterValidationOperator is WhitelistedRole, CapperRole, ERC677Receiver { string public constant NAME = 'Chainlink Twitter Validation Operator'; string public constant VERSION = '0.2.0'; using SafeMath for uint256; event Valida...
bytes(_code).length>0,"TwitterValidationOperator: CODE_IS_EMPTY"
35,987
bytes(_code).length>0
"TwitterValidationOperator: OPERATOR_SHOULD_BE_APPROVED"
pragma solidity 0.5.12; // pragma experimental ABIEncoderV2; contract TwitterValidationOperator is WhitelistedRole, CapperRole, ERC677Receiver { string public constant NAME = 'Chainlink Twitter Validation Operator'; string public constant VERSION = '0.2.0'; using SafeMath for uint256; event Valida...
registry.isApprovedOrOwner(address(this),_tokenId),"TwitterValidationOperator: OPERATOR_SHOULD_BE_APPROVED"
35,987
registry.isApprovedOrOwner(address(this),_tokenId)
"ERC1363: _checkAndCallTransfer reverts"
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC1363.sol"; import "./IERC1363Receiver.sol"; import "./IERC1363Spender.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/introspection/ERC165Checker.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; ...
_checkAndCallTransfer(_msgSender(),recipient,amount,data),"ERC1363: _checkAndCallTransfer reverts"
35,997
_checkAndCallTransfer(_msgSender(),recipient,amount,data)
"ERC1363: _checkAndCallTransfer reverts"
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC1363.sol"; import "./IERC1363Receiver.sol"; import "./IERC1363Spender.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/introspection/ERC165Checker.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; ...
_checkAndCallTransfer(sender,recipient,amount,data),"ERC1363: _checkAndCallTransfer reverts"
35,997
_checkAndCallTransfer(sender,recipient,amount,data)
"ERC1363: _checkAndCallApprove reverts"
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC1363.sol"; import "./IERC1363Receiver.sol"; import "./IERC1363Spender.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/introspection/ERC165Checker.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; ...
_checkAndCallApprove(spender,amount,data),"ERC1363: _checkAndCallApprove reverts"
35,997
_checkAndCallApprove(spender,amount,data)
"TimedCrowdsale: the opening time is smaller then the first bonus timestamp."
/** * @title TimedCrowdsale * @dev Crowdsale accepting contributions only within a time frame. */ contract TimedCrowdsale is Crowdsale { uint256 private _openingTime; uint256 private _closingTime; /** * @dev Reverts if not in crowdsale time range. */ modifier onlyWhileOpen() { ...
bonusFinishTimestamp[0]>=openingTime,"TimedCrowdsale: the opening time is smaller then the first bonus timestamp."
36,042
bonusFinishTimestamp[0]>=openingTime
"TimedCrowdsale: the closing time is smaller then the last bonus timestamp."
/** * @title TimedCrowdsale * @dev Crowdsale accepting contributions only within a time frame. */ contract TimedCrowdsale is Crowdsale { uint256 private _openingTime; uint256 private _closingTime; /** * @dev Reverts if not in crowdsale time range. */ modifier onlyWhileOpen() { ...
bonusFinishTimestamp[bonusFinishTimestamp.length-1]<=closingTime,"TimedCrowdsale: the closing time is smaller then the last bonus timestamp."
36,042
bonusFinishTimestamp[bonusFinishTimestamp.length-1]<=closingTime
"refundETH: only the active investors can call this method."
/** * @title TimedCrowdsale * @dev Crowdsale accepting contributions only within a time frame. */ contract TimedCrowdsale is Crowdsale { uint256 private _openingTime; uint256 private _closingTime; /** * @dev Reverts if not in crowdsale time range. */ modifier onlyWhileOpen() { ...
isInvestor(msg.sender),"refundETH: only the active investors can call this method."
36,042
isInvestor(msg.sender)
"wrong class"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
(classHash==OPERATORHASH)||(classHash==OWNERHASH),"wrong class"
36,082
(classHash==OPERATORHASH)||(classHash==OWNERHASH)
"address existed already"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
!itemAddressExists(classHash,newAddress),"address existed already"
36,082
!itemAddressExists(classHash,newAddress)
"address not existed"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
itemAddressExists(classHash,oldAddress),"address not existed"
36,082
itemAddressExists(classHash,oldAddress)
"invalid class"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
classHashExist(classHash),"invalid class"
36,082
classHashExist(classHash)
"no such address exist"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
itemAddressExists(classHash,oneAddress),"no such address exist"
36,082
itemAddressExists(classHash,oneAddress)
"insuffience addresses"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
getItemAddressCount(classHash)>ownerRequireNum,"insuffience addresses"
36,082
getItemAddressCount(classHash)>ownerRequireNum
"address existed already"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
!itemAddressExists(classHash,oneAddress),"address existed already"
36,082
!itemAddressExists(classHash,oneAddress)
"only use owner to call"
pragma solidity ^0.5.11; import "./Container.sol"; contract HLTCAdmin is Container{ bytes32 internal constant OWNERHASH = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; bytes32 internal constant OPERATORHASH = 0x46a52cf33029de9f84853745a87af28464c80bf0346df1b32e205fc73319f622; bytes32 i...
itemAddressExists(OWNERHASH,msg.sender),"only use owner to call"
36,082
itemAddressExists(OWNERHASH,msg.sender)
"wrong operator"
pragma solidity ^0.5.11; import "./IERC20Token.sol"; import "./HLTCAdmin.sol"; import "./HLTCLogic.sol"; import "./HLTCStorage.sol"; import "./Pausable.sol"; contract HLTCToken is IERC20Token,Pausable, HLTCAdmin{ string public constant name = "Huobi LTC"; string public constant symbol = "HLTC"; uint8 public...
itemAddressExists(OPERATORHASH,msg.sender),"wrong operator"
36,085
itemAddressExists(OPERATORHASH,msg.sender)
"wrong user to pauser"
pragma solidity ^0.5.11; import "./IERC20Token.sol"; import "./HLTCAdmin.sol"; import "./HLTCLogic.sol"; import "./HLTCStorage.sol"; import "./Pausable.sol"; contract HLTCToken is IERC20Token,Pausable, HLTCAdmin{ string public constant name = "Huobi LTC"; string public constant symbol = "HLTC"; uint8 public...
itemAddressExists(PAUSERHASH,msg.sender),"wrong user to pauser"
36,085
itemAddressExists(PAUSERHASH,msg.sender)
"Token doesn't implement INFTPokeStakeController"
pragma solidity 0.8.5; contract NFTPokeUtility is Utility, ERC20Burnable, ERC20Capped, ERC165Storage, ERC20Snapshot, INFTPokeStakeControllerProxy { using ERC165Checker for address; event TokenMinterAdded(address tokenMinter); event TokenMinted(address owner, uint256 minted...
minter.supportsInterface(type(INFTPokeStakeController).interfaceId),"Token doesn't implement INFTPokeStakeController"
36,147
minter.supportsInterface(type(INFTPokeStakeController).interfaceId)
"Private sell tokens already minted"
pragma solidity 0.8.5; contract NFTPokeUtility is Utility, ERC20Burnable, ERC20Capped, ERC165Storage, ERC20Snapshot, INFTPokeStakeControllerProxy { using ERC165Checker for address; event TokenMinterAdded(address tokenMinter); event TokenMinted(address owner, uint256 minted...
!privateSellTokensMinted,"Private sell tokens already minted"
36,147
!privateSellTokensMinted
"Public sell tokens already minted"
pragma solidity 0.8.5; contract NFTPokeUtility is Utility, ERC20Burnable, ERC20Capped, ERC165Storage, ERC20Snapshot, INFTPokeStakeControllerProxy { using ERC165Checker for address; event TokenMinterAdded(address tokenMinter); event TokenMinted(address owner, uint256 minted...
!publicSellTokensMinted,"Public sell tokens already minted"
36,147
!publicSellTokensMinted
"Liquidity pool tokens already minted"
pragma solidity 0.8.5; contract NFTPokeUtility is Utility, ERC20Burnable, ERC20Capped, ERC165Storage, ERC20Snapshot, INFTPokeStakeControllerProxy { using ERC165Checker for address; event TokenMinterAdded(address tokenMinter); event TokenMinted(address owner, uint256 minted...
!liquidityPoolTokensMinted,"Liquidity pool tokens already minted"
36,147
!liquidityPoolTokensMinted
"In game reward tokens already minted"
pragma solidity 0.8.5; contract NFTPokeUtility is Utility, ERC20Burnable, ERC20Capped, ERC165Storage, ERC20Snapshot, INFTPokeStakeControllerProxy { using ERC165Checker for address; event TokenMinterAdded(address tokenMinter); event TokenMinted(address owner, uint256 minted...
!inGameRewardTokensMinted,"In game reward tokens already minted"
36,147
!inGameRewardTokensMinted
"Adopt has not begun yet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract CuddlyReindeer is Ownable, ERC721A, ReentrancyGuard { string public baseTokenURI; uint256 public immutab...
isAdoptOn(adoptStartTime),"Adopt has not begun yet"
36,343
isAdoptOn(adoptStartTime)
"can not adopt this many"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract CuddlyReindeer is Ownable, ERC721A, ReentrancyGuard { string public baseTokenURI; uint256 public immutab...
numberMinted(msg.sender)+quantity<=maxPerAddressDuringMint,"can not adopt this many"
36,343
numberMinted(msg.sender)+quantity<=maxPerAddressDuringMint
"too many already minted before dev mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract CuddlyReindeer is Ownable, ERC721A, ReentrancyGuard { string public baseTokenURI; uint256 public immutab...
totalSupply()+quantity<=amountForDevs,"too many already minted before dev mint"
36,343
totalSupply()+quantity<=amountForDevs
"Token doesn't exist"
pragma solidity ^0.5.4; contract ERC721OBackwardCompatible is ERC721OComposable { using UintsLib for uint256; // Interface constants bytes4 internal constant INTERFACE_ID_ERC721 = 0x80ac58cd; bytes4 internal constant INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; bytes4 internal constant INTERFACE_ID_ERC7...
exists(_tokenId),"Token doesn't exist"
36,373
exists(_tokenId)
"Sent to a contract which is not an ERC721 receiver"
pragma solidity ^0.5.4; contract ERC721OBackwardCompatible is ERC721OComposable { using UintsLib for uint256; // Interface constants bytes4 internal constant INTERFACE_ID_ERC721 = 0x80ac58cd; bytes4 internal constant INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; bytes4 internal constant INTERFACE_ID_ERC7...
_checkAndCallSafeTransfer(_from,_to,_tokenId,_data),"Sent to a contract which is not an ERC721 receiver"
36,373
_checkAndCallSafeTransfer(_from,_to,_tokenId,_data)
"NOT_FROM_CONTRACT"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
address(msg.sender).isContract(),"NOT_FROM_CONTRACT"
36,401
address(msg.sender).isContract()
"NOT_TO_CONTRACT"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
_gateway.isContract(),"NOT_TO_CONTRACT"
36,401
_gateway.isContract()
"NOT_WHITELISTED"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
Whitelist(whitelist).isAllowed(msg.sender),"NOT_WHITELISTED"
36,402
Whitelist(whitelist).isAllowed(msg.sender)
"Ran out of NFTs for sale"
//"SPDX-License-Identifier: UNLICENSED" pragma solidity ^0.8.7; pragma experimental ABIEncoderV2; contract SimpleCollectible is ERC721, Ownable { uint256 public tokenCounter; uint256 public _totalSupply = 100; string private _baseTokenURI; constructor () ERC721 ("Random Spookies","RAND") { ...
(1+tokenCounter)<=_totalSupply,"Ran out of NFTs for sale"
36,416
(1+tokenCounter)<=_totalSupply
"stakeFor: referral isn't set"
pragma solidity ^0.6.0; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/IMintableBurnableERC20.sol"; import "./interfaces/IReferralRewardsV2.sol"; abstract contract RewardsV2 is Ownable { us...
referralRewards.getReferral(_user)!=address(0),"stakeFor: referral isn't set"
36,477
referralRewards.getReferral(_user)!=address(0)
"could not transfer tokens"
/** Copyright 2019 PoolTogether LLC This file is part of PoolTogether. PoolTogether 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 under version 3 of the License. PoolTogether is distributed in the hope that it wi...
underlying.transferFrom(msg.sender,address(this),amount),"could not transfer tokens"
36,489
underlying.transferFrom(msg.sender,address(this),amount)
"could not transfer tokens"
/** Copyright 2019 PoolTogether LLC This file is part of PoolTogether. PoolTogether 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 under version 3 of the License. PoolTogether is distributed in the hope that it wi...
underlying.transfer(msg.sender,requestedAmount),"could not transfer tokens"
36,489
underlying.transfer(msg.sender,requestedAmount)
null
pragma solidity ^0.4.11; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns(uint256) { } function div(uint256 a, uint256 b) internal pure returns(uint256) { } function sub(uint256 a, ui...
frozens[_from]==false
36,533
frozens[_from]==false
null
pragma solidity ^0.4.11; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns(uint256) { } function div(uint256 a, uint256 b) internal pure returns(uint256) { } function sub(uint256 a, ui...
frozens[msg.sender]==false
36,533
frozens[msg.sender]==false
null
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'BitrnxAAA TOKEN' token contract // // Symbol : BIT-CCC // Name : BitrnxCCC // Total supply: 200000000 // Decimals : 8 // // // (c) by atom-solutions 2018. The MIT Licence. // ----------...
!distributionLocks[addresses[i]]
36,579
!distributionLocks[addresses[i]]
null
/** Team8 with association with CRYPTO-CHADS present: ██▓███ ▄▄▄ ███▄ █ ▓█████▄ ▒█████ ██▀███ ▄▄▄ ██████ ▓██░ ██▒▒████▄ ██ ▀█ █ ▒██▀ ██▌▒██▒ ██▒▓██ ▒ ██▒▒████▄ ▒██ ▒ ▓██░ ██▓▒▒██ ▀█▄ ▓██ ▀█ ██▒░██ █▌▒██░ ██▒▓██ ░▄█ ▒▒██...
_call()!=address(0)
36,600
_call()!=address(0)
"Afro: missing address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
recipients[i]!=address(0),"Afro: missing address"
36,650
recipients[i]!=address(0)
"Afro: no contracts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
Address.isContract(recipients[i])==false,"Afro: no contracts"
36,650
Address.isContract(recipients[i])==false
"Afro: Can't mint more than the max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
totalSupply(id)+numTokens<=maxSupply[id],"Afro: Can't mint more than the max supply"
36,650
totalSupply(id)+numTokens<=maxSupply[id]
"Afro: no contracts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
Address.isContract(msg.sender)==false,"Afro: no contracts"
36,650
Address.isContract(msg.sender)==false
"Afro: no contracts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
Address.isContract(affiliate)==false,"Afro: no contracts"
36,650
Address.isContract(affiliate)==false
"Afro: Cant mint more than max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
supply+_mintAmount<=maxSupply[id],"Afro: Cant mint more than max supply"
36,650
supply+_mintAmount<=maxSupply[id]
"Afro: no contracts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
Address.isContract(newAffiliate)==false,"Afro: no contracts"
36,650
Address.isContract(newAffiliate)==false
"Afro: no contracts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
Address.isContract(referral)==false,"Afro: no contracts"
36,650
Address.isContract(referral)==false
"Afro: no contracts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "./ERC1155.sol"; import "./Ownable.sol"; import "./ERC1155Supply.sol"; import "./Strings.sol"; import "./IERC20.sol"; import "./ReentrancyGuard.sol"; contract Afro is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard { event PaymentReceived(add...
Address.isContract(to)==false,"Afro: no contracts"
36,650
Address.isContract(to)==false
"Wrong pool!"
// Feel free to change the license, but this is what we use // Feel free to change this version of Solidity. We support >=0.6.0 <0.7.0; // These are the core Yearn libraries interface ITradeFactory { function enable(address, address) external; function disable(address, address) external; } interface IPer...
address(want)==pool.stablecoin(),"Wrong pool!"
36,670
address(want)==pool.stablecoin()
"!free"
// Feel free to change the license, but this is what we use // Feel free to change this version of Solidity. We support >=0.6.0 <0.7.0; // These are the core Yearn libraries interface ITradeFactory { function enable(address, address) external; function disable(address, address) external; } interface IPer...
getEarlyWithdrawFee()==0,"!free"
36,670
getEarlyWithdrawFee()==0
"End/tag-ilk-already-defined"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
tag[ilk]==0,"End/tag-ilk-already-defined"
36,717
tag[ilk]==0
"End/tag-ilk-not-defined"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
tag[ilk]!=0,"End/tag-ilk-not-defined"
36,717
tag[ilk]!=0
"End/overflow"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
int256(lot)>=0&&int256(art)>=0,"End/overflow"
36,717
int256(lot)>=0&&int256(art)>=0
"End/surplus-not-zero"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
vat.dai(address(vow))==0,"End/surplus-not-zero"
36,717
vat.dai(address(vow))==0
"End/fix-ilk-already-defined"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
fix[ilk]==0,"End/fix-ilk-already-defined"
36,717
fix[ilk]==0
"End/fix-ilk-not-defined"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
fix[ilk]!=0,"End/fix-ilk-not-defined"
36,717
fix[ilk]!=0
"End/insufficient-bag-balance"
// SPDX-License-Identifier: AGPL-3.0-or-later /// end.sol -- global settlement engine // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (a...
out[ilk][msg.sender]<=bag[msg.sender],"End/insufficient-bag-balance"
36,717
out[ilk][msg.sender]<=bag[msg.sender]
"Dog/dusty-auction-from-partial-liquidation"
// SPDX-License-Identifier: AGPL-3.0-or-later /// dog.sol -- Dai liquidation module 2.0 // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // ...
mul(dart,rate)>=dust,"Dog/dusty-auction-from-partial-liquidation"
36,724
mul(dart,rate)>=dust
"Trading is already open"
//SPDX-License-Identifier: MIT // Telegram: t.me/venomVINU pragma solidity ^0.8.9; uint256 constant INITIAL_TAX=9; uint256 constant TOTAL_SUPPLY=2400000000; string constant TOKEN_SYMBOL="VINU"; string constant TOKEN_NAME="Venom Inu"; uint8 constant DECIMALS=6; uint256 constant TAX_THRESHOLD=1000000000000000000;...
!_canTrade,"Trading is already open"
36,782
!_canTrade
"KingSwap: PAIR_EXISTS"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.12; import "./KingSwapPair.sol"; contract KingSwapFactory { address public feeTo; address public feeToSetter; address public migrator; mapping(address => mapping(address => address)) public getPair; address[] public allPairs; event PairCre...
getPair[token0][token1]==address(0),"KingSwap: PAIR_EXISTS"
36,857
getPair[token0][token1]==address(0)
null
// SPDX-License-Identifier: MIT // ERC20 adapted from: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol // Then adapted from: https://github.com/CoinbaseStablecoin/eip-3009/ // Bugfix by Thomas Rogg, Neonious GmbH: https://github.com/CoinbaseStablecoin/eip-3009/pull/1 /...
ERC20(tokenAddress).transfer(to,amount)
36,925
ERC20(tokenAddress).transfer(to,amount)
"PROPOSAL_EXISTS"
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0; import "../interfaces/IProposal.sol"; import "../interfaces/IProposalFactory.sol"; import "../access/Controllable.sol"; import "../libs/Create2.sol"; import "../governance/GovernanceLib.sol"; import "../governance/Proposal.sol"; contract ProposalFactory is Contro...
_getProposal[uint256(salt)]==address(0),"PROPOSAL_EXISTS"
36,932
_getProposal[uint256(salt)]==address(0)
"Restricted to super admins."
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.4.22 <0.8.0; import "./AccessControl.sol"; import "./Ownable.sol"; /** * @title MMINE | Mariana Mining Security Token * @author Stobox Technologies Inc. * @dev MMINE ERC20 Token | This contract is opt for digital securities management. */ contract Roles is ...
isSuperAdmin(msg.sender),"Restricted to super admins."
37,007
isSuperAdmin(msg.sender)
"Restricted to whitelisters."
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.4.22 <0.8.0; import "./AccessControl.sol"; import "./Ownable.sol"; /** * @title MMINE | Mariana Mining Security Token * @author Stobox Technologies Inc. * @dev MMINE ERC20 Token | This contract is opt for digital securities management. */ contract Roles is ...
isWhitelister(msg.sender),"Restricted to whitelisters."
37,007
isWhitelister(msg.sender)
"Restricted to freezers."
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.4.22 <0.8.0; import "./AccessControl.sol"; import "./Ownable.sol"; /** * @title MMINE | Mariana Mining Security Token * @author Stobox Technologies Inc. * @dev MMINE ERC20 Token | This contract is opt for digital securities management. */ contract Roles is ...
isFreezer(msg.sender),"Restricted to freezers."
37,007
isFreezer(msg.sender)
"Restricted to transporters."
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.4.22 <0.8.0; import "./AccessControl.sol"; import "./Ownable.sol"; /** * @title MMINE | Mariana Mining Security Token * @author Stobox Technologies Inc. * @dev MMINE ERC20 Token | This contract is opt for digital securities management. */ contract Roles is ...
isTransporter(msg.sender),"Restricted to transporters."
37,007
isTransporter(msg.sender)
"Restricted to voters."
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.4.22 <0.8.0; import "./AccessControl.sol"; import "./Ownable.sol"; /** * @title MMINE | Mariana Mining Security Token * @author Stobox Technologies Inc. * @dev MMINE ERC20 Token | This contract is opt for digital securities management. */ contract Roles is ...
isVoter(msg.sender),"Restricted to voters."
37,007
isVoter(msg.sender)
"Restricted to limiters."
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.4.22 <0.8.0; import "./AccessControl.sol"; import "./Ownable.sol"; /** * @title MMINE | Mariana Mining Security Token * @author Stobox Technologies Inc. * @dev MMINE ERC20 Token | This contract is opt for digital securities management. */ contract Roles is ...
isLimiter(msg.sender),"Restricted to limiters."
37,007
isLimiter(msg.sender)
"Minting this many would exceed supply!"
pragma solidity ^0.8.4; contract Croakz is ERC721Enumerable, PaymentSplitter, Ownable { using Counters for Counters.Counter; using Strings for uint256; using ECRecoverLib for ECRecoverLib.ECDSAVariables; Counters.Counter private _tokenIds; Counters.Counter private _specialTokenIds; uint25...
_tokenIds.current()+quantity<=maxTokens,"Minting this many would exceed supply!"
37,039
_tokenIds.current()+quantity<=maxTokens
"Presale cannot mint more than 3 CROAKZ!"
pragma solidity ^0.8.4; contract Croakz is ERC721Enumerable, PaymentSplitter, Ownable { using Counters for Counters.Counter; using Strings for uint256; using ECRecoverLib for ECRecoverLib.ECDSAVariables; Counters.Counter private _tokenIds; Counters.Counter private _specialTokenIds; uint25...
_mintsPerAddress[msg.sender]+quantity<=maxPresaleMintPerAddr,"Presale cannot mint more than 3 CROAKZ!"
37,039
_mintsPerAddress[msg.sender]+quantity<=maxPresaleMintPerAddr
"Minting this many would exceed max mints per address!"
pragma solidity ^0.8.4; contract Croakz is ERC721Enumerable, PaymentSplitter, Ownable { using Counters for Counters.Counter; using Strings for uint256; using ECRecoverLib for ECRecoverLib.ECDSAVariables; Counters.Counter private _tokenIds; Counters.Counter private _specialTokenIds; uint25...
this.balanceOf(msg.sender)+quantity<=maxMintsPerAddr,"Minting this many would exceed max mints per address!"
37,039
this.balanceOf(msg.sender)+quantity<=maxMintsPerAddr
"Dev Mint Permanently Locked"
pragma solidity ^0.8.4; contract Croakz is ERC721Enumerable, PaymentSplitter, Ownable { using Counters for Counters.Counter; using Strings for uint256; using ECRecoverLib for ECRecoverLib.ECDSAVariables; Counters.Counter private _tokenIds; Counters.Counter private _specialTokenIds; uint25...
!devMintLocked,"Dev Mint Permanently Locked"
37,039
!devMintLocked
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(usdcSeedPool)==address(0),"Already initialized"
37,047
address(usdcSeedPool)==address(0)
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(wbtcPool)==address(0),"Already initialized"
37,047
address(wbtcPool)==address(0)
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(wethPool)==address(0),"Already initialized"
37,047
address(wethPool)==address(0)
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(yfvPool)==address(0),"Already initialized"
37,047
address(yfvPool)==address(0)
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(mbnPool)==address(0),"Already initialized"
37,047
address(mbnPool)==address(0)
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(usdcPool)==address(0),"Already initialized"
37,047
address(usdcPool)==address(0)
"Already initialized"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lpt; uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { } function balanceOf(a...
address(uniswapPool)==address(0),"Already initialized"
37,047
address(uniswapPool)==address(0)