source_code stringlengths 52 864k | success stringclasses 1
value |
|---|---|
/**
*Submitted for verification at Etherscan.io on 2021-05-24
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() intern... | True |
/**
*Submitted for verification at Etherscan.io on 2021-04-05
*/
// Sources flattened with hardhat v2.1.2 https://hardhat.org
// File @openzeppelin/contracts/math/[email protected]
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added... | True |
/**
*Submitted for verification at Etherscan.io on 2022-01-22
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = ... | True |
/**
*Submitted for verification at Etherscan.io on 2020-12-13
*/
/**
* ValueBase - new token with rebase function.
*
* countdown to first rebase: https://cutt.ly/nhPgbfn
* telegram: https://t.me/valuebasefinance
* website: https://valuebase.finance
* tweeter: https://twitter.com/ValuebaseF
* email: [email... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-16
*/
pragma solidity 0.6.6;
// ----------------------------------------------------------------------------
// 'SPMC' token contract
//
// Deployed to : 0x018091F654a320c04c17300904D0Ef137367f4E3
// Symbol : SPMC
// Name : Spider-ManClub
// Tota... | True |
/**
*Submitted for verification at Etherscan.io on 2022-05-03
*/
// https://libelon.world/
// https://t.me/libelon
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interf... | True |
// SPDX-License-Identifier: unlicensed
pragma solidity ^0.6.12;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure re... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-30
*/
pragma solidity ^0.6.12;
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are gen... | True |
/**
*Submitted for verification at Etherscan.io on 2022-04-11
*/
// SPDX-License-Identifier: Unlicensed
/**
#HQxpress (CUBED)
3% fee auto add to the Liquidity pool
2% Distribute to charity wallet
Total supply = 1,000,000,000,000
decimals 9
*/
pragma solidity ^0.8.9;
/**
* @dev Interface of the ERC2... | True |
/**
*Submitted for verification at Etherscan.io on 2021-02-23
*/
// File: contracts/interfaces/interestModelInterface.sol
pragma solidity 0.6.12;
interface interestModelInterface {
function getInterestAmount(address handlerDataStorageAddr, address payable userAddr, bool isView) external view returns (bool, uint256... | True |
pragma solidity ^0.4.23;
// File: contracts/ParsecReferralTracking.sol
contract ParsecReferralTracking {
mapping (address => address) public referrer;
event ReferrerUpdated(address indexed _referee, address indexed _referrer);
function _updateReferrerFor(address _referee, address _referrer) internal {
if ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-16
*/
// SPDX-License-Identifier: MIT
// Amended by HashLips
/**
!Disclaimer!
These contracts have been used to create tutorials,
and was created for the purpose to teach people
how to create smart contracts on the blockchain.
please revi... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-31
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, th... | True |
/**
*Submitted for verification at Etherscan.io on 2021-04-26
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
... | True |
pragma solidity ^0.4.23;
contract IMDEX {
bytes32 public standard;
bytes32 public name;
bytes32 public symbol;
uint256 public totalSupply;
uint8 public decimals;
bool public allowTransactions;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-15
*/
// SPDX-License-Identifier: GPL-3.0-or-later
// Sources flattened with hardhat v2.6.1 https://hardhat.org
// File @openzeppelin/contracts/token/ERC20/[email protected]
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma so... | True |
/**
*Submitted for verification at Etherscan.io on 2021-07-30
*/
pragma solidity ^0.4.24;
contract TransferManager {
function verifyTransfer(address _from, address _to, uint256 _amount) public view returns(bool) {
if (_from == address(0x89EB60E0f1d88aE71e8c0416c4F72734D6133252)) {
if (_to == ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-07-24
*/
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementer... | True |
pragma solidity ^0.5.16;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address account) external view returns (uint);
function transfer(address recipient, uint amount) external returns (bool);
function allowance(address owner, address spender) external view r... | True |
/**
*Submitted for verification at Etherscan.io on 2022-04-14
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Sample token contract
//
// Symbol : PHC
// Name : PHC Token
// Total supply : 10000000000
// Decimals : 2
// Owner Accoun... | True |
/**
*Submitted for verification at Etherscan.io on 2021-10-05
*/
pragma solidity ^0.8.0;
contract DegenDataAccess {
address private owner;
uint256 public registrationFee;
mapping(address => bool) public isUserRegistered;
constructor(){
owner = msg.sender;
registrationF... | True |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// Owned - Ownership model with 2 phase transfers
// Enuma Blockchain Platform
//
// Copyright (c) 2017 Enuma Technologies.
// https://www.enuma.io/
// --------------------------------------------------------------... | True |
/**
*Submitted for verification at Etherscan.io on 2021-08-11
*/
/*
___ _ ___ _
| .\ ___ _ _ <_> ___ | __><_>._ _ ___ ._ _ ___ ___
| _// ._>| '_>| ||___|| _> | || ' |<_> || ' |/ | '/ ._>
|_| \___.|_| |_| |_| |_||_|_|<___||_|_|\_|_.\___.
* P... | True |
pragma solidity ^0.4.21 ;
contract DENMARK_WINS {
mapping (address => uint256) public balanceOf;
string public name = " DENMARK_WINS " ;
string public symbol = " DENWI " ;
uint8 public decimals = 18 ;
uint256 public totalSupply = 1165947079929... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-02
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
// KEVIN DAO
... | True |
pragma solidity ^0.4.16;
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract PiBetaToken {
// Public variables of the token
string public name = "PiBeta Token";
string public symbol = "PBTK";
uint8 public decimals = 0;... | True |
pragma solidity 0.4.24;
pragma experimental "v0.5.0";
interface RTCoinInterface {
/** Functions - ERC20 */
function transfer(address _recipient, uint256 _amount) external returns (bool);
function transferFrom(address _owner, address _recipient, uint256 _amount) external returns (bool);
function... | True |
/**
*Submitted for verification at Etherscan.io on 2021-05-26
*/
// SPDX-License-Identifier: MIT
/*
* Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/
*
* NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed
* usi... | True |
pragma solidity ^0.4.13;
contract Token {
/* Public variables of the token */
string public name;
string public symbol;
uint8 public decimals;
uint256 public totalSupply;
/* This creates an array with all balances */
mapping (address => uint256) public balanceOf;
/* This generates a public event on t... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-28
*/
/*
Forged in Titanium metal
https://t.me/metalape
https://twitter.com/Metal_Ape_
https://www.metal-ape.com/
Caution-
Do not Snipe Buy the Token, 98% Buy Tax at launch for Bots
*/
// SPDX-License-Identifier: Unlicensed
p... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-27
*/
// SPDX-License-Identifier: Unlicense
/*
This is a space for break the fourth wall and explain the project
more plainly. No puzzles or anything here. :) If subgraphed and
mirrored to a website it should serve as a decent FAQ/explainer.
*/
... | True |
/**
*Submitted for verification at Etherscan.io on 2020-08-30
*/
pragma solidity ^0.5.17;
// Original file came from Compound: https://github.com/compound-finance/compound-protocol/blob/master/contracts/Timelock.sol
// Original audit: https://blog.openzeppelin.com/compound-finance-patch-audit/
// Overview:
// N... | True |
pragma solidity 0.4.24;
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }
contract owned {
address public owner;
constructor() public {
owner = msg.sender;
}
modifier onlyOwner {
require (msg.sender == owne... | True |
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.0;
/**
* @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 overflow raises a... | True |
// File: @openzeppelin/contracts/math/SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @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... | True |
/**
*Submitted for verification at Etherscan.io on 2022-02-04
*/
/**
$$\
\__|
$$$$$$\ $$$$$$$$\ $$\ $$\ $$$$$$\$$$$\ $$\
\____$$\ \____$$ |$$ | $$ |$$ _$$ _$$\ $$ |
$$$$$$$ | $$$$ _/ $$ | $$ |$$ / $$ / $$ |$$ |
$$... | True |
/**
*Submitted for verification at Etherscan.io on 2021-07-14
*/
/*
Welcome to Tokyo Revengers 🔥, a deflationary meme token with tokenomics to set it off to the MOON on the Ethereum network!
🔥 TOKYO REVENGERS 🔥
ℹ️ SYMBOL: TOKYO🔥
ℹ️ TOTAL SUPPLY: 10000000000 💴
In development is a Street F... | True |
/**
*Submitted for verification at Etherscan.io on 2021-09-20
*/
// SPDX-License-Identifier: No License
pragma solidity 0.6.12;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath{
function mul(uint256 a, uint256 b) internal pure returns (uint256)
{
... | True |
pragma solidity ^0.4.15;
/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="81f2f5e4e7e0efafe6e4eef3e6e4c1e2eeeff2e4eff2f8f2afefe4f5">[email protected]</a>>
cont... | True |
/*
https://www.skulldoge.com/
▄████
"█████
,█████▄ └█▄
... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-26
*/
/**
*/
// Telegram Portal: https://t.me/halloffameinu
pragma solidity ^0.8.10;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
*@dev Returns the amount of tokens o... | True |
/**
*Submitted for verification at Etherscan.io on 2021-05-19
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external... | True |
// ███████╗░█████╗░██████╗░██████╗░███████╗██████╗░░░░███████╗██╗
// ╚════██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗░░░██╔════╝██║
// ░░███╔═╝███████║██████╔╝██████╔╝█████╗░░██████╔╝░░░█████╗░░██║
// ██╔══╝░░██╔══██║██╔═══╝░██╔═══╝░██╔══╝░░██╔══██╗░░░██╔══╝░░██║
// ███████╗██║░░██║██║░░░░░██║░░░░░███████╗██║░░██║██╗██... | True |
/**
*Submitted for verification at Etherscan.io on 2020-03-21
*/
pragma solidity ^0.5.0;
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
//
// ----------------------------------------------------------------------------
contract ERC20Interface {
... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-25
*/
//SPDX-License-Identifier: ChaingeFinance
pragma solidity =0.6.6;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-21
*/
/**
Telegram: https://t.me/HempsterPredator
Website: HempsterPredator.com
📜 Tokenomics 📜
Marketing: 5%
Liquidity: 2%
Marijuana/Brand Awareness campaign : 2%
*/
pragma solidity ^0.8.10;
// SPDX-License-Identifier: Unlicensed
interface IERC20... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-07
*/
// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implement... | True |
pragma solidity ^0.4.13;
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant returns (uint256) {
// assert(b > 0); // Solidity automatically t... | True |
/**
*Submitted for verification at Etherscan.io on 2021-08-08
*/
// SPDX-License-Identifier: MIT
/*
* Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/
*
* NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed
* usi... | True |
/**
*Submitted for verification at Etherscan.io on 2021-11-12
*/
/**
*
*
*
*
*
$GN NGMI
💫 use the frenship magic to reach places u've never been (3, 3) 🧙
Another one of these acronym/word meta coins.
✅ 1 ETH Stealth Launch
❌ 0 Team Tokens
Total Supply: 1 TRILLION
4... | True |
/**
*Submitted for verification at Etherscan.io on 2022-02-25
*/
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.10;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified fr... | True |
/**
*Submitted for verification at Etherscan.io on 2021-07-29
*/
// hevm: flattened sources of src/VoteDelegateFactory.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity =0.6.12;
////// src/VoteDelegate.sol
// Copyright (C) 2021 Dai Foundation
// This program is free software: you can redistribute i... | True |
/**
*Submitted for verification at Etherscan.io on 2021-07-08
*/
pragma solidity 0.6.11;
//
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed i... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-16
*/
/*
They said 2021 is the worst of year
2022: HOLD MY BEER
While the Ukrainian are struggling to survive and fighting against the terrible aggressor Russian,
a powerful 7.3-magnitude earthquake struck off the coast of Fukushima in northern Japan.
The ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-08-25
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of toke... | True |
pragma solidity ^0.4.21;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
if (a == 0) {
return 0;
}
c = ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-05-25
*/
// SPDX-License-Identifier: MIT
/*
* Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/
*
* NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed
* usi... | True |
/**
*Submitted for verification at Etherscan.io on 2021-06-16
*/
// Sources flattened with hardhat v2.3.3 https://hardhat.org
// File @openzeppelin/contracts/utils/introspection/[email protected]
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in th... | True |
pragma solidity ^0.4.24;
/**
* title ERC20 interface
* see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20Token{
uint256 public totalSupply;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
function transfer(address to, uint256 v... | True |
/**
*Submitted for verification at Etherscan.io on 2021-03-17
*/
/**
*Submitted for verification at Etherscan.io on 2019-03-12
*/
pragma solidity ^0.5.4;
// File: node_modules/openzeppelin-solidity/contracts/token/ERC20/IERC20.sol
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/2... | True |
/**
*Submitted for verification at Etherscan.io on 2022-04-19
*/
/*
_.--.__ _.--.
./' `--.__ ..-' ,'
,/ |`-.__ .' ./
:, : `--_ __ .' ,... | True |
/**
*Submitted for verification at Etherscan.io on 2021-05-21
*/
pragma solidity ^0.6.6;
/**
* @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 ov... | True |
pragma solidity ^0.4.22;
contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract BitGuildToken {
// Public variables of the token
string public name = "BitGuild PLAT";
string public symbol = "PLAT";
uint8 public decimals =... | True |
/**
*Submitted for verification at Etherscan.io on 2021-05-28
*/
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While thes... | True |
/**
*Submitted for verification at Etherscan.io on 2021-06-05
*/
/**
*Submitted for verification at Etherscan.io on 2021-06-01
*/
pragma solidity ^0.6.6;
/**
*/
/... | True |
/**
*Submitted for verification at Etherscan.io on 2021-06-05
*/
// SPDX-License-Identifier: MIT
/*
* Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/
*
* NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed
* usi... | True |
pragma solidity ^0.4.8;
contract ERC20Interface {
function totalSupply() public constant returns (uint256 supply);
function balance() public constant returns (uint256);
function balanceOf(address _owner) public constant returns (uint256);
function transfer(address _to, uint256 _value) public returns (b... | True |
/**
*Submitted for verification at Etherscan.io on 2022-01-01
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implemente... | True |
/**
*Submitted for verification at Etherscan.io on 2021-06-08
*/
// Shibutt Inu (SHIBUTT🍑)
// The THICCC boy is a good boy! Shibutt Inu is a new
// DeFi protocol that combines the memes of DOGE with
// that THICCCness you love. This is a community meme
// token with the best features:
//Limit Buy (ON)
//Cooldown ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-22
*/
/**
* SPDX-License-Identifier: Unlicensed
* */
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply()... | True |
/**
*Submitted for verification at Etherscan.io on 2021-04-05
*/
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
interface ChainLinkInterface {
function latestAnswer() external view returns (int256);
function decimals() external view returns (uint256);
}
contract Basic {
ChainLinkInterface eth... | True |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'NEX'token contract
//
// Deployed to : 0xe1CBDdfD00fA7b51B162473257c700284a6A7d20
// Symbol : NEXTAC
// Name : NEX
// Total supply: 500000000000000000000000000
// Decimals : 18
//
//
//
/... | True |
/**
*Submitted for verification at Etherscan.io on 2022-03-28
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipi... | True |
/**
*Submitted for verification at Etherscan.io on 2021-09-27
*/
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.2;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external ... | True |
pragma solidity ^0.4.21;
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract HEAL {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
uint256 public totalSupply;... | True |
/**
*Submitted for verification at Etherscan.io on 2021-06-05
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, the... | True |
pragma solidity ^0.4.22;
contract EthMashTower {
address public owner;
mapping (address => uint) public withdrawals;
uint round;
uint registered;
mapping (uint => address[15]) participants;
event Log(address indexed user, uint action, uint price);
constructor() public {
owner = ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-10-19
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.4.24;
contract IMainToken{
function transfer(address, uint256) public pure returns (bool);
function transferFrom(address, address, uint256) public pure returns (bool);
}
// ---------------... | True |
pragma solidity ^0.4.21;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity a... | True |
pragma solidity ^0.4.18;
// <ORACLIZE_API>
/*
Copyright (c) 2015-2016 Oraclize SRL
Copyright (c) 2016 Oraclize LTD
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 w... | True |
/**
*Submitted for verification at Etherscan.io on 2022-01-13
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers... | True |
/**
*Submitted for verification at Etherscan.io on 2021-08-22
*/
/**
*Submitted for verification at Etherscan.io on 2021-08-19
*/
/**
*
* https://t.me/cellinueth
*
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virtual returns (a... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-14
*/
// File: @openzeppelin/contracts/GSN/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are gen... | True |
pragma solidity ^0.4.18;
/*
so much wow, free moniez
*/
contract EthPyramid {
// scaleFactor is used to convert Ether into tokens and vice-versa: they're of different
// orders of magnitude, hence the need to bridge between the two.
uint256 constant scaleFactor = 0x10000000000000000; // 2^64
// CRR = 50... | True |
/**
*Submitted for verification at Etherscan.io on 2021-12-07
*/
// SPDX-License-Identifier: AGPL-3.0-or-later // hevm: flattened sources of contracts/CollateralLocker.sol
pragma solidity =0.6.11 >=0.6.0 <0.8.0 >=0.6.2 <0.8.0;
////// lib/openzeppelin-contracts/contracts/math/SafeMath.sol
/* pragma solidity >=0.6.0 ... | True |
/**
*Submitted for verification at Etherscan.io on 2021-09-25
*/
/**
https://neoninu.com
https://t.me/neoninutoken
https://twitter.com/neoninutoken
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address paya... | True |
pragma solidity 0.4.24;
library SafeMath
{
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws wh... | True |
/**
*Submitted for verification at Etherscan.io on 2021-07-06
*/
pragma solidity ^0.6.6;
/**
* @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 ov... | True |
/**
*Submitted for verification at Etherscan.io on 2021-09-23
*/
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementer... | True |
pragma solidity ^0.4.13;
library SafeMath {
function sub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function add(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c >= a);
return c;
}
}
contract ERC20Basic {
uint public totalSupply;
address... | True |
// File: @openzeppelin/contracts/math/Math.sol
pragma solidity ^0.5.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b... | True |
pragma solidity ^0.4.21;
// File: contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event Ownership... | True |
pragma solidity ^0.4.13;
contract Calculator {
function getAmount(uint value) constant returns (uint);
}
contract Ownable {
address public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
... | True |
/**
*Submitted for verification at Etherscan.io on 2021-10-12
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers ... | True |
/**
*Submitted for verification at Etherscan.io on 2022-04-03
*/
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.10;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified fr... | True |
/**
*Submitted for verification at Etherscan.io on 2021-11-21
*/
//SPDX-License-Identifier: MIT
// Telegram: https://t.me/GhostbustersToken
// Built-in max buy limit of 5%, will be removed after launch (calling removeBuyLimit function)
// Built-in tax mechanism, can be removed by calling lowerTax function
pragma soli... | True |
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation,... | True |
pragma solidity ^0.4.15;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 ... | True |
pragma solidity 0.4.25;
// File: contracts/wallet_trading_limiter/interfaces/IWalletsTradingLimiter.sol
/**
* @title Wallets Trading Limiter Interface.
*/
interface IWalletsTradingLimiter {
/**
* @dev Increment the limiter value of a wallet.
* @param _wallet The address of the wallet.
* @param _v... | True |
/**
*Submitted for verification at Etherscan.io on 2019-07-08
*/
pragma solidity ^0.5.9;
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
// ----------------------------------------------... | True |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.