comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
'Not whitelisted' | pragma solidity ^0.8.9;
/**
* @title GenerativeDungeon contract
* @dev Extends ERC721 Non-Fungible Token Standard basic implementation
*/
contract GenerativeDungeon is ERC721Enumerable, Ownable {
string public NFT_PROVENANCE = "";
string public BASE_METADATA_URI = "";
string public CONTRACT_METAD... | owner()==ecrecover(keccak256(abi.encodePacked('\x19Ethereum Signed Message:\n32',keccak256(abi.encodePacked(address(this),msg.sender)))),_v,_r,_s),'Not whitelisted' | 352,668 | owner()==ecrecover(keccak256(abi.encodePacked('\x19Ethereum Signed Message:\n32',keccak256(abi.encodePacked(address(this),msg.sender)))),_v,_r,_s) |
"Exceeds wallet limit" | pragma solidity ^0.8.9;
/**
* @title GenerativeDungeon contract
* @dev Extends ERC721 Non-Fungible Token Standard basic implementation
*/
contract GenerativeDungeon is ERC721Enumerable, Ownable {
string public NFT_PROVENANCE = "";
string public BASE_METADATA_URI = "";
string public CONTRACT_METAD... | (_numberOfTokens+accountInfoList[msg.sender].mintedNFTs)<WALLET_LIMIT_WHITELIST,"Exceeds wallet limit" | 352,668 | (_numberOfTokens+accountInfoList[msg.sender].mintedNFTs)<WALLET_LIMIT_WHITELIST |
"Exceeds max NFT supply" | pragma solidity ^0.8.9;
/**
* @title GenerativeDungeon contract
* @dev Extends ERC721 Non-Fungible Token Standard basic implementation
*/
contract GenerativeDungeon is ERC721Enumerable, Ownable {
string public NFT_PROVENANCE = "";
string public BASE_METADATA_URI = "";
string public CONTRACT_METAD... | supply+_numberOfTokens<MAX_NFTS_PLUS_1,"Exceeds max NFT supply" | 352,668 | supply+_numberOfTokens<MAX_NFTS_PLUS_1 |
"Exceeds wallet limit" | pragma solidity ^0.8.9;
/**
* @title GenerativeDungeon contract
* @dev Extends ERC721 Non-Fungible Token Standard basic implementation
*/
contract GenerativeDungeon is ERC721Enumerable, Ownable {
string public NFT_PROVENANCE = "";
string public BASE_METADATA_URI = "";
string public CONTRACT_METAD... | (_numberOfTokens+accountInfoList[msg.sender].mintedNFTs)<WALLET_LIMIT,"Exceeds wallet limit" | 352,668 | (_numberOfTokens+accountInfoList[msg.sender].mintedNFTs)<WALLET_LIMIT |
"_currentUnderlyingToken must be part of _underlyingTokens." | pragma solidity ^0.6.12;
// ERC20PausableUpgradeSafe,
// IERC20,
// SafeMath
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Pausable.sol";
// SafeERC20
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol";
// OwnableUpgradeSa... | _underlyingTokens.contains(_currentUnderlyingToken),"_currentUnderlyingToken must be part of _underlyingTokens." | 352,687 | _underlyingTokens.contains(_currentUnderlyingToken) |
"LS2" | pragma solidity ^0.6.12;
// ERC20PausableUpgradeSafe,
// IERC20,
// SafeMath
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Pausable.sol";
// SafeERC20
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol";
// OwnableUpgradeSa... | limaGovernance()==_msgSender()||owner()==_msgSender()||limaToken==_msgSender(),"LS2" | 352,687 | limaGovernance()==_msgSender()||owner()==_msgSender()||limaToken==_msgSender() |
"LS3" | pragma solidity ^0.6.12;
// ERC20PausableUpgradeSafe,
// IERC20,
// SafeMath
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Pausable.sol";
// SafeERC20
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol";
// OwnableUpgradeSa... | isUnderlyingTokens(_token),"LS3" | 352,687 | isUnderlyingTokens(_token) |
"LS1" | pragma solidity ^0.6.12;
// ERC20PausableUpgradeSafe,
// IERC20,
// SafeMath
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Pausable.sol";
// SafeERC20
// } from "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol";
// OwnableUpgradeSa... | !isUnderlyingTokens(_underlyingToken),"LS1" | 352,687 | !isUnderlyingTokens(_underlyingToken) |
null | /**
* Edgeless Casino Proxy Contract. Serves as a proxy for game functionality.
* Allows the players to deposit and withdraw funds.
* Allows authorized addresses to make game transactions.
* author: Julia Altenried
**/
pragma solidity ^ 0.4 .17;
contract token {
function transferFrom(address sender, addre... | safeMul(bankroll(),10000)>value*8 | 352,729 | safeMul(bankroll(),10000)>value*8 |
null | /**
* Source Code first verified at https://etherscan.io on Thursday, June 14, 2018
(UTC) */
pragma solidity ^0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
fun... | !isFrozen(_to) | 352,734 | !isFrozen(_to) |
"Caller not allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
/* by cryptovale.eth
* This contract supports minting and sending large amount of tokens
* It can be flexibly used to send an amount of tokens in a run, but it should be tested where limits are based on gas restrictions
* The using contract has to imp... | _temp.airdropper_allowedCaller(msg.sender),"Caller not allowed" | 352,896 | _temp.airdropper_allowedCaller(msg.sender) |
"Caller not allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
/* by cryptovale.eth
* This contract supports minting and sending large amount of tokens
* It can be flexibly used to send an amount of tokens in a run, but it should be tested where limits are based on gas restrictions
* The using contract has to imp... | contracts[contractAddress].airdropper_allowedCaller(msg.sender),"Caller not allowed" | 352,896 | contracts[contractAddress].airdropper_allowedCaller(msg.sender) |
"Contract not registered" | // SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
/* by cryptovale.eth
* This contract supports minting and sending large amount of tokens
* It can be flexibly used to send an amount of tokens in a run, but it should be tested where limits are based on gas restrictions
* The using contract has to imp... | activeContracts[contractAddress],"Contract not registered" | 352,896 | activeContracts[contractAddress] |
"Token not allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
/* by cryptovale.eth
* This contract supports minting and sending large amount of tokens
* It can be flexibly used to send an amount of tokens in a run, but it should be tested where limits are based on gas restrictions
* The using contract has to imp... | contracts[contractAddress].airdropper_allowedToken(startIndex+i),"Token not allowed" | 352,896 | contracts[contractAddress].airdropper_allowedToken(startIndex+i) |
"Token not allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
/* by cryptovale.eth
* This contract supports minting and sending large amount of tokens
* It can be flexibly used to send an amount of tokens in a run, but it should be tested where limits are based on gas restrictions
* The using contract has to imp... | contracts[contractAddress].airdropper_allowedToken(indexes[i]),"Token not allowed" | 352,896 | contracts[contractAddress].airdropper_allowedToken(indexes[i]) |
"not on sale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | saleActivated&&block.timestamp>=freeClaimStartTime&&block.timestamp<=freeClaimEndTime,"not on sale" | 352,917 | saleActivated&&block.timestamp>=freeClaimStartTime&&block.timestamp<=freeClaimEndTime |
"not in free claim whitelist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | _isWhitelisted(_freeClaimMerkleRoot,proof,msg.sender,maxClaimQuantity),"not in free claim whitelist" | 352,917 | _isWhitelisted(_freeClaimMerkleRoot,proof,msg.sender,maxClaimQuantity) |
"quantity of tokens cannot exceed max mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | _freeClaimWallets[msg.sender]<=maxClaimQuantity,"quantity of tokens cannot exceed max mint" | 352,917 | _freeClaimWallets[msg.sender]<=maxClaimQuantity |
"not on sale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | saleActivated&&block.timestamp>=preSaleStartTime&&block.timestamp<=preSaleEndTime,"not on sale" | 352,917 | saleActivated&&block.timestamp>=preSaleStartTime&&block.timestamp<=preSaleEndTime |
"not in pre-sale whitelist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | _isWhitelisted(_preSaleMerkleRoot,proof,msg.sender,maxClaimQuantity),"not in pre-sale whitelist" | 352,917 | _isWhitelisted(_preSaleMerkleRoot,proof,msg.sender,maxClaimQuantity) |
"quantity of tokens cannot exceed max mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | _preSaleWallets[msg.sender]<=maxClaimQuantity,"quantity of tokens cannot exceed max mint" | 352,917 | _preSaleWallets[msg.sender]<=maxClaimQuantity |
"not on sale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
// CyberNinja has 3 sale stages:
// 1. Whitelisted Free Claim -... | saleActivated&&block.timestamp>=publicMintStartTime&&block.timestamp<=publicMintEndTime,"not on sale" | 352,917 | saleActivated&&block.timestamp>=publicMintStartTime&&block.timestamp<=publicMintEndTime |
"unable to mint more, maxsupply reached" | /* . .x+=:.
.x88888x. z` ^%
:8**888888X. :> u. u. . <k
f `888888x./ .u x@88k u@88c. uL u .@8Ned8... | (Quantity+TotalSupply)<=MaxSupply,"unable to mint more, maxsupply reached" | 352,924 | (Quantity+TotalSupply)<=MaxSupply |
null | contract SGTEscrow is Ownable {
using SafeMath for uint256;
SGTCoin public token;
uint256 public contractStart;
address public constant VESTING_WALLET = 0x58DD9FCaf9b16F7049A1c9315781aBB748D96Cf6;
mapping(uint256 => bool) public hasRoundBeenWithdrawn;
function SGTEscrow(SGTCoin _token) pub... | hasRoundBeenWithdrawn[round]!=true | 352,992 | hasRoundBeenWithdrawn[round]!=true |
"NOT_GOVERNANCE" | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.7;
// @TODO: Formatting
library LibBytes {
// @TODO: see if we can just set .length =
function trimToSize(bytes memory b, uint newLen)
internal
pure
{
}
/***********************************|
| Read Bytes Functions |
... | hasGovernance[msg.sender],"NOT_GOVERNANCE" | 353,000 | hasGovernance[msg.sender] |
"VESTING_ALREADY_SET" | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.7;
// @TODO: Formatting
library LibBytes {
// @TODO: see if we can just set .length =
function trimToSize(bytes memory b, uint newLen)
internal
pure
{
}
/***********************************|
| Read Bytes Functions |
... | vestingLastMint[recipient][end][amountPerSecond]==0,"VESTING_ALREADY_SET" | 353,000 | vestingLastMint[recipient][end][amountPerSecond]==0 |
"NOT_GOVERNANCE" | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.7;
// @TODO: Formatting
library LibBytes {
// @TODO: see if we can just set .length =
function trimToSize(bytes memory b, uint newLen)
internal
pure
{
}
/***********************************|
| Read Bytes Functions |
... | hasGovernance[signer],"NOT_GOVERNANCE" | 353,000 | hasGovernance[signer] |
"LEAF_NOT_FOUND" | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.7;
// @TODO: Formatting
library LibBytes {
// @TODO: see if we can just set .length =
function trimToSize(bytes memory b, uint newLen)
internal
pure
{
}
/***********************************|
| Read Bytes Functions |
... | MerkleProof.isContained(leaf,proof,lastRoot),"LEAF_NOT_FOUND" | 353,000 | MerkleProof.isContained(leaf,proof,lastRoot) |
"Exceeds maximum supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './ERC721Enumerable.sol';
import './Ownable.sol';
// To dev on Etherem or not, that is no longer a question
contract Shakespeare is ERC721Enumerable, Ownable {
using Strings for uint256;
string _baseTokenURI;
uint256 private _reserved = ... | supply+num<9858-_reserved,"Exceeds maximum supply" | 353,023 | supply+num<9858-_reserved |
"You can be early only once." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './ERC721Enumerable.sol';
import './Ownable.sol';
// To dev on Etherem or not, that is no longer a question
contract Shakespeare is ERC721Enumerable, Ownable {
using Strings for uint256;
string _baseTokenURI;
uint256 private _reserved = ... | early_addresses[msg.sender]==0,"You can be early only once." | 353,023 | early_addresses[msg.sender]==0 |
"The earlier hath been better." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './ERC721Enumerable.sol';
import './Ownable.sol';
// To dev on Etherem or not, that is no longer a question
contract Shakespeare is ERC721Enumerable, Ownable {
using Strings for uint256;
string _baseTokenURI;
uint256 private _reserved = ... | totalSupply()+num<1001,"The earlier hath been better." | 353,023 | totalSupply()+num<1001 |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './ERC721Enumerable.sol';
import './Ownable.sol';
// To dev on Etherem or not, that is no longer a question
contract Shakespeare is ERC721Enumerable, Ownable {
using Strings for uint256;
string _baseTokenURI;
uint256 private _reserved = ... | payable(t1).send(address(this).balance) | 353,023 | payable(t1).send(address(this).balance) |
"Spending condition contract not found" | pragma solidity 0.5.11;
pragma experimental ABIEncoderV2;
import "../PaymentExitDataModel.sol";
import "../routers/PaymentStandardExitRouterArgs.sol";
import "../../interfaces/ISpendingCondition.sol";
import "../../registries/SpendingConditionRegistry.sol";
import "../../utils/MoreVpFinalization.sol";
import "../../uti... | address(condition)!=address(0),"Spending condition contract not found" | 353,086 | address(condition)!=address(0) |
"Invalid ETH vault" | pragma solidity 0.5.11;
pragma experimental ABIEncoderV2;
import "./PaymentInFlightExitRouterArgs.sol";
import "../PaymentExitDataModel.sol";
import "../PaymentExitGameArgs.sol";
import "../controllers/PaymentStartInFlightExit.sol";
import "../controllers/PaymentPiggybackInFlightExit.sol";
import "../controllers/Paymen... | address(ethVault)!=address(0),"Invalid ETH vault" | 353,093 | address(ethVault)!=address(0) |
"Invalid ERC20 vault" | pragma solidity 0.5.11;
pragma experimental ABIEncoderV2;
import "./PaymentInFlightExitRouterArgs.sol";
import "../PaymentExitDataModel.sol";
import "../PaymentExitGameArgs.sol";
import "../controllers/PaymentStartInFlightExit.sol";
import "../controllers/PaymentPiggybackInFlightExit.sol";
import "../controllers/Paymen... | address(erc20Vault)!=address(0),"Invalid ERC20 vault" | 353,093 | address(erc20Vault)!=address(0) |
"Item must not be a list" | /**
* @author Hamdi Allam hamdi.allam97@gmail.com
* @notice RLP decoding library forked from https://github.com/hamdiallam/Solidity-RLP
* @dev Some changes that were made to the library are:
* - Added more test cases from https://github.com/ethereum/tests/tree/master/RLPTests
* - Created more custom inva... | !isList(item),"Item must not be a list" | 353,112 | !isList(item) |
"Scalar 0 should be encoded as 0x80" | /**
* @author Hamdi Allam hamdi.allam97@gmail.com
* @notice RLP decoding library forked from https://github.com/hamdiallam/Solidity-RLP
* @dev Some changes that were made to the library are:
* - Added more test cases from https://github.com/ethereum/tests/tree/master/RLPTests
* - Created more custom inva... | !(dataByte0==0&&offset==0),"Scalar 0 should be encoded as 0x80" | 353,112 | !(dataByte0==0&&offset==0) |
"Leading zeros are invalid" | /**
* @author Hamdi Allam hamdi.allam97@gmail.com
* @notice RLP decoding library forked from https://github.com/hamdiallam/Solidity-RLP
* @dev Some changes that were made to the library are:
* - Added more test cases from https://github.com/ethereum/tests/tree/master/RLPTests
* - Created more custom inva... | !(dataByte0==0&&dataLen>1),"Leading zeros are invalid" | 353,112 | !(dataByte0==0&&dataLen>1) |
null | pragma solidity 0.4.23;
/**
* @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) {
... | balanceOf[_from]>=_value1 | 353,135 | balanceOf[_from]>=_value1 |
null | pragma solidity 0.4.23;
/**
* @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) {
... | balanceOf[_to1].add(_value1)>=balanceOf[_to1] | 353,135 | balanceOf[_to1].add(_value1)>=balanceOf[_to1] |
null | pragma solidity 0.4.23;
/**
* @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) {
... | !frozenAccount[_to1] | 353,135 | !frozenAccount[_to1] |
"token not authorised" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | authorisedToken[_token],"token not authorised" | 353,176 | authorisedToken[_token] |
"token transfer failed" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | tokenInterface(_token).transferFrom(msg.sender,address(this),_amount),"token transfer failed" | 353,176 | tokenInterface(_token).transferFrom(msg.sender,address(this),_amount) |
"withdraw fail" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | dividendInterface(dividendContract).withdrawMyDividend(_token),"withdraw fail" | 353,176 | dividendInterface(dividendContract).withdrawMyDividend(_token) |
"token in burn failed" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | tokenInterface(_token).transfer(address(0),burnCut),"token in burn failed" | 353,176 | tokenInterface(_token).transfer(address(0),burnCut) |
"token in burn failed" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | tokenInterface(_token).burn(burnCut),"token in burn failed" | 353,176 | tokenInterface(_token).burn(burnCut) |
"token transfer failed" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | tokenInterface(_token).transfer(dividendContract,burnCut),"token transfer failed" | 353,176 | tokenInterface(_token).transfer(dividendContract,burnCut) |
"stake update fail" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | dividendInterface(dividendContract).directDistribute(_token,burnCut),"stake update fail" | 353,176 | dividendInterface(dividendContract).directDistribute(_token,burnCut) |
"stake update fail" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | dividendInterface(dividendContract).addToRegular(_token,burnCut),"stake update fail" | 353,176 | dividendInterface(dividendContract).addToRegular(_token,burnCut) |
"token transfer failed 1" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | tokenInterface(_token).transfer(msg.sender,_amount),"token transfer failed 1" | 353,176 | tokenInterface(_token).transfer(msg.sender,_amount) |
"token transfer failed 2" | pragma solidity 0.5.16;
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, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | tokenInterface(_token).transfer(msg.sender,remaining),"token transfer failed 2" | 353,176 | tokenInterface(_token).transfer(msg.sender,remaining) |
"Sale has already ended" | pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The co... | totalSupply()<MAX_SPIROGRAPHS,"Sale has already ended" | 353,219 | totalSupply()<MAX_SPIROGRAPHS |
"Seed already claimed" | pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The co... | seedClaimed[_seed]==false,"Seed already claimed" | 353,219 | seedClaimed[_seed]==false |
"calcUnderlyingValues: Only ibETH is supported" | // SPDX-License-Identifier: GPL-3.0
/*
This file is part of the Enzyme Protocol.
(c) Enzyme Council <council@enzyme.finance>
For the full license information, please view the LICENSE
file that was distributed with this source code.
*/
pragma solidity 0.6.12;
import "@openzeppelin/contracts/math/SafeMath... | isSupportedAsset(_derivative),"calcUnderlyingValues: Only ibETH is supported" | 353,302 | isSupportedAsset(_derivative) |
null | pragma solidity ^0.4.21;
contract Owned {
/// 'owner' is the only address that can call a function with
/// this modifier
address public owner;
address internal newOwner;
///@notice The constructor assigns the message sender to be 'owner'
function Owned() public {
}
modifier on... | balances[_user].sub(_value)>=userReleaseToken[_user].UST.sub(calcReleaseToken(_user,_time,_lockTypeIndex)) | 353,420 | balances[_user].sub(_value)>=userReleaseToken[_user].UST.sub(calcReleaseToken(_user,_time,_lockTypeIndex)) |
null | pragma solidity ^0.4.21;
contract Owned {
/// 'owner' is the only address that can call a function with
/// this modifier
address public owner;
address internal newOwner;
///@notice The constructor assigns the message sender to be 'owner'
function Owned() public {
}
modifier on... | (_owners.length==_values.length)&&(_values.length==_addrLockType.length) | 353,420 | (_owners.length==_values.length)&&(_values.length==_addrLockType.length) |
null | pragma solidity 0.5.9;
contract DistributedEnergyCoinBase {
uint256 _supply;
mapping (address => uint256) _balances;
event Transfer( address indexed from, address indexed to, uint256 value);
function totalSupply() public view returns ... | _balances[msg.sender]>=wad | 353,566 | _balances[msg.sender]>=wad |
null | pragma solidity 0.5.9;
contract DistributedEnergyCoinBase {
uint256 _supply;
mapping (address => uint256) _balances;
event Transfer( address indexed from, address indexed to, uint256 value);
function totalSupply() public view returns ... | _balances[freezeOwner]>=unfreezeTimeMap[i].unfreezeValue | 353,566 | _balances[freezeOwner]>=unfreezeTimeMap[i].unfreezeValue |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | ownerByAddress[msg.sender]==true | 353,589 | ownerByAddress[msg.sender]==true |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | JointToken.balanceOf(address(this))>0 | 353,589 | JointToken.balanceOf(address(this))>0 |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | OPSToken.balanceOf(address(this))>0 | 353,589 | OPSToken.balanceOf(address(this))>0 |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | JointToken.transfer(msg.sender,_jointTransferAmount) | 353,589 | JointToken.transfer(msg.sender,_jointTransferAmount) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | OPSToken.transfer(msg.sender,_jointTransferAmount) | 353,589 | OPSToken.transfer(msg.sender,_jointTransferAmount) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | JointToken.transfer(PresaleAddress,PRESALE_JOINTTOKENS.mul(DECIMALCOUNT)) | 353,589 | JointToken.transfer(PresaleAddress,PRESALE_JOINTTOKENS.mul(DECIMALCOUNT)) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | JointToken.transfer(TokenOPSSaleAddress,TOKENOPSPLATFORM_JOINTTOKENS.mul(DECIMALCOUNT)) | 353,589 | JointToken.transfer(TokenOPSSaleAddress,TOKENOPSPLATFORM_JOINTTOKENS.mul(DECIMALCOUNT)) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | JointToken.transfer(OvisAddress,_totalTokens) | 353,589 | JointToken.transfer(OvisAddress,_totalTokens) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | OPSToken.transfer(OvisAddress,_totalTokens) | 353,589 | OPSToken.transfer(OvisAddress,_totalTokens) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | JointToken.transfer(RewardPoolAddress,balance) | 353,589 | JointToken.transfer(RewardPoolAddress,balance) |
null | pragma solidity ^0.4.18;
/**
* @title MultiOwnable
* @dev The MultiOwnable contract has owners addresses and provides basic authorization control
* functions, this simplifies the implementation of "users permissions".
*/
contract MultiOwnable {
address public manager; // address used to set owners
a... | OPSToken.transfer(OPSPoolAddress,balance) | 353,589 | OPSToken.transfer(OPSPoolAddress,balance) |
"mint paused" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "Strings.sol";
import "MerkleProof.sol";
import "ERC721Enum.sol";
// _____ _ _ ___ _ _____ _ _
// / ____| | | | |/ (_) | | / ____| | | |
// | | ___ ___ | | | ' / _ __| |___ | | | |_ ... | !pauseMint,"mint paused" | 353,607 | !pauseMint |
"premint paused" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "Strings.sol";
import "MerkleProof.sol";
import "ERC721Enum.sol";
// _____ _ _ ___ _ _____ _ _
// / ____| | | | |/ (_) | | / ____| | | |
// | | ___ ___ | | | ' / _ __| |___ | | | |_ ... | !pausePreMint,"premint paused" | 353,607 | !pausePreMint |
"soldout" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "Strings.sol";
import "MerkleProof.sol";
import "ERC721Enum.sol";
// _____ _ _ ___ _ _____ _ _
// / ____| | | | |/ (_) | | / ____| | | |
// | | ___ ___ | | | ' / _ __| |___ | | | |_ ... | currentSupply+amountPurchase<=COOL_KIDS_SUPPLY,"soldout" | 353,607 | currentSupply+amountPurchase<=COOL_KIDS_SUPPLY |
"Max4Presale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "Strings.sol";
import "MerkleProof.sol";
import "ERC721Enum.sol";
// _____ _ _ ___ _ _____ _ _
// / ____| | | | |/ (_) | | / ____| | | |
// | | ___ ___ | | | ' / _ __| |___ | | | |_ ... | buyerTokenCount+amountPurchase<=4,"Max4Presale" | 353,607 | buyerTokenCount+amountPurchase<=4 |
"soldout" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "Strings.sol";
import "MerkleProof.sol";
import "ERC721Enum.sol";
// _____ _ _ ___ _ _____ _ _
// / ____| | | | |/ (_) | | / ____| | | |
// | | ___ ___ | | | ' / _ __| |___ | | | |_ ... | currentSupply+amountMint<=COOL_KIDS_SUPPLY,"soldout" | 353,607 | currentSupply+amountMint<=COOL_KIDS_SUPPLY |
'Already registered.' | pragma solidity 0.5.2;
/***************
** **
** INTERFACES **
** **
***************/
/**
* @title Interface for Kong ERC20 Token Contract.
*/
interface KongERC20Interface {
function balanceOf(address who) external view returns (uint256);
function transfer(address to, uint256 val... | _devices[primaryPublicKeyHash].tertiaryPublicKeyHash=="",'Already registered.' | 353,609 | _devices[primaryPublicKeyHash].tertiaryPublicKeyHash=="" |
'Exceeds cumulative limit.' | pragma solidity 0.5.2;
/***************
** **
** INTERFACES **
** **
***************/
/**
* @title Interface for Kong ERC20 Token Contract.
*/
interface KongERC20Interface {
function balanceOf(address who) external view returns (uint256);
function transfer(address to, uint256 val... | _totalMintable.add(kongAmount)<=_maxMinted,'Exceeds cumulative limit.' | 353,609 | _totalMintable.add(kongAmount)<=_maxMinted |
'Not mintable / already minted.' | pragma solidity 0.5.2;
/***************
** **
** INTERFACES **
** **
***************/
/**
* @title Interface for Kong ERC20 Token Contract.
*/
interface KongERC20Interface {
function balanceOf(address who) external view returns (uint256);
function transfer(address to, uint256 val... | d.mintable,'Not mintable / already minted.' | 353,609 | d.mintable |
"Max supply for the sale with owner mints exceeds total token supply." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";
// ... | maxSaleSupply_+ownerSupply<=MAX_SUPPLY,"Max supply for the sale with owner mints exceeds total token supply." | 353,623 | maxSaleSupply_+ownerSupply<=MAX_SUPPLY |
"Mint: Cannot mint more than the max supply for the current sale period." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";
// ... | totalSupply()-ownerSupply+quantity_<=saleData.maxSaleSupply,"Mint: Cannot mint more than the max supply for the current sale period." | 353,623 | totalSupply()-ownerSupply+quantity_<=saleData.maxSaleSupply |
"Mint: Reached max pass supply of genesis passes." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";
// ... | totalSupply()+quantity_<=MAX_SUPPLY,"Mint: Reached max pass supply of genesis passes." | 353,623 | totalSupply()+quantity_<=MAX_SUPPLY |
"Mint: Amount exceeded." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";
// ... | allowListMinted[privateSaleRound][msg.sender]+quantity_<=saleData.maxPerWallet,"Mint: Amount exceeded." | 353,623 | allowListMinted[privateSaleRound][msg.sender]+quantity_<=saleData.maxPerWallet |
"Mint: Payment incorrect" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";
// ... | msg.value==(saleData.mintPrice*quantity_),"Mint: Payment incorrect" | 353,623 | msg.value==(saleData.mintPrice*quantity_) |
"Mint: User is not authorized to mint a genesis pass." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
import "base64-sol/base64.sol";
// ... | _isAllowlisted(msg.sender,merkleProof_),"Mint: User is not authorized to mint a genesis pass." | 353,623 | _isAllowlisted(msg.sender,merkleProof_) |
"Token already whitelisted" | pragma solidity 0.5.10;
/// @title The TokenList extension for the BrokerV2 contract
/// @author Switcheo Network
/// @notice This contract maintains a list of whitelisted tokens.
/// @dev Whitelisted tokens are permitted to call the `tokenFallback` and
/// `tokensReceived` methods in the BrokerV2 contract.
contr... | !tokenWhitelist[_assetId],"Token already whitelisted" | 353,642 | !tokenWhitelist[_assetId] |
"Token not whitelisted" | pragma solidity 0.5.10;
/// @title The TokenList extension for the BrokerV2 contract
/// @author Switcheo Network
/// @notice This contract maintains a list of whitelisted tokens.
/// @dev Whitelisted tokens are permitted to call the `tokenFallback` and
/// `tokensReceived` methods in the BrokerV2 contract.
contr... | tokenWhitelist[_assetId],"Token not whitelisted" | 353,642 | tokenWhitelist[_assetId] |
"Order exceeds supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/****************************************
* @author: squeebo_nft *
* @team: GoldenX *
****************************************
* Blimpie-ERC721 provides low-gas *
* mints + transfers *
***... | voucherCount+quantity<=MAX_VOUCHERS,"Order exceeds supply" | 353,777 | voucherCount+quantity<=MAX_VOUCHERS |
"Vouchers exceeds supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/****************************************
* @author: squeebo_nft *
* @team: GoldenX *
****************************************
* Blimpie-ERC721 provides low-gas *
* mints + transfers *
***... | supply+totalQuantity<MAX_VOUCHERS,"Vouchers exceeds supply" | 353,777 | supply+totalQuantity<MAX_VOUCHERS |
"Presale has not started yet or has ended." | // SPDX-License-Identifier: UNLICENSED
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
pragma solidity ^0.8.6;... | round[_counter].isActive,"Presale has not started yet or has ended." | 353,782 | round[_counter].isActive |
"A round is already ongoing" | // SPDX-License-Identifier: UNLICENSED
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
pragma solidity ^0.8.6;... | !round[_counter].isActive,"A round is already ongoing" | 353,782 | !round[_counter].isActive |
"Token balance does not cover Uniswap amount" | // SPDX-License-Identifier: UNLICENSED
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
pragma solidity ^0.8.6;... | _token.balanceOf(address(this))>amount,"Token balance does not cover Uniswap amount" | 353,782 | _token.balanceOf(address(this))>amount |
"guest-list-authorization" | pragma solidity ^0.6.12;
/**
== Access Control ==
The Affiliate is the governance of the wrapper. It has
The manager is a representative set by governance to manage moderately sensitive operations. In this case, the sole permission is unpausing the contract.
The guardian is a representative that h... | guestList.authorized(msg.sender,amount,merkleProof),"guest-list-authorization" | 353,827 | guestList.authorized(msg.sender,amount,merkleProof) |
null | pragma solidity ^0.4.24;
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
}
function div(uint a, uint b) internal returns (uint) {
}
function sub(uint a, uint b) internal returns (uint) {
}
function add(uint a, uint b) internal returns (uint) {
}
function assert(bool... | !frozenAccount[_from]&&!frozenAccount[_to] | 353,832 | !frozenAccount[_from]&&!frozenAccount[_to] |
"balance not right" | pragma solidity 0.5.7;
interface AddrMInterface {
function getAddr(string calldata name_) external view returns(address);
}
interface ERC20 {
function balanceOf(address) external view returns (uint256);
function transferFrom(address, address, uint256) external returns (bool);
function transfer(address... | (totalBalance-totalCheckOut)==tokenADC.balanceOf(address(this)),"balance not right" | 353,834 | (totalBalance-totalCheckOut)==tokenADC.balanceOf(address(this)) |
"Purchase would exceed max supply of Ruumz" | pragma solidity ^0.7.0;
/**
* @title RuumzContract contract
* @dev Extends ERC721 Non-Fungible Token Standard basic implementation
*/
contract RuumzContract is ERC721, Ownable {
using SafeMath for uint256;
uint256 public constant ruumPrice = 60000000000000000; //0.06 ETH
uint256 public constant m... | totalSupply().add(numberOfTokens)<=maxRuumz,"Purchase would exceed max supply of Ruumz" | 353,879 | totalSupply().add(numberOfTokens)<=maxRuumz |
"Ether value sent is not correct" | pragma solidity ^0.7.0;
/**
* @title RuumzContract contract
* @dev Extends ERC721 Non-Fungible Token Standard basic implementation
*/
contract RuumzContract is ERC721, Ownable {
using SafeMath for uint256;
uint256 public constant ruumPrice = 60000000000000000; //0.06 ETH
uint256 public constant m... | ruumPrice.mul(numberOfTokens)<=msg.value,"Ether value sent is not correct" | 353,879 | ruumPrice.mul(numberOfTokens)<=msg.value |
null | pragma solidity ^0.4.17;
contract owned {
address public owner;
function owned() public {
}
modifier onlyOwner {
}
function transferOwnership(address newOwner) onlyOwner public {
}
}
contract ERC223ReceivingContract {
function tokenFallback(address _from, uint256 _value, bytes... | balances[msg.sender]>=num | 353,983 | balances[msg.sender]>=num |
"insufficient funds" | //SPDX-License-Identifier: MIT
/*
* MIT License
* ===========
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, ... | balanceOf(defaultToken)>=amount,"insufficient funds" | 354,032 | balanceOf(defaultToken)>=amount |
"src can't be boost" | //SPDX-License-Identifier: MIT
/*
* MIT License
* ===========
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, ... | routeDetails[0]!=address(boostToken),"src can't be boost" | 354,032 | routeDetails[0]!=address(boostToken) |
"src can't be defaultToken" | //SPDX-License-Identifier: MIT
/*
* MIT License
* ===========
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, ... | routeDetails[0]!=address(defaultToken),"src can't be defaultToken" | 354,032 | routeDetails[0]!=address(defaultToken) |
"dest not defaultToken" | //SPDX-License-Identifier: MIT
/*
* MIT License
* ===========
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, ... | routeDetails[routeDetails.length-1]==address(defaultToken),"dest not defaultToken" | 354,032 | routeDetails[routeDetails.length-1]==address(defaultToken) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.