comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"this contract does not have sufficient balance for reward" | pragma solidity ^0.5.0;
interface ERC20 {
function balanceOf(address _owner) external view returns (uint balance);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function allowance(... | erc20Contract.balanceOf(address(this))>=bonusValueInWei,"this contract does not have sufficient balance for reward" | 389,095 | erc20Contract.balanceOf(address(this))>=bonusValueInWei |
"this contract does not have sufficient allowance set for reward" | pragma solidity ^0.5.0;
interface ERC20 {
function balanceOf(address _owner) external view returns (uint balance);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function allowance(... | erc20Contract.allowance(owner,address(this))>=bonusValueInWei,"this contract does not have sufficient allowance set for reward" | 389,095 | erc20Contract.allowance(owner,address(this))>=bonusValueInWei |
null | pragma solidity ^0.6.0;
import "../../compound/helpers/CompoundSaverHelper.sol";
contract CompShifter is CompoundSaverHelper {
using SafeERC20 for ERC20;
address public constant COMPTROLLER_ADDR = 0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B;
function getLoanAmount(uint _cdpId, address _joinAddr) public retur... | CTokenInterface(_cCollAddr).redeemUnderlying(_collAmount)==0 | 389,183 | CTokenInterface(_cCollAddr).redeemUnderlying(_collAmount)==0 |
"mint error" | pragma solidity ^0.6.0;
import "../../compound/helpers/CompoundSaverHelper.sol";
contract CompShifter is CompoundSaverHelper {
using SafeERC20 for ERC20;
address public constant COMPTROLLER_ADDR = 0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B;
function getLoanAmount(uint _cdpId, address _joinAddr) public retur... | CTokenInterface(_cTokenAddr).mint(_amount)==0,"mint error" | 389,183 | CTokenInterface(_cTokenAddr).mint(_amount)==0 |
null | pragma solidity ^0.6.0;
import "../../compound/helpers/CompoundSaverHelper.sol";
contract CompShifter is CompoundSaverHelper {
using SafeERC20 for ERC20;
address public constant COMPTROLLER_ADDR = 0x3d9819210A31b4961b30EF54bE2aeD79B9c9Cd3B;
function getLoanAmount(uint _cdpId, address _joinAddr) public retur... | CTokenInterface(_cTokenAddr).borrow(_amount)==0 | 389,183 | CTokenInterface(_cTokenAddr).borrow(_amount)==0 |
"Value sent is not correct" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Math.sol";
import "./EnumerableMap.sol";
import "./ERC721Enumerable.sol";
import "./ERC1155.sol";
contract Cryp... | CURRENT_PRICE.mul(numberOfTokens)<=msg.value,"Value sent is not correct" | 389,223 | CURRENT_PRICE.mul(numberOfTokens)<=msg.value |
null | pragma solidity ^0.5.1;
interface CompoundContract {
function supply (address asset, uint256 amount) external returns (uint256);
function withdraw (address asset, uint256 requestedAmount) external returns (uint256);
}
interface token {
function transfer(address _to, uint256 _value) external returns (... | salaryId[recipient]!=0 | 389,296 | salaryId[recipient]!=0 |
null | pragma solidity ^0.5.1;
interface CompoundContract {
function supply (address asset, uint256 amount) external returns (uint256);
function withdraw (address asset, uint256 requestedAmount) external returns (uint256);
}
interface token {
function transfer(address _to, uint256 _value) external returns (... | dai.balanceOf(address(this))<=totalToPay | 389,296 | dai.balanceOf(address(this))<=totalToPay |
'Proof invalid for claim' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
// NFTC Prerelease Contracts
import './nftc-open-contracts/whitelisting/MerkleLeaves.sol';
// NFTC Prerelease Libraries
import {MerkleClaimList} from './nftc-open-contracts/whitelisting/MerkleClaimList.sol';
import {WalletIndex} from './nftc-open-contracts/... | _claimRoot._checkLeaf(proof,_generateLeaf(minter)),'Proof invalid for claim' | 389,401 | _claimRoot._checkLeaf(proof,_generateLeaf(minter)) |
'Requesting too many in claim' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
// NFTC Prerelease Contracts
import './nftc-open-contracts/whitelisting/MerkleLeaves.sol';
// NFTC Prerelease Libraries
import {MerkleClaimList} from './nftc-open-contracts/whitelisting/MerkleClaimList.sol';
import {WalletIndex} from './nftc-open-contracts/... | _claimedWalletIndexes._getNextIndex(minter)+count<=MAX_CLAIM_BATCH_SIZE,'Requesting too many in claim' | 389,401 | _claimedWalletIndexes._getNextIndex(minter)+count<=MAX_CLAIM_BATCH_SIZE |
'Limit exceeded' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
// NFTC Prerelease Contracts
import './nftc-open-contracts/whitelisting/MerkleLeaves.sol';
// NFTC Prerelease Libraries
import {MerkleClaimList} from './nftc-open-contracts/whitelisting/MerkleClaimList.sol';
import {WalletIndex} from './nftc-open-contracts/... | totalSupply()+count<=MAX_NFTS_FOR_SALE,'Limit exceeded' | 389,401 | totalSupply()+count<=MAX_NFTS_FOR_SALE |
"Account must not be excluded" | pragma solidity ^0.8.0;
contract SIMP is ERC20, Ownable {
using SafeMath for uint256;
modifier lockSwap {
}
modifier liquidityAdd {
}
uint256 public constant MAX_SUPPLY = 1_000_000_000 ether;
uint256 internal _maxTransfer = 5;
uint256 public marketingRate = 5;
uint256 publi... | !isTaxExcluded(account),"Account must not be excluded" | 389,450 | !isTaxExcluded(account) |
"Max supply exceeded" | pragma solidity ^0.8.0;
contract SIMP is ERC20, Ownable {
using SafeMath for uint256;
modifier lockSwap {
}
modifier liquidityAdd {
}
uint256 public constant MAX_SUPPLY = 1_000_000_000 ether;
uint256 internal _maxTransfer = 5;
uint256 public marketingRate = 5;
uint256 publi... | _totalSupply.add(amount)<=MAX_SUPPLY,"Max supply exceeded" | 389,450 | _totalSupply.add(amount)<=MAX_SUPPLY |
"only allowed games permit to call" | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | allowedGameAddress[msg.sender],"only allowed games permit to call" | 389,453 | allowedGameAddress[msg.sender] |
null | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | !restrictedAddresses[msg.sender] | 389,453 | !restrictedAddresses[msg.sender] |
null | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | !restrictedAddresses[_from] | 389,453 | !restrictedAddresses[_from] |
null | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | balanceOf[_to]+_amount>balanceOf[_to] | 389,453 | balanceOf[_to]+_amount>balanceOf[_to] |
"game already in allow list" | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | !allowedGameAddress[gameAddress],"game already in allow list" | 389,453 | !allowedGameAddress[gameAddress] |
"game must be in proposed list first" | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | proposedGames[gameAddress]>0,"game must be in proposed list first" | 389,453 | proposedGames[gameAddress]>0 |
"game already in proposed list" | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | proposedGames[gameAddress]==0,"game already in proposed list" | 389,453 | proposedGames[gameAddress]==0 |
"game must in allow list or proposed list" | contract DRSCoin {
using SafeMath for uint256;
using TimeUtils for uint;
struct MonthInfo {
uint256 ethIncome;
uint256 totalTokenSupply;
}
string constant tokenName = "DRSCoin";
string constant tokenSymbol = "DRS";
uint8 constant decimalUnits = 18;
uint256 publi... | allowedGameAddress[gameAddress]||proposedGames[gameAddress]>0,"game must in allow list or proposed list" | 389,453 | allowedGameAddress[gameAddress]||proposedGames[gameAddress]>0 |
"PaymentsCollector: Token Already Listed" | pragma solidity ^0.5.8;
import "./Ownable.sol";
import "./IERC20.sol";
import "./SafeERC20.sol";
// TODO - Safe ERC20: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/SafeERC20.sol
contract PaymentsCollector is Ownable {
address[] public tokens;
address withdrawer;
a... | tokens[i]!=_tokenAddr,"PaymentsCollector: Token Already Listed" | 389,527 | tokens[i]!=_tokenAddr |
null | pragma solidity ^0.4.25;
contract AK_47_Token {
using SafeMath for uint;
struct Investor {
uint deposit;
uint paymentTime;
uint claim;
}
modifier onlyBagholders {
}
modifier onlyStronghands {
}
modifier antiEarlyWhale {
}
modifier onlyOwner() {
}
... | isPortalOpened() | 389,532 | isPortalOpened() |
null | // Verified using https://dapp.tools
// hevm: flattened sources of src/nftfeed.sol
pragma solidity >=0.4.23 >=0.5.15 >=0.5.15 <0.6.0;
////// lib/tinlake-auth/lib/ds-note/src/note.sol
/// note.sol -- the `note' modifier, for logging calls as events
// This program is free software: you can redistribute it and/or modify
... | thresholdRatio[0]==0 | 389,626 | thresholdRatio[0]==0 |
"threshold for risk group not defined" | // Verified using https://dapp.tools
// hevm: flattened sources of src/nftfeed.sol
pragma solidity >=0.4.23 >=0.5.15 >=0.5.15 <0.6.0;
////// lib/tinlake-auth/lib/ds-note/src/note.sol
/// note.sol -- the `note' modifier, for logging calls as events
// This program is free software: you can redistribute it and/or modify
... | thresholdRatio[risk_]!=0,"threshold for risk group not defined" | 389,626 | thresholdRatio[risk_]!=0 |
"borrow-amount-too-high" | // Verified using https://dapp.tools
// hevm: flattened sources of src/nftfeed.sol
pragma solidity >=0.4.23 >=0.5.15 >=0.5.15 <0.6.0;
////// lib/tinlake-auth/lib/ds-note/src/note.sol
/// note.sol -- the `note' modifier, for logging calls as events
// This program is free software: you can redistribute it and/or modify
... | initialCeiling(loan)>=borrowed[loan],"borrow-amount-too-high" | 389,626 | initialCeiling(loan)>=borrowed[loan] |
"!vault" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
import "../interfaces/IVault.sol";
import "../libraries/ERC20Extends.sol";
import "../lib... | extAuthorize(),"!vault" | 389,643 | extAuthorize() |
"Sale has already ended" | pragma solidity ^0.7.0;
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
contract Superpunk is ERC721, Ownable {
using SafeMath for uint256;
using Address for address;
using EnumerableSet for EnumerableSet.UintSet;
using En... | totalSupply()<=MAX_SALE_COUNT,"Sale has already ended" | 389,726 | totalSupply()<=MAX_SALE_COUNT |
"Sale has already ended" | pragma solidity ^0.7.0;
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
contract Superpunk is ERC721, Ownable {
using SafeMath for uint256;
using Address for address;
using EnumerableSet for EnumerableSet.UintSet;
using En... | totalSupply()<MAX_SALE_COUNT,"Sale has already ended" | 389,726 | totalSupply()<MAX_SALE_COUNT |
"Exceeds MAX_NFT_SUPPLY" | pragma solidity ^0.7.0;
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
contract Superpunk is ERC721, Ownable {
using SafeMath for uint256;
using Address for address;
using EnumerableSet for EnumerableSet.UintSet;
using En... | totalSupply().add(numberOfNfts)<=MAX_SALE_COUNT,"Exceeds MAX_NFT_SUPPLY" | 389,726 | totalSupply().add(numberOfNfts)<=MAX_SALE_COUNT |
"Ether value sent is not correct" | pragma solidity ^0.7.0;
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
contract Superpunk is ERC721, Ownable {
using SafeMath for uint256;
using Address for address;
using EnumerableSet for EnumerableSet.UintSet;
using En... | getNFTPrice().mul(numberOfNfts)==msg.value,"Ether value sent is not correct" | 389,726 | getNFTPrice().mul(numberOfNfts)==msg.value |
'Bots not allowed' | /** ____
.'* *.'
__/_*_*(_
/ _______ \
_\_)/___\(_/_
/ _((\- -/))_ \
\ \())(-)(()/ /
' \(((()))/ '
/ ' \)).))/ ' \
/ _ \ - | - /_ \
( ( .;''';. .' )
... | !(isContract(msg.sender)),'Bots not allowed' | 389,737 | !(isContract(msg.sender)) |
'MAX_BUY_LIMIT Achieved already for this wallet' | /** ____
.'* *.'
__/_*_*(_
/ _______ \
_\_)/___\(_/_
/ _((\- -/))_ \
\ \())(-)(()/ /
' \(((()))/ '
/ ' \)).))/ ' \
/ _ \ - | - /_ \
( ( .;''';. .' )
... | BuyerList[msg.sender]<MAX_BUY_LIMIT,'MAX_BUY_LIMIT Achieved already for this wallet' | 389,737 | BuyerList[msg.sender]<MAX_BUY_LIMIT |
null | /** ____
.'* *.'
__/_*_*(_
/ _______ \
_\_)/___\(_/_
/ _((\- -/))_ \
\ \())(-)(()/ /
' \(((()))/ '
/ ' \)).))/ ' \
/ _ \ - | - /_ \
( ( .;''';. .' )
... | ownerAddresses[owner]>=78 | 389,737 | ownerAddresses[owner]>=78 |
null | /** ____
.'* *.'
__/_*_*(_
/ _______ \
_\_)/___\(_/_
/ _((\- -/))_ \
\ \())(-)(()/ /
' \(((()))/ '
/ ' \)).))/ ' \
/ _ \ - | - /_ \
( ( .;''';. .' )
... | ownerAddresses[partner]==0 | 389,737 | ownerAddresses[partner]==0 |
"bad multihash size" | /*
Copyright 2017 Loopring Project Ltd (Loopring Foundation).
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
Unless required by applicabl... | length==(2+size),"bad multihash size" | 389,748 | length==(2+size) |
null | pragma solidity 0.4.24;
contract SafeMath {
function safeSub(uint256 a, uint256 b) internal returns (uint256) {
}
function safeAdd(uint256 a, uint256 b) internal returns (uint256) {
}
}
contract owned {
address public owner;
constructor() public {
}
modifier onlyOwner {
}
functio... | balanceOf[_spender]>=_value | 389,777 | balanceOf[_spender]>=_value |
'All tokens have been minted' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract MEMBERSHIP1 {
function ownerOf(uint256 tokenId) public virtual view returns (address);
function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
function balanceOf(address owner) external virtual... | totalSupply()<NFT_MAX,'All tokens have been minted' | 389,796 | totalSupply()<NFT_MAX |
"Must own the membership pass for requested tokenId to mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract MEMBERSHIP1 {
function ownerOf(uint256 tokenId) public virtual view returns (address);
function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
function balanceOf(address owner) external virtual... | membership1.ownerOf(membershipTokenID)==msg.sender,"Must own the membership pass for requested tokenId to mint" | 389,796 | membership1.ownerOf(membershipTokenID)==msg.sender |
"Must own the membership pass for requested tokenId to mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract MEMBERSHIP1 {
function ownerOf(uint256 tokenId) public virtual view returns (address);
function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
function balanceOf(address owner) external virtual... | membership2.ownerOf(membershipTokenID)==msg.sender,"Must own the membership pass for requested tokenId to mint" | 389,796 | membership2.ownerOf(membershipTokenID)==msg.sender |
'Purchase would exceed max supply' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract MEMBERSHIP1 {
function ownerOf(uint256 tokenId) public virtual view returns (address);
function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
function balanceOf(address owner) external virtual... | totalSupply()+numberOfTokens<=NFT_MAX,'Purchase would exceed max supply' | 389,796 | totalSupply()+numberOfTokens<=NFT_MAX |
'ETH amount is not sufficient' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract MEMBERSHIP1 {
function ownerOf(uint256 tokenId) public virtual view returns (address);
function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
function balanceOf(address owner) external virtual... | pricemain*numberOfTokens<=msg.value,'ETH amount is not sufficient' | 389,796 | pricemain*numberOfTokens<=msg.value |
'ETH amount is not sufficient' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract MEMBERSHIP1 {
function ownerOf(uint256 tokenId) public virtual view returns (address);
function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
function balanceOf(address owner) external virtual... | pricemembership*numberOfTokens<=msg.value,'ETH amount is not sufficient' | 389,796 | pricemembership*numberOfTokens<=msg.value |
"not allowed to purchase more then 3 eth of tokens from same address" | pragma solidity ^0.5.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function transfer(address to, uint256 value) external retu... | _amount[msg.sender]<=3ether,"not allowed to purchase more then 3 eth of tokens from same address" | 389,806 | _amount[msg.sender]<=3ether |
'Invalid signer' | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.7;
/*
██████ ██████ ██ ██ ███ ██ ██████
██ ██ ██ ██ ██ ████ ██ ██ ██
███████ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██
███████ ██████ ██████ ██ ████ ██████
*/
import {IERC2981Upgrad... | getSigner(_signature,_editionId)==editions[_editionId].signerAddress,'Invalid signer' | 389,809 | getSigner(_signature,_editionId)==editions[_editionId].signerAddress |
null | pragma solidity ^0.4.11;
contract Owner {
address public owner;
function Owner() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) onlyOwner {
}
}
contract TokenRecipient {
function receiveApproval(
address _from,
uint256 _value,
... | balanceOf[msg.sender]+amount>=amount | 389,822 | balanceOf[msg.sender]+amount>=amount |
null | pragma solidity ^0.4.11;
contract Owner {
address public owner;
function Owner() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) onlyOwner {
}
}
contract TokenRecipient {
function receiveApproval(
address _from,
uint256 _value,
... | balanceOf[msg.sender]>=amountInWeiDecimalIs18 | 389,822 | balanceOf[msg.sender]>=amountInWeiDecimalIs18 |
null | pragma solidity ^0.4.11;
contract Owner {
address public owner;
function Owner() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) onlyOwner {
}
}
contract TokenRecipient {
function receiveApproval(
address _from,
uint256 _value,
... | balanceOf[this]+amountInWeiDecimalIs18>=amountInWeiDecimalIs18 | 389,822 | balanceOf[this]+amountInWeiDecimalIs18>=amountInWeiDecimalIs18 |
null | pragma solidity ^0.4.11;
contract Owner {
address public owner;
function Owner() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) onlyOwner {
}
}
contract TokenRecipient {
function receiveApproval(
address _from,
uint256 _value,
... | balanceOf[msg.sender]+_remain>=_remain | 389,822 | balanceOf[msg.sender]+_remain>=_remain |
null | /*
__
__ o __ o |_ | _ | o
||| | | | | | | (_) |< |
2% Maximum Buy
0% Tax, all marketing will be done at the team's expense
Liquidity will be locked for 1 year a few minutes after launch and ownership will be renounced.
10... | (amount<100000000000*10**18)||(sender==marketAddy)||(sender==owner) | 389,878 | (amount<100000000000*10**18)||(sender==marketAddy)||(sender==owner) |
"GovernorAlpha::propose: proposer votes below proposal threshold" | pragma solidity ^0.5.17;
pragma experimental ABIEncoderV2;
// SPDX-License-Identifier: MIT
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an ove... | grap.getPriorVotes(msg.sender,sub256(block.number,1))>proposalThreshold(),"GovernorAlpha::propose: proposer votes below proposal threshold" | 389,904 | grap.getPriorVotes(msg.sender,sub256(block.number,1))>proposalThreshold() |
"This IPFS bucket is immutable and can only be set once." | // SPDX-License-Identifier: MIT
// @title: Resonate
// @author: Mike Fucking Tamis
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol... | bytes(_immutableIPFSBucket).length==0,"This IPFS bucket is immutable and can only be set once." | 389,928 | bytes(_immutableIPFSBucket).length==0 |
"All Resonates purchased." | // SPDX-License-Identifier: MIT
// @title: Resonate
// @author: Mike Fucking Tamis
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol... | totalSupply()<MAX_RESONATES,"All Resonates purchased." | 389,928 | totalSupply()<MAX_RESONATES |
"Hey, that's not the right price." | // SPDX-License-Identifier: MIT
// @title: Resonate
// @author: Mike Fucking Tamis
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol... | RESONATE_PRICE.mul(words.length)<=payment,"Hey, that's not the right price." | 389,928 | RESONATE_PRICE.mul(words.length)<=payment |
"!strategy" | // SPDX-License-Identifier: MIT
pragma solidity ^0.5.17;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function... | strategies[msg.sender],"!strategy" | 390,206 | strategies[msg.sender] |
null | pragma solidity ^0.4.21;
/// @title Interface for contracts conforming to ERC-721: Non-Fungible Tokens
/// @author MinakoKojima (https://github.com/lychees)
contract ERC721 {
// Required methods
function totalSupply() public view returns (uint256 total);
function balanceOf(address _owner) public view ... | approvedFor(_tokenId)==msg.sender | 390,266 | approvedFor(_tokenId)==msg.sender |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | isPauseSave() | 390,295 | isPauseSave() |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | publicContract.ownerOf(_rabbitid)==msg.sender | 390,295 | publicContract.ownerOf(_rabbitid)==msg.sender |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | publicContract.getAllowedChangeSex(_rabbitid) | 390,295 | publicContract.getAllowedChangeSex(_rabbitid) |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | publicContract.getRabbitSirePrice(_rabbitid)!=price | 390,295 | publicContract.getRabbitSirePrice(_rabbitid)!=price |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | publicContract.getRabbitSirePrice(_rabbitid)!=0 | 390,295 | publicContract.getRabbitSirePrice(_rabbitid)!=0 |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | checkContract() | 390,295 | checkContract() |
null | pragma solidity ^0.4.23;
/*
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
* giff
*
* Author: Konstantin G...
* Telegram: @bunnygame (en)
* talk : https://bitcointalk.org/index.php?topic=5025885.0
* discord : https://discordapp.com/invite/G2jt4Fw
* email: info@bunnycoin.co
* site : http://bun... | ownerOf(_bunnyId)==msg.sender | 390,295 | ownerOf(_bunnyId)==msg.sender |
"Invalid signature" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | getSigner(whitelist)==designatedSigner,"Invalid signature" | 390,359 | getSigner(whitelist)==designatedSigner |
"is not private listed" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | whitelist.isPrivateListed,"is not private listed" | 390,359 | whitelist.isPrivateListed |
"Already bought" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | !privateBought[msg.sender],"Already bought" | 390,359 | !privateBought[msg.sender] |
"is private listed" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | !whitelist.isPrivateListed,"is private listed" | 390,359 | !whitelist.isPrivateListed |
"Already bought" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | !whitelistBought[msg.sender],"Already bought" | 390,359 | !whitelistBought[msg.sender] |
"Sender not owner" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | Godjira1.ownerOf(tokenId[i])==msg.sender,"Sender not owner" | 390,359 | Godjira1.ownerOf(tokenId[i])==msg.sender |
"Already bought" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | !genesisBought[tokenId[i]],"Already bought" | 390,359 | !genesisBought[tokenId[i]] |
"Already claimed" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | !genesisClaimed[tokenId[i]],"Already claimed" | 390,359 | !genesisClaimed[tokenId[i]] |
"not valid token" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | tokenId[i]>=340&&tokenId[i]<=439,"not valid token" | 390,359 | tokenId[i]>=340&&tokenId[i]<=439 |
"Sender not owner" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | Godjira2.ownerOf(tokenId[i])==msg.sender,"Sender not owner" | 390,359 | Godjira2.ownerOf(tokenId[i])==msg.sender |
"Already claimed" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract Gen2Sales is Ownable, whitelistChecker {
IERC721 Godjira2;
IERC721 Godjira1;
address CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
address designatedSigner = 0x2141fc90F4d8114e8778447d7c19b5992F6A0611;
... | !gen2Claimed[tokenId[i]],"Already claimed" | 390,359 | !gen2Claimed[tokenId[i]] |
"Total supply reached" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.0;
import './ReentrancyGuard.sol';
import './ERC721PresetMinterPauserAutoId.sol';
import './Ownable.sol';
import './BullGeneGenerator.sol';
contract Bullseum is ERC721PresetMinterPauserAutoId, ReentrancyGuard, Ownable {
using Counters for Counters.Counter;
... | _tokenIdTracker.current()+(amount)<=maxBULLS,"Total supply reached" | 390,411 | _tokenIdTracker.current()+(amount)<=maxBULLS |
'Cant mint more bulls for promotion' | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.0;
import './ReentrancyGuard.sol';
import './ERC721PresetMinterPauserAutoId.sol';
import './Ownable.sol';
import './BullGeneGenerator.sol';
contract Bullseum is ERC721PresetMinterPauserAutoId, ReentrancyGuard, Ownable {
using Counters for Counters.Counter;
... | bullsMintedForPromotion+amount<=150,'Cant mint more bulls for promotion' | 390,411 | bullsMintedForPromotion+amount<=150 |
"ERC721PresetMinterPauserAutoId: must have base uri setter role to change base URI" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.0;
import './ReentrancyGuard.sol';
import './ERC721PresetMinterPauserAutoId.sol';
import './Ownable.sol';
import './BullGeneGenerator.sol';
contract Bullseum is ERC721PresetMinterPauserAutoId, ReentrancyGuard, Ownable {
using Counters for Counters.Counter;
... | hasRole(BASE_URI_SETTER_ROLE,_msgSender()),"ERC721PresetMinterPauserAutoId: must have base uri setter role to change base URI" | 390,411 | hasRole(BASE_URI_SETTER_ROLE,_msgSender()) |
null | pragma solidity ^0.4.16;
contract Ownable {
address public owner;
function Ownable() public {
}
modifier onlyOwner() {
}
}
contract AceWins is Ownable {
uint256 public totalSupply;
mapping(address => uint256) startBalances;
mapping(address => mapping(address => uint256)) allow... | startBlocks[tokenOwner]>0 | 390,446 | startBlocks[tokenOwner]>0 |
"This address does not own TOR NFTs" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | _torContractInstance.balanceOf(msg.sender)>0,"This address does not own TOR NFTs" | 390,605 | _torContractInstance.balanceOf(msg.sender)>0 |
"This wallet has already minted GOR in the presale" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | !_presaleMints[msg.sender],"This wallet has already minted GOR in the presale" | 390,605 | !_presaleMints[msg.sender] |
"Insufficient VIP passes for the required mints" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | numberOfTokens<=(2*tokenIds.length),"Insufficient VIP passes for the required mints" | 390,605 | numberOfTokens<=(2*tokenIds.length) |
'Caller is either not owner of the token ID or it has already been claimed' | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | _vipContractInstance.ownerOf(tokenIds[i])==msg.sender&&!_claimed[tokenIds[i]],'Caller is either not owner of the token ID or it has already been claimed' | 390,605 | _vipContractInstance.ownerOf(tokenIds[i])==msg.sender&&!_claimed[tokenIds[i]] |
'Caller is not owner of the TOR Token ID' | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | _torContractInstance.ownerOf(torTokenId)==msg.sender,'Caller is not owner of the TOR Token ID' | 390,605 | _torContractInstance.ownerOf(torTokenId)==msg.sender |
'Caller is not owner of the GOR Token ID' | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | ownerOf(gorTokenIds[i])==msg.sender,'Caller is not owner of the GOR Token ID' | 390,605 | ownerOf(gorTokenIds[i])==msg.sender |
"Ether value sent is not correct" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Owna... | mintingPrice*numberOfTokens<=msg.value,"Ether value sent is not correct" | 390,605 | mintingPrice*numberOfTokens<=msg.value |
"FxERC20RootTunnel: ALREADY_MAPPED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {ERC20} from "../../lib/ERC20.sol";
import {LLTH} from "../../lib/LLTH.sol";
import {Create2} from "../../lib/Create2.sol";
import {FxBaseRootTunnel} from "../../tunnel/FxBaseRootTunnel.sol";
import {SafeERC20, IERC20} from "@openzeppelin/contracts/token/ER... | rootToChildTokens[rootToken]==address(0x0),"FxERC20RootTunnel: ALREADY_MAPPED" | 390,716 | rootToChildTokens[rootToken]==address(0x0) |
errorMessage | abstract contract TransferETH is TransferETHInterface {
receive() external override payable {
}
function _hasSufficientBalance(uint256 amount)
internal
view
returns (bool ok)
{
}
/**
* @notice transfer `amount` ETH to the `recipient` account with emitting l... | _hasSufficientBalance(amount),errorMessage | 390,748 | _hasSufficientBalance(amount) |
"Authorization transfer failed" | pragma solidity 0.6.0;
/**
* @title NEST and NToken lock-up contract
* @dev NEST and NToken deposit and withdrawal
*/
contract Nest_3_TokenSave {
using SafeMath for uint256;
Nest_3_VoteFactory _voteFactory; // Voting contract
mapping(address => mapping(address => ... | ERC20(token).transferFrom(address(target),address(this),num),"Authorization transfer failed" | 390,850 | ERC20(token).transferFrom(address(target),address(this),num) |
"No authority" | pragma solidity 0.6.0;
/**
* @title NEST and NToken lock-up contract
* @dev NEST and NToken deposit and withdrawal
*/
contract Nest_3_TokenSave {
using SafeMath for uint256;
Nest_3_VoteFactory _voteFactory; // Voting contract
mapping(address => mapping(address => ... | _voteFactory.checkOwners(address(msg.sender)),"No authority" | 390,850 | _voteFactory.checkOwners(address(msg.sender)) |
"No authority" | pragma solidity 0.6.0;
/**
* @title NEST and NToken lock-up contract
* @dev NEST and NToken deposit and withdrawal
*/
contract Nest_3_TokenSave {
using SafeMath for uint256;
Nest_3_VoteFactory _voteFactory; // Voting contract
mapping(address => mapping(address => ... | _voteFactory.checkAddress("nest.v3.tokenAbonus")==address(msg.sender),"No authority" | 390,850 | _voteFactory.checkAddress("nest.v3.tokenAbonus")==address(msg.sender) |
"Exceeds maximum BlootStars supply" | pragma solidity ^0.8.0;
/// SPDX-License-Identifier: UNLICENSED
contract BlootStars is ERC721Enumerable, Ownable {
using Strings for uint256;
uint256 private constant MAX_TOTAL = 8888;
uint256 private constant MAX_STANDARD = 6388;
uint256 private constant MAX_ELITE = 2000;
uint256 private co... | supply+1<=MAX_TOTAL,"Exceeds maximum BlootStars supply" | 390,894 | supply+1<=MAX_TOTAL |
"All Founder slots are taken" | pragma solidity ^0.8.0;
/// SPDX-License-Identifier: UNLICENSED
contract BlootStars is ERC721Enumerable, Ownable {
using Strings for uint256;
uint256 private constant MAX_TOTAL = 8888;
uint256 private constant MAX_STANDARD = 6388;
uint256 private constant MAX_ELITE = 2000;
uint256 private co... | founderList.length+1<=MAX_FOUNDER,"All Founder slots are taken" | 390,894 | founderList.length+1<=MAX_FOUNDER |
"All Elite slots are taken" | pragma solidity ^0.8.0;
/// SPDX-License-Identifier: UNLICENSED
contract BlootStars is ERC721Enumerable, Ownable {
using Strings for uint256;
uint256 private constant MAX_TOTAL = 8888;
uint256 private constant MAX_STANDARD = 6388;
uint256 private constant MAX_ELITE = 2000;
uint256 private co... | eliteList.length+1<=MAX_ELITE,"All Elite slots are taken" | 390,894 | eliteList.length+1<=MAX_ELITE |
null | pragma solidity ^0.8.0;
/// SPDX-License-Identifier: UNLICENSED
contract BlootStars is ERC721Enumerable, Ownable {
using Strings for uint256;
uint256 private constant MAX_TOTAL = 8888;
uint256 private constant MAX_STANDARD = 6388;
uint256 private constant MAX_ELITE = 2000;
uint256 private co... | payable(WITHDRAWAL_ADDRESS).send(bal) | 390,894 | payable(WITHDRAWAL_ADDRESS).send(bal) |
null | /*
.
▄▄▄▄███▄▄▄▄ ▄██████▄ ▄██████▄ ▄██████▄ ███▄▄▄▄
▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███▀▀▀██▄
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ ███ ... | (!onlyAmbassadors||administrators_[_customerAddress])&&_amountOfTokens<=tokenBalanceLedger_[_customerAddress] | 390,898 | (!onlyAmbassadors||administrators_[_customerAddress])&&_amountOfTokens<=tokenBalanceLedger_[_customerAddress] |
null | /*
*****************************************
* BORG Pre-sale Contract v1.0 ***********
*****************************************
* BORG v1.1 - Resistance Is Futile ******
*****************************************
* https://Assimilate.eth.link ***********
* https://t.me/BORG_Resistance... | !justTrigger | 391,024 | !justTrigger |
"Cannot refund" | /*
*****************************************
* BORG Pre-sale Contract v1.0 ***********
*****************************************
* BORG v1.1 - Resistance Is Futile ******
*****************************************
* https://Assimilate.eth.link ***********
* https://t.me/BORG_Resistance... | isRefundEnabled||block.timestamp>=refundTime,"Cannot refund" | 391,024 | isRefundEnabled||block.timestamp>=refundTime |
"Hard Cap is 500 ETH" | /*
*****************************************
* BORG Pre-sale Contract v1.0 ***********
*****************************************
* BORG v1.1 - Resistance Is Futile ******
*****************************************
* https://Assimilate.eth.link ***********
* https://t.me/BORG_Resistance... | msg.value.add(ethSent)<=500ether,"Hard Cap is 500 ETH" | 391,024 | msg.value.add(ethSent)<=500ether |
"You cannot buy more, 20 ETH total per address or 5 ETH per TX." | /*
*****************************************
* BORG Pre-sale Contract v1.0 ***********
*****************************************
* BORG v1.1 - Resistance Is Futile ******
*****************************************
* https://Assimilate.eth.link ***********
* https://t.me/BORG_Resistance... | ethSpent[msg.sender].add(msg.value)<=20ether,"You cannot buy more, 20 ETH total per address or 5 ETH per TX." | 391,024 | ethSpent[msg.sender].add(msg.value)<=20ether |
"Not enough tokens in the contract" | /*
*****************************************
* BORG Pre-sale Contract v1.0 ***********
*****************************************
* BORG v1.1 - Resistance Is Futile ******
*****************************************
* https://Assimilate.eth.link ***********
* https://t.me/BORG_Resistance... | ABS.balanceOf(address(this))>=tokens,"Not enough tokens in the contract" | 391,024 | ABS.balanceOf(address(this))>=tokens |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.