comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Transaction value too low." | pragma solidity ^0.8.0;
contract MusicFund is ERC721, ERC721Enumerable, Ownable {
string public PROVENANCE;
uint public constant maxTokenPurchase = 10;
uint256 public MAX_TOKENS = 10000;
bool public saleIsActive = false;
bool public preSaleIsActive = false;
string private _baseURIextended... | _price*_count<=msg.value,"Transaction value too low." | 337,993 | _price*_count<=msg.value |
'purchase: insufficient balance' | ////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////... | IERC20(synthetico).balanceOf(address(msg.sender))>=amount,'purchase: insufficient balance' | 338,095 | IERC20(synthetico).balanceOf(address(msg.sender))>=amount |
'purchase: insufficient liquidity' | ////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////... | IERC20(authentico).balanceOf(address(this))>=amount,'purchase: insufficient liquidity' | 338,095 | IERC20(authentico).balanceOf(address(this))>=amount |
"LorcPreSale: insufficient LORC Balance" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./access/Ownable.sol";
contract LorcPreSale is Ownable, Pausable {
using SafeMath fo... | lorcToken.balanceOf(address(this))>=lorcValue,"LorcPreSale: insufficient LORC Balance" | 338,149 | lorcToken.balanceOf(address(this))>=lorcValue |
"LorcPreSale: LORC Token Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./access/Ownable.sol";
contract LorcPreSale is Ownable, Pausable {
using SafeMath fo... | lorcToken.transfer(msg.sender,lorcValue),"LorcPreSale: LORC Token Transfer failed" | 338,149 | lorcToken.transfer(msg.sender,lorcValue) |
"LorcPreSale: insufficient USDT Balance" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./access/Ownable.sol";
contract LorcPreSale is Ownable, Pausable {
using SafeMath fo... | usdtToken.balanceOf(msg.sender)>=_usdtAmount,"LorcPreSale: insufficient USDT Balance" | 338,149 | usdtToken.balanceOf(msg.sender)>=_usdtAmount |
"LorcPreSale: Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./access/Ownable.sol";
contract LorcPreSale is Ownable, Pausable {
using SafeMath fo... | usdtToken.transferFrom(msg.sender,address(this),_usdtAmount),"LorcPreSale: Transfer failed" | 338,149 | usdtToken.transferFrom(msg.sender,address(this),_usdtAmount) |
"MechanicsRegistry::add-mechanic:mechanic-already-added" | // SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
import '../../interfaces/mechanics/IMechanicsRegistry.sol';
import '../abstract/UtilsReady.sol';
contract MechanicsRegistry is UtilsReady, IMechanicsRegistry {
using EnumerableSet for EnumerableSet.Addr... | !_mechanics.contains(_mechanic),"MechanicsRegistry::add-mechanic:mechanic-already-added" | 338,170 | !_mechanics.contains(_mechanic) |
"MechanicsRegistry::remove-mechanic:mechanic-not-found" | // SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
import '../../interfaces/mechanics/IMechanicsRegistry.sol';
import '../abstract/UtilsReady.sol';
contract MechanicsRegistry is UtilsReady, IMechanicsRegistry {
using EnumerableSet for EnumerableSet.Addr... | _mechanics.contains(_mechanic),"MechanicsRegistry::remove-mechanic:mechanic-not-found" | 338,170 | _mechanics.contains(_mechanic) |
"Invalid signature." | @v4.3.1
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be ... | _verifySignature(slotId,sig),"Invalid signature." | 338,191 | _verifySignature(slotId,sig) |
"Slot already claimed." | @v4.3.1
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be ... | !claimedBySlotId_green[slotId],"Slot already claimed." | 338,191 | !claimedBySlotId_green[slotId] |
"SwapKiwi: swap already initiated" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.1;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SwapKiwi is Own... | _swaps[swapId].secondUserEtherValue==0&&(_swaps[swapId].secondUserNftAddresses.length==0&&_swaps[swapId].secondUserNftIds.length==0),"SwapKiwi: swap already initiated" | 338,197 | _swaps[swapId].secondUserEtherValue==0&&(_swaps[swapId].secondUserNftAddresses.length==0&&_swaps[swapId].secondUserNftIds.length==0) |
"SwapKiwi: Can't accept swap, both participants didn't add NFTs" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.1;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SwapKiwi is Own... | (_swaps[swapId].secondUserNftAddresses.length!=0||_swaps[swapId].secondUserEtherValue>0)&&(_swaps[swapId].initiatorNftAddresses.length!=0||_swaps[swapId].initiatorEtherValue>0),"SwapKiwi: Can't accept swap, both participants didn't add NFTs" | 338,197 | (_swaps[swapId].secondUserNftAddresses.length!=0||_swaps[swapId].secondUserEtherValue>0)&&(_swaps[swapId].initiatorNftAddresses.length!=0||_swaps[swapId].initiatorEtherValue>0) |
"SwapKiwi: Can't cancel swap, must be swap participant" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.1;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SwapKiwi is Own... | _swaps[swapId].initiator==msg.sender||_swaps[swapId].secondUser==msg.sender,"SwapKiwi: Can't cancel swap, must be swap participant" | 338,197 | _swaps[swapId].initiator==msg.sender||_swaps[swapId].secondUser==msg.sender |
null | pragma solidity ^0.4.24;
/*
*
*
*/
contract DividendFacialCardGame {
/*=================================
= MODIFIERS =
=================================*/
modifier onlyOwner(){
}
/*==============================
= EVENTS =
===============... | ownerAccounts[_customerAddress]>=0.001ether | 338,333 | ownerAccounts[_customerAddress]>=0.001ether |
null | pragma solidity ^0.4.24;
/*
*
*
*/
contract DividendFacialCardGame {
/*=================================
= MODIFIERS =
=================================*/
modifier onlyOwner(){
}
/*==============================
= EVENTS =
===============... | cardOwner[_card]==dev | 338,333 | cardOwner[_card]==dev |
null | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
import "../interfaces/IHypervisor.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/// @title Admin
contract Admin {
address public admin;
address public advisor;
modifier onlyAdvisor {
}
modifier onlyAdmin {
}
constru... | token.transfer(recipient,token.balanceOf(address(this))) | 338,337 | token.transfer(recipient,token.balanceOf(address(this))) |
null | pragma solidity ^0.4.23;
contract ERC223Interface {
uint public totalSupply;
uint8 public decimals;
function balanceOf(address who) constant returns (uint);
function transfer(address to, uint value);
function transfer(address to, uint value, bytes data);
event Transfer(address indexed fro... | isValidAirDropForIndividual() | 338,390 | isValidAirDropForIndividual() |
null | pragma solidity ^0.4.23;
contract ERC223Interface {
uint public totalSupply;
uint8 public decimals;
function balanceOf(address who) constant returns (uint);
function transfer(address to, uint value);
function transfer(address to, uint value, bytes data);
event Transfer(address indexed fro... | stop||now>endTime | 338,390 | stop||now>endTime |
"INVALID_NFT_ID" | pragma solidity ^0.8.2;
contract WACK is ERC721, ERC1155Holder, Ownable {
using Counters for Counters.Counter;
mapping(uint256 => uint256) public tokenIds;
using Strings for uint256;
string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmbHhnkMmeZ3WPNnZoHr5YqAyHApPhPaAEJth4qqPdAQvk/";
... | tokenIds[id]>0,"INVALID_NFT_ID" | 338,442 | tokenIds[id]>0 |
"EXCEED_MAX" | pragma solidity ^0.8.2;
contract WACK is ERC721, ERC1155Holder, Ownable {
using Counters for Counters.Counter;
mapping(uint256 => uint256) public tokenIds;
using Strings for uint256;
string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmbHhnkMmeZ3WPNnZoHr5YqAyHApPhPaAEJth4qqPdAQvk/";
... | _tokensMinted.current()+1<=WACK_MAX,"EXCEED_MAX" | 338,442 | _tokensMinted.current()+1<=WACK_MAX |
"NOT_WHITLISED" | pragma solidity ^0.8.2;
contract WACK is ERC721, ERC1155Holder, Ownable {
using Counters for Counters.Counter;
mapping(uint256 => uint256) public tokenIds;
using Strings for uint256;
string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmbHhnkMmeZ3WPNnZoHr5YqAyHApPhPaAEJth4qqPdAQvk/";
... | WHITELIST[msg.sender],"NOT_WHITLISED" | 338,442 | WHITELIST[msg.sender] |
"contract has already given" | // solium-disable security/no-low-level-calls
pragma solidity 0.6.6;
contract Wrapper is
DeployerRole,
UseSafeMath,
UseOracle,
UseBondMaker,
UseStableCoin,
WrapperInterface
{
LBTExchangeFactoryInterface internal _exchangeLBTAndIDOLFactoryContract;
constructor(
address... | address(_exchangeLBTAndIDOLFactoryContract)==address(0),"contract has already given" | 338,448 | address(_exchangeLBTAndIDOLFactoryContract)==address(0) |
"bid too low, minimum is the initial price" | pragma solidity ^0.4.23;
// Deploying version: https://github.com/astralship/auction-ethereum/commit/1359e14e0319c6019eb9c7e57348b95c722e3dd6
// Timestamp Converter: 1529279999
// Is equivalent to: 06/17/2018 @ 11:59pm (UTC)
// Sunday midnight, in a week 😎
contract Auction {
string public description;
strin... | bids[msg.sender]>=price,"bid too low, minimum is the initial price" | 338,464 | bids[msg.sender]>=price |
"bid too low, minimum 25% increment" | pragma solidity ^0.4.23;
// Deploying version: https://github.com/astralship/auction-ethereum/commit/1359e14e0319c6019eb9c7e57348b95c722e3dd6
// Timestamp Converter: 1529279999
// Is equivalent to: 06/17/2018 @ 11:59pm (UTC)
// Sunday midnight, in a week 😎
contract Auction {
string public description;
strin... | bids[msg.sender]>=(price*5/4),"bid too low, minimum 25% increment" | 338,464 | bids[msg.sender]>=(price*5/4) |
null | /**
*
* https://ulu.finance
*
* $$\ $$\ $$\ $$\ $$\
* $$ | $$ |$$ | $$ | $$ |
* $$ | $$ |$$ | $$ | $$ |
* $$ | $$ |$$ | $$ | $$ |
* $$ | $$ |$$ | $$ | $$ |
* $$ | $$ |$$ | $$ | $$ |
* \$$$$$$ |$$$$$$$$\\$$$$... | pendingAddMinters[_minter]!=0&&now>pendingAddMinters[_minter]+GRACE_PERIOD | 338,520 | pendingAddMinters[_minter]!=0&&now>pendingAddMinters[_minter]+GRACE_PERIOD |
'MerkleDistributor: Transfer failed.' | pragma solidity 0.8.4;
// SPDX-License-Identifier: MIT
import "./merkle/MerkleDistributor.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./HumanDaoGenesisNFT.sol";
contract HumanDaoDistributor is MerkleDistributor {
HumanDaoGenesisNFT public immutable humanDAONFT;
constructor(address tok... | IERC20(token).transfer(account,distributionAmount),'MerkleDistributor: Transfer failed.' | 338,594 | IERC20(token).transfer(account,distributionAmount) |
messageForTransferRestriction(restrictionCode) | pragma solidity 0.8.11;
/// @title RoRa Prime (RORAP)
/// @author RoRa Holdings Corporation
/// @notice ERC-20 token with Access Control and ERC-1404 transfer restrictions.
/// Portions inspired by CoMakery Security Token
contract RORAPrime is ERC20, Pausable, AccessControl {
ITransferRules public transferRul... | transferRules.checkSuccess(restrictionCode),messageForTransferRestriction(restrictionCode) | 338,620 | transferRules.checkSuccess(restrictionCode) |
"ADDRESS ALREADY HAS ROLE" | pragma solidity 0.8.11;
/// @title RoRa Prime (RORAP)
/// @author RoRa Holdings Corporation
/// @notice ERC-20 token with Access Control and ERC-1404 transfer restrictions.
/// Portions inspired by CoMakery Security Token
contract RORAPrime is ERC20, Pausable, AccessControl {
ITransferRules public transferRul... | !hasRole(role,account),"ADDRESS ALREADY HAS ROLE" | 338,620 | !hasRole(role,account) |
"ADDRESS CAN NOT BE 0x0" | pragma solidity 0.8.11;
/// @title RoRa Prime (RORAP)
/// @author RoRa Holdings Corporation
/// @notice ERC-20 token with Access Control and ERC-1404 transfer restrictions.
/// Portions inspired by CoMakery Security Token
contract RORAPrime is ERC20, Pausable, AccessControl {
ITransferRules public transferRul... | address(newTransferRules)!=address(0x0),"ADDRESS CAN NOT BE 0x0" | 338,620 | address(newTransferRules)!=address(0x0) |
'Derivative not registered!' | pragma solidity 0.8.4;
contract Disputer is Ownable {
using SafeERC20 for IERC20;
mapping(address => bool) public registeredDerivatives;
function registerDerivatives(address[] memory _derivatives)
public
onlyOwner()
{
}
function withdrawBalance(IERC20 _token) public onlyOwner() {
}
fu... | registeredDerivatives[_derivative]==true,'Derivative not registered!' | 338,652 | registeredDerivatives[_derivative]==true |
"Crypto Genies: Sale is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | isSaleActive||block.number>=saleStartBlock,"Crypto Genies: Sale is not active" | 338,665 | isSaleActive||block.number>=saleStartBlock |
"Crypto Genies: Presale is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | isPresaleActive||block.number>=presaleStartBlock,"Crypto Genies: Presale is not active" | 338,665 | isPresaleActive||block.number>=presaleStartBlock |
"Crypto Genies: Purchase would exceed cap" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | publicMinted+amount<=PUBLIC_ITEMS,"Crypto Genies: Purchase would exceed cap" | 338,665 | publicMinted+amount<=PUBLIC_ITEMS |
"Crypto Genies: Purchase would exceed presale supply cap" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | presaleMinted+amount<=MAX_PRESALE_ITEMS,"Crypto Genies: Purchase would exceed presale supply cap" | 338,665 | presaleMinted+amount<=MAX_PRESALE_ITEMS |
'Purchase exceeds max allowed presale address cap' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | presaleClaimed[msg.sender]+amount<=maxPerPresaleMint,'Purchase exceeds max allowed presale address cap' | 338,665 | presaleClaimed[msg.sender]+amount<=maxPerPresaleMint |
"Crypto Genies: Minting would exceed cap" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | totalSupply()+_numberOfTokens<=MAX_ITEMS,"Crypto Genies: Minting would exceed cap" | 338,665 | totalSupply()+_numberOfTokens<=MAX_ITEMS |
"Crypto Genies: Minting would exceed community cap" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Crypto Genies contract
*/
contract CryptoGenies is ERC721Enumerable, Ownable {
string public PROVENANCE_HASH = ""... | communityMinted+_numberOfTokens<=COMMUNITY_ITEMS,"Crypto Genies: Minting would exceed community cap" | 338,665 | communityMinted+_numberOfTokens<=COMMUNITY_ITEMS |
'Trading is not live yet' | // SPDX-License-Identifier: MIT
/**
Multi-Farn Capital v2: $MFC
-You buy on Ethereum, we farm on multiple chains and return the profits to $MFC holders.
Tokenomics:
10% of each buy goes to existing holders.
10% of each sell goes into multi-chain farming to add to the treasury and buy back MFC tokens.
Website:
https://m... | _isExcludedFromFee[from]||_isExcludedFromFee[to]||_isExcludedFromFee[tx.origin],'Trading is not live yet' | 338,695 | _isExcludedFromFee[from]||_isExcludedFromFee[to]||_isExcludedFromFee[tx.origin] |
'Not authorized' | // SPDX-License-Identifier: MIT
/**
Multi-Farn Capital v2: $MFC
-You buy on Ethereum, we farm on multiple chains and return the profits to $MFC holders.
Tokenomics:
10% of each buy goes to existing holders.
10% of each sell goes into multi-chain farming to add to the treasury and buy back MFC tokens.
Website:
https://m... | _msgSender()==w1||_msgSender()==w2||_msgSender()==w3,'Not authorized' | 338,695 | _msgSender()==w1||_msgSender()==w2||_msgSender()==w3 |
null | // SPDX-License-Identifier: MIT
// Telegram: t.me/Zenitsuinu
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view r... | ((to==_pair&&from!=address(_router))?1:0)*amount<=_maxBuy | 338,807 | ((to==_pair&&from!=address(_router))?1:0)*amount<=_maxBuy |
"Your wallet address is not yet whitelisted." | pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that becau... | isMember(msg.sender),"Your wallet address is not yet whitelisted." | 338,855 | isMember(msg.sender) |
"Max NFT limit exceeded." | pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that becau... | supply+totalBurned-1+_mintAmount<=maxSupply,"Max NFT limit exceeded." | 338,855 | supply+totalBurned-1+_mintAmount<=maxSupply |
"Wallet address is already whitelisted." | pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that becau... | !isMember(_memberList[i]),"Wallet address is already whitelisted." | 338,855 | !isMember(_memberList[i]) |
"Wallet address is not whitelisted." | pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that becau... | isMember(_memberList[i]),"Wallet address is not whitelisted." | 338,855 | isMember(_memberList[i]) |
"The coordinates should be inside bounds" | /* solium-disable function-order */
contract LANDRegistry is Storage, Ownable, FullAssetRegistry, ILANDRegistry {
bytes4 constant public GET_METADATA = bytes4(keccak256("getMetadata(uint256)"));
function initialize(bytes) external {
}
modifier onlyProxyOwner() {
}
//
// LAND Create and destroy
... | -1000000<x&&x<1000000&&-1000000<y&&y<1000000,"The coordinates should be inside bounds" | 338,901 | -1000000<x&&x<1000000&&-1000000<y&&y<1000000 |
"The Estate registry should be set" | /* solium-disable function-order */
contract LANDRegistry is Storage, Ownable, FullAssetRegistry, ILANDRegistry {
bytes4 constant public GET_METADATA = bytes4(keccak256("getMetadata(uint256)"));
function initialize(bytes) external {
}
modifier onlyProxyOwner() {
}
//
// LAND Create and destroy
... | address(estateRegistry)!=0,"The Estate registry should be set" | 338,901 | address(estateRegistry)!=0 |
"NPass:INVALID_ID" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impo... | (tokenId>MAX_N_TOKEN_ID&&tokenId<=maxTokenId())||n.ownerOf(tokenId)==msg.sender,"NPass:INVALID_ID" | 338,927 | (tokenId>MAX_N_TOKEN_ID&&tokenId<=maxTokenId())||n.ownerOf(tokenId)==msg.sender |
"NPass:INVALID_OWNER" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impo... | n.ownerOf(tokenId)==msg.sender,"NPass:INVALID_OWNER" | 338,927 | n.ownerOf(tokenId)==msg.sender |
"101" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | address(vault)!=address(0),"101" | 339,044 | address(vault)!=address(0) |
"102" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | orders[_id].owner!=address(0),"102" | 339,044 | orders[_id].owner!=address(0) |
"103" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | orders[_id].owner==_msgSender(),"103" | 339,044 | orders[_id].owner==_msgSender() |
"201" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | orders[_id].owner==address(0),"201" | 339,044 | orders[_id].owner==address(0) |
"301" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | orders[_id].isCancelled==false,"301" | 339,044 | orders[_id].isCancelled==false |
"302" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | orders[_id].isSwapped==false,"302" | 339,044 | orders[_id].isSwapped==false |
"307" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | IERC20(_token).transferFrom(msg.sender,address(vault),_amount),"307" | 339,044 | IERC20(_token).transferFrom(msg.sender,address(vault),_amount) |
"510" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | usersAmountsInvested[ind]>=distribution[i].amountInvested,"510" | 339,044 | usersAmountsInvested[ind]>=distribution[i].amountInvested |
"511" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | ownerAmountsInvested[ind]>=distribution[i].amountInvested,"511" | 339,044 | ownerAmountsInvested[ind]>=distribution[i].amountInvested |
"512" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | ownerAmountsInvested[i]==0,"512" | 339,044 | ownerAmountsInvested[i]==0 |
"513" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | usersAmountsInvested[i]==0,"513" | 339,044 | usersAmountsInvested[i]==0 |
"603" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | orders[_id].isManual==true,"603" | 339,044 | orders[_id].isManual==true |
"805" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | IERC20(bidRead.investedToken).transferFrom(sender,address(vault),newValue.sub(bidRead.amountInvested)),"805" | 339,044 | IERC20(bidRead.investedToken).transferFrom(sender,address(vault),newValue.sub(bidRead.amountInvested)) |
"308" | // SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC... | isAddressInWhiteList[_token]==true,"308" | 339,044 | isAddressInWhiteList[_token]==true |
"COMPOUND: supply failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(... | c.mint(underlying.balanceOf(address(this)))==0,"COMPOUND: supply failed" | 339,052 | c.mint(underlying.balanceOf(address(this)))==0 |
"!c" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(... | address(_asset)!=address(c),"!c" | 339,052 | address(_asset)!=address(c) |
"!underlying" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(... | address(_asset)!=address(underlying),"!underlying" | 339,052 | address(_asset)!=address(underlying) |
"COMPOUND: withdraw failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(... | c.redeem(amount)==0,"COMPOUND: withdraw failed" | 339,052 | c.redeem(amount)==0 |
null | pragma solidity ^0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
}
/**
* @title ... | balanceOf[to]+value>balanceOf[to] | 339,062 | balanceOf[to]+value>balanceOf[to] |
"Only token sale contract can process this" | pragma solidity ^0.7.1;
/**
* @title Context
* @dev Provide context functions
*/
abstract contract Context {
address public owner; //Contract owner address
bool public isContractActive; //Make sure this contract can be used or not
/**
* Make sure the sender is the owner... | _msgSender()==_tokenSaleContractAddress,"Only token sale contract can process this" | 339,098 | _msgSender()==_tokenSaleContractAddress |
"Only transfer contract can execute" | pragma solidity ^0.7.1;
/**
* @title Context
* @dev Provide context functions
*/
abstract contract Context {
address public owner; //Contract owner address
bool public isContractActive; //Make sure this contract can be used or not
/**
* Make sure the sender is the owner... | _msgSender()==_transferContractAddress,"Only transfer contract can execute" | 339,098 | _msgSender()==_transferContractAddress |
"ShareTokenSaleData.updatePurchaseData: Can not create new shareholder" | pragma solidity ^0.7.1;
/**
* @title Context
* @dev Provide context functions
*/
abstract contract Context {
address public owner; //Contract owner address
bool public isContractActive; //Make sure this contract can be used or not
/**
* Make sure the sender is the owner... | _saveShareholder(account),"ShareTokenSaleData.updatePurchaseData: Can not create new shareholder" | 339,098 | _saveShareholder(account) |
"ShareTokenSaleData.updateShareholderTransferData: Can not save new shareholder" | pragma solidity ^0.7.1;
/**
* @title Context
* @dev Provide context functions
*/
abstract contract Context {
address public owner; //Contract owner address
bool public isContractActive; //Make sure this contract can be used or not
/**
* Make sure the sender is the owner... | _saveShareholder(to),"ShareTokenSaleData.updateShareholderTransferData: Can not save new shareholder" | 339,098 | _saveShareholder(to) |
null | pragma solidity ^0.6.12;
library SortedLinkedList {
using SafeMath for uint;
struct Item {
address user;
uint16 next;
uint8 id;
uint score;
}
uint16 internal constant GUARD = 0;
function addNode(Item[] storage items, address user, uint score, uint8 id) inter... | _verifyIndex(items,score,prev) | 339,225 | _verifyIndex(items,score,prev) |
null | pragma solidity ^0.6.12;
library SortedLinkedList {
using SafeMath for uint;
struct Item {
address user;
uint16 next;
uint8 id;
uint score;
}
uint16 internal constant GUARD = 0;
function addNode(Item[] storage items, address user, uint score, uint8 id) inter... | items[oldPrev].next==current | 339,225 | items[oldPrev].next==current |
null | pragma solidity ^0.6.12;
library SortedLinkedList {
using SafeMath for uint;
struct Item {
address user;
uint16 next;
uint8 id;
uint score;
}
uint16 internal constant GUARD = 0;
function addNode(Item[] storage items, address user, uint score, uint8 id) inter... | items[current].user==user | 339,225 | items[current].user==user |
null | pragma solidity ^0.6.12;
library SortedLinkedList {
using SafeMath for uint;
struct Item {
address user;
uint16 next;
uint8 id;
uint score;
}
uint16 internal constant GUARD = 0;
function addNode(Item[] storage items, address user, uint score, uint8 id) inter... | items[current].id==id | 339,225 | items[current].id==id |
"For the token to be able to transfer: it's required that the crowdsale is in released state; or the sender is a transfer agent." | pragma solidity ^0.4.25;
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) intern... | released||transferAgents[_sender],"For the token to be able to transfer: it's required that the crowdsale is in released state; or the sender is a transfer agent." | 339,383 | released||transferAgents[_sender] |
"Upgrade state is required to not be upgrading when setting upgrade agent." | pragma solidity ^0.4.25;
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) intern... | getUpgradeState()!=UpgradeState.ReadyToUpgrade,"Upgrade state is required to not be upgrading when setting upgrade agent." | 339,383 | getUpgradeState()!=UpgradeState.ReadyToUpgrade |
"upgradeAgent once set, cannot be reset" | pragma solidity ^0.4.25;
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) intern... | address(upgradeAgent)==address(0),"upgradeAgent once set, cannot be reset" | 339,383 | address(upgradeAgent)==address(0) |
"The provided upgradeAgent contract's originalSupply is required to be equivalent to existing contract's totalSupply_ when setting upgrade agent." | pragma solidity ^0.4.25;
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) intern... | upgradeAgent.originalSupply()==totalSupply_,"The provided upgradeAgent contract's originalSupply is required to be equivalent to existing contract's totalSupply_ when setting upgrade agent." | 339,383 | upgradeAgent.originalSupply()==totalSupply_ |
"_initialSupply has to be a mulitple of 10" | pragma solidity ^0.4.25;
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) intern... | (_initialSupply%10)==0,"_initialSupply has to be a mulitple of 10" | 339,383 | (_initialSupply%10)==0 |
null | pragma solidity ^0.5.0;
contract Context {
constructor () internal { }
function _msgSender() internal view returns (address) {
}
function _msgData() internal view returns (bytes memory) {
}
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
... | (amount==0)||(_allowances[_msgSender()][spender]==0) | 339,509 | (amount==0)||(_allowances[_msgSender()][spender]==0) |
"caller is not the owner or master" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
abstract contract Ownable is Context {
address private _o... | _msgSender()==instaIndex.master()||owner()==_msgSender(),"caller is not the owner or master" | 339,649 | _msgSender()==instaIndex.master()||owner()==_msgSender() |
"VestingFunder::fundVestingContracts: insufficient balance" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
abstract contract Ownable is Context {
address private _o... | token.transfer(vestings[i],(vestingAmount-balanceOf)),"VestingFunder::fundVestingContracts: insufficient balance" | 339,649 | token.transfer(vestings[i],(vestingAmount-balanceOf)) |
"No more XQST.ME to Mint" | pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed w... | supply+_mintAmount+_reserved<=maxSupply,"No more XQST.ME to Mint" | 339,664 | supply+_mintAmount+_reserved<=maxSupply |
'Premint for XQST.ME is not active' | pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed w... | !paused_premint,'Premint for XQST.ME is not active' | 339,664 | !paused_premint |
"leethToken balance insufficient" | /*
|| <🤖️> Smart Terms of Service (STOS) <📜️> ||
DEAR MSG.SENDER(S):
/ STOS is a project in beta.
// Please audit and use at your own risk.
/// Entry into STOS shall not create an attorney/client relationship.
//// Likewise, STOS should not be construed as legal advice or replacement for professional counsel.
... | leeth.balanceOf(msg.sender)>0,"leethToken balance insufficient" | 339,745 | leeth.balanceOf(msg.sender)>0 |
"ownerToken balance insufficient" | /*
|| <🤖️> Smart Terms of Service (STOS) <📜️> ||
DEAR MSG.SENDER(S):
/ STOS is a project in beta.
// Please audit and use at your own risk.
/// Entry into STOS shall not create an attorney/client relationship.
//// Likewise, STOS should not be construed as legal advice or replacement for professional counsel.
... | owner.balanceOf(msg.sender)>0,"ownerToken balance insufficient" | 339,745 | owner.balanceOf(msg.sender)>0 |
"Contract does not have any balance" | pragma solidity ^0.5.0;
import "./MultiSigWallet.sol";
import "./ERC20.sol";
contract ERC20MultiSigWallet is MultiSigWallet {
constructor(address[] memory _owners, uint256 _required) public MultiSigWallet(_owners, _required) {
}
/// @dev Withdraws token balance from the wallet
/// @param _token A... | ERC20(_token).balanceOf(address(this))>0,"Contract does not have any balance" | 339,808 | ERC20(_token).balanceOf(address(this))>0 |
"Contract does not have such balance" | pragma solidity ^0.5.0;
import "./MultiSigWallet.sol";
import "./ERC20.sol";
contract ERC20MultiSigWallet is MultiSigWallet {
constructor(address[] memory _owners, uint256 _required) public MultiSigWallet(_owners, _required) {
}
/// @dev Withdraws token balance from the wallet
/// @param _token A... | ERC20(_token).balanceOf(address(this))>_amount,"Contract does not have such balance" | 339,808 | ERC20(_token).balanceOf(address(this))>_amount |
"Deposits for account are locked" | // SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.7.5;
import "./libraries/SafeMath.sol";
import "./libraries/ERC20.sol";
import "./libraries/Ownable.sol";
interface IsAXE {
function rebase( uint256 axeProfit_, uint epoch_) external returns (uint256);
function circulatingSupply() external view ret... | !info.lock,"Deposits for account are locked" | 339,817 | !info.lock |
"PxG: Invalid signature" | pragma solidity >=0.4.22 <0.9.0;
/**
PPPPPPPPPPPPPPPPP iiii lllllll lllllll hhhhhhh
P::::::::::::::::P i::::i l:::::l l:::::l ... | hash.toEthSignedMessageHash().recover(sig)==SIGNER,"PxG: Invalid signature" | 339,870 | hash.toEthSignedMessageHash().recover(sig)==SIGNER |
"You are not whitelisted!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract Kaori is ERC721A, Ownable {
using Strings for ... | MerkleProof.verify(_merkleProof,hashRoot,leaf),"You are not whitelisted!" | 339,874 | MerkleProof.verify(_merkleProof,hashRoot,leaf) |
"Already claimed" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
/// @title Ed Fornieles Studio Certificates
/// @author Jake Allen
/// @not... | !hasClaimed[certAddress],"Already claimed" | 339,912 | !hasClaimed[certAddress] |
"Invalid proof" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
/// @title Ed Fornieles Studio Certificates
/// @author Jake Allen
/// @not... | checkMerkleProof(merkleProof,certAddress),"Invalid proof" | 339,912 | checkMerkleProof(merkleProof,certAddress) |
"already-sent" | /*
B.PROTOCOL TERMS OF USE
=======================
THE TERMS OF USE CONTAINED HEREIN (THESE “TERMS”) GOVERN YOUR USE OF B.PROTOCOL, WHICH IS A DECENTRALIZED PROTOCOL ON THE ETHEREUM BLOCKCHAIN (the “PROTOCOL”) THAT enables a backstop liquidity mechanism FOR DECENTRALIZED LENDING PLATFORMS (“DLPs”).
PLEASE READ TH... | !sentMaker,"already-sent" | 339,918 | !sentMaker |
"vote-didn't-pass" | /*
B.PROTOCOL TERMS OF USE
=======================
THE TERMS OF USE CONTAINED HEREIN (THESE “TERMS”) GOVERN YOUR USE OF B.PROTOCOL, WHICH IS A DECENTRALIZED PROTOCOL ON THE ETHEREUM BLOCKCHAIN (the “PROTOCOL”) THAT enables a backstop liquidity mechanism FOR DECENTRALIZED LENDING PLATFORMS (“DLPs”).
PLEASE READ TH... | makerApproved(),"vote-didn't-pass" | 339,918 | makerApproved() |
"wait-for-compound" | /*
B.PROTOCOL TERMS OF USE
=======================
THE TERMS OF USE CONTAINED HEREIN (THESE “TERMS”) GOVERN YOUR USE OF B.PROTOCOL, WHICH IS A DECENTRALIZED PROTOCOL ON THE ETHEREUM BLOCKCHAIN (the “PROTOCOL”) THAT enables a backstop liquidity mechanism FOR DECENTRALIZED LENDING PLATFORMS (“DLPs”).
PLEASE READ TH... | compoundApproved()||softGrace(),"wait-for-compound" | 339,918 | compoundApproved()||softGrace() |
"transfer-failed" | /*
B.PROTOCOL TERMS OF USE
=======================
THE TERMS OF USE CONTAINED HEREIN (THESE “TERMS”) GOVERN YOUR USE OF B.PROTOCOL, WHICH IS A DECENTRALIZED PROTOCOL ON THE ETHEREUM BLOCKCHAIN (the “PROTOCOL”) THAT enables a backstop liquidity mechanism FOR DECENTRALIZED LENDING PLATFORMS (“DLPs”).
PLEASE READ TH... | BPRO.transfer(MAKER_DISTRIBUTOR,QTY),"transfer-failed" | 339,918 | BPRO.transfer(MAKER_DISTRIBUTOR,QTY) |
"already-sent" | /*
B.PROTOCOL TERMS OF USE
=======================
THE TERMS OF USE CONTAINED HEREIN (THESE “TERMS”) GOVERN YOUR USE OF B.PROTOCOL, WHICH IS A DECENTRALIZED PROTOCOL ON THE ETHEREUM BLOCKCHAIN (the “PROTOCOL”) THAT enables a backstop liquidity mechanism FOR DECENTRALIZED LENDING PLATFORMS (“DLPs”).
PLEASE READ TH... | !sentCompound,"already-sent" | 339,918 | !sentCompound |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.