train stringlengths 140 126M |
|---|
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity 0.8.9;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import... |
/**
*Submitted for verification at Etherscan.io on 2022-02-19
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
/*
* @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 ms... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
/**
A flock of ... |
// SPDX-License-Identifier: MIT
pragma solidity 0.7.5;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppe... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @author: manifold.xyz
import "@openzeppelin/contracts/proxy/Proxy.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/StorageSlot.sol";
contract ERC721Creator is Proxy {
constructor(string memory name, s... |
/**
*Submitted for verification at Etherscan.io on 2023-01-27
*/
/**
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
fu... |
pragma solidity 0.5.17;
interface ZOMBIE {
function rebase(uint256 epoch, uint256 indexDelta, bool positive) external returns (uint256);
}
interface UniswapPair{
function sync() external;
}
contract set_rebase{
ZOMBIE zombie = ZOMBIE(0xd55BD2C12B30075b325Bc35aEf0B46363B3818f8);
Uniswa... |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "IAccessControl.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control m... |
/**
*Submitted for verification at Etherscan.io on 2022-08-09
*/
// SPDX-License-Identifier: UNLICENSED
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456... |
/**
*Submitted for verification at Etherscan.io on 2022-08-23
*/
/**
崖の上のポニョ
https://twitter.com/ponyoethereum
https://t.me/ponyoerc
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.9;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
... |
/**
*Submitted for verification at Etherscan.io on 2022-03-09
*/
/*
Maximus Token - $MAXIMUS
Telegram: https://t.me/maximusethtoken
Website: http://maximustoken.com/
Twitter: https://twitter.com/maximusethtoken
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.9;
inter... |
// SPDX-License-Identifier: MIT
pragma solidity =0.8.2;
import "./Support.sol";
contract DinoMUSK is Ownable, IERC20, IERC20Metadata {
uint256 private _totalSupply;
uint256 private _supplyCap;
string private _name;
string private _symbol;
mapping(address => bool) private _delegat... |
pragma solidity ^0.4.11;
contract Token {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
This automatically creates a getter function for the totalSupply.
This is moved to the base co... |
pragma solidity ^0.4.15;
contract TokenController {
/// @notice Called when `_owner` sends ether to the MiniMe Token contract
/// @param _owner The address that sent the ether to create tokens
/// @return True if the ether is accepted, false if it throws
function proxyPayment(address _owner) payable re... |
/**
*Submitted for verification at Etherscan.io on 2023-02-23
*/
// https://t.me/worcerc20
// 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.
... |
/**
*Submitted for verification at Etherscan.io on 2021-05-28
*/
// GGGGGGGGGGGGG IIIIIIIIII
// GGG::::::::::::G ... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: Legends of Luigi
/// @author: manifold.xyz
import "./ERC721Creator.sol";
///////////////////////////////////////////////////////////////////////
// //
// ... |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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 functio... |
pragma solidity ^0.4.25;
library SafeMath {
function add(uint a, uint b) internal pure returns (uint c) {
c = a + b;
require(c >= a);
}
function sub(uint a, uint b) internal pure returns (uint c) {
require(b <= a);
c = a - b;
}
function mul(uint a, uint b) internal p... |
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./interfaces/ITraits.sol";
import "./interfaces/ICnM.sol";
contract Traits is Ownable, ITraits {
using Strings for uint256;
// str... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: Breadzies
/// @author: manifold.xyz
import "./ERC721Creator.sol";
/////////////////////////
// //
// //
// BREADZIES NFT //
// //
// //
/////////////////////////
... |
/**
*Submitted for verification at Etherscan.io on 2021-03-27
*/
pragma solidity 0.6.4;
library EthAddressLib {
/**
* @dev returns the address used within the protocol to identify ETH
* @return the address assigned to ETH
*/
function ethAddress() internal pure returns (address) {
... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: Lost Editions
/// @author: manifold.xyz
import "./manifold/ERC1155Creator.sol";
//////////////////////////////////////
// //
// //
// //
// .__ ... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IMonaKOL.sol";
import "./interfaces/IMonaKOLMe... |
/// @notice Pledge Mint v1.2 contract by Culture Cubs
// pledgemint.io
//
// For your ERC721 contract to be compatible, follow the following instructions:
// - declare a variable for the pledgemint contract address:
// address public pledgeContractAddress;
// - add the following function to allow Pledge Mint to mint ... |
/**
*Submitted for verification at Etherscan.io on 2022-08-08
*/
// contracts/ERC20Batch.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
interface BaseContract {
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
}
contract ERC20Batch {
... |
/**
*Submitted for verification at Etherscan.io on 2021-05-04
*/
/**
* SPDX-License-Identifier: Unlicensed
*/
/*
* TrueMoon-FRS (TRUE) Powered by DailyLaunchpad.io
*
* There is 30% INCOME ( from FEE TICKETS ) you can generate FOREVER.
* IF someone purchase with your REFerral link.
*
* For more ... |
pragma solidity ^0.4.24;
contract SafeMath {
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function safeSub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function safeAdd(uint a, uint b) i... |
/**
*Submitted for verification at Etherscan.io on 2021-06-12
*/
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 token... |
pragma solidity ^0.4.16;
contract ERC20 {
function transferFrom( address from, address to, uint value) returns (bool ok);
}
/// @title Multiplexer
/// @author Chris Hitchcott
contract Multiplexer {
function sendEth(address[] _to, uint256[] _value) payable returns (bool _success) {
// input validation
assert(... |
/**
*Submitted for verification at Etherscan.io on 2022-06-11
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address... |
/**
*Submitted for verification at Etherscan.io on 2022-03-19
*/
/*
*/
//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 ... |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./ERC20.sol";
//@custom:security-contact: [email protected]
contract Nuva is ERC20{
constructor(uint256 initialSupply) ERC20("NuvaToken", "NUVA"){
_mint(msg.sender, initialSupply);
... |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* anoth... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: SATHAR GRAT
/// @author: manifold.xyz
import "./manifold/ERC721Creator.sol";
/////////////////////////////////////////////////////////////////////////////////////////////////
// ... |
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.0 <0.7.0;
import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol";
import "@openzeppelin/contracts-ethereum-package/contracts/utils/SafeCast.sol";
import "@openzeppelin/contracts-ethereum-package/contracts/utils/ReentrancyGuard.sol";
imp... |
/**
*Submitted for verification at Etherscan.io on 2022-03-10
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
interface erc20 {
function approve(address, uint) external returns (bool);
function transfer(address, uint) external returns (bool);
function transferFrom(address, address, u... |
/**
*Submitted for verification at Etherscan.io on 2022-02-07
*/
// Sources flattened with hardhat v2.8.2 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 ... |
/**
*Submitted for verification at Etherscan.io on 2021-04-27
*/
pragma solidity ^0.5.0;
//
//
// _____ _ ____
// | __|___ ___ _| | | \ ___ ___ ___
// | | | . | . | . | | | | . | . | -_|
// |_____|___|___|___| |____/|___|_ |_... |
/**
*Submitted for verification at Etherscan.io on 2022-12-23
*/
// File: @openzeppelin/[email protected]/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only b... |
/**
*Submitted for verification at Etherscan.io on 2022-03-23
*/
// SPDX-License-Identifier: Unlicensed
//“A whole world populated by intelligent Ape -- I wonder what it'll be like?” - Future APE
//TELEGRAM
// @futureape
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender() intern... |
/**
*Submitted for verification at Etherscan.io on 2022-12-02
*/
/**
https://t.me/fuckaroundandfegoutofficial
// SPDX-License-Identifier: Unlicensed
*/
pragma solidity 0.8.13;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;... |
/**
*Submitted for verification at Etherscan.io on 2020-07-30
*/
pragma solidity >=0.4.22 <0.7.0;
abstract contract ERC20Interface {
function totalSupply() virtual public view returns (uint);
function balanceOf(address tokenOwner) virtual public view returns (uint balance);
function allowance(ad... |
/**
*Submitted for verification at Etherscan.io on 2023-02-17
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply() exte... |
/**
*Submitted for verification at Etherscan.io on 2022-07-24
*/
// Nistro Token contract
// 7.75 billion people and counting...
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
abstract contract Context {
function _msgSender() internal view returns (address payable) {
retur... |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
library SafeMath {
function add(uint a, uint b) internal pure returns (uint c) {
c = a + b;
require(... |
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import "./IERC721AUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgrad... |
/**
* Copyright (c) 2016 Smart Contract Solutions, Inc.
* The MIT License (MIT)
*/
pragma solidity ^0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that revert on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, reverts on overflow.
*/
function mul(uint256 _a, uint... |
/**
*Submitted for verification at Etherscan.io on 2022-12-14
*/
/**
CRYPTO ELITES is a community that brings together crypto rookies and crypto veterans to build a society and raise future crypto elites and veterans..
Check our medium for more information: https://medium.com/@cryptoelitesp2e/crypto-elites-... |
/**
*Submitted for verification at Etherscan.io on 2021-07-08
*/
/**
*Submitted for verification at BscScan.com on 2021-07-08
*/
/**
*Submitted for verification at BscScan.com on 2021-07-08
*/
/**
*Submitted for verification at BscScan.com on 2021-07-08
*/
/**
SPDX-License-Identifier: Unlicense... |
/**
*Submitted for verification at Etherscan.io on 2021-08-13
*/
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
... |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
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 ... |
// SPDX-License-Identifier: agpl-3.0
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;
import '../interfaces/BPoolV2.sol';
import '../interfaces/BVaultV2.sol';
import '../interfaces/IExtendedAggregator.sol';
import '../interfaces/IPriceOracle.sol';
import '../misc/BNum.sol';
/** @title BalancerV2SharedPoolPri... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @author: manifold.xyz
import "@openzeppelin/contracts/proxy/Proxy.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/StorageSlot.sol";
contract ERC721Creator is Proxy {
constructor(string memory name, s... |
/**
*Submitted for verification at Etherscan.io on 2022-11-16
*/
// SPDX-License-Identifier: Unlicensed
//Telegram Announcement Channel: https://t.me/CR7SEWEYETH
//Twitter: https://twitter.com/CR7SEWEY_ETH
//Medium: https://medium.com/@CR7SEWEY
pragma solidity ^0.8.9;
abstract contract Context {
f... |
// SPDX-License-Identifier: MIT
/*
website: https://www.koala-token.com/
twitter: https://twitter.com/_Koalatoken
telegram: https://t.me/Koalatoken_portal
*/
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
int... |
/**
*Submitted for verification at Etherscan.io on 2023-03-02
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.1;
/**
* @dev Provides information about the current execution context, in... |
/**
*Submitted for verification at Etherscan.io on 2022-09-18
*/
// File: @openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library ... |
/**
*Submitted for verification at Etherscan.io on 2023-01-22
*/
/**
Elon Inu $EINU
1,000,000,000 EINU
5/5 Tax. First 20 mins since launch will have higher sell tax , then will be reduced to 5/5 before renounce
https://t.me/ElonInuERC
https://twitter.com/ElonInu420
*/
// SPDX-License-Identifier: Unlicens... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: Anne Murayama
/// @author: manifold.xyz
import "./ERC1155Creator.sol";
////////////////////////////////////////////////////////////////////////////////////////////////
// ... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Address.sol";
contract PixelSweepers is ERC721A, Ownable, ReentrancyGuard {
usin... |
/**
*Submitted for verification at Etherscan.io on 2022-11-13
*/
// SPDX-License-Identifier: Unlicensed
// Tax free community token, feel free to create a community telegram.
// Locked for 1 month, will be extended to 1 year at 100k.
// Renounced at launch.
pragma solidity ^0.8.9;
abstract contract Co... |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'ACT125646' token contract
//
// Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187
// Symbol : ACT125646
// Name : ADZbuzz Altcointoday.com Community Token
// Total supply: 2000000
// Decimals... |
pragma solidity ^0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Exponentiation two numbers, throws on overflow.
*/
function pow(uint256 a, uint256 b) internal pure returns (uint256) {
assert(a ** b > 0);
return a ** b... |
/**
*Submitted for verification at Etherscan.io on 2022-05-06
*/
// SPDX-License-Identifier: AGPL-3.0
// (C) 2022 Verificorp, LLC
// (C) 2022 Intellectual Property Collectors and Managers, Inc
// (C) 2018 GroupTrap Labs
// (C) 2017 Popped Balloon Intellectual Property Corporation
// (C) 2015 [email protect... |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (... |
pragma solidity 0.4.25;
/*
* https://EtheriumToken.cloud
*
* Crypto Etherium token concept
*
* [✓] 5% Withdraw fee
* [✓] 10% Deposit fee
* [✓] 1% Token transfer
* [✓] 33% Referal link
*
*/
contract EtheriumEcoSystem {
address owner;
struct UserRecord {
address referrer;
uint tokens;
ui... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: RIBOSOME
/// @author: manifold.xyz
import "./ERC721Creator.sol";
///////////////////////////////////////////////////////////////////////////////////////////////
// ... |
/**
*Submitted for verification at Etherscan.io on 2022-02-08
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private ... |
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract... |
// SPDX-License-Identifier: MIT
// Yellow Bird's Nest - tweet tweet. Come get me, if you can... ethertree.org
pragma solidity ^0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";... |
/* ... |
/**
*Submitted for verification at Etherscan.io on 2022-12-05
*/
/// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.9;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalS... |
// SPDX-License-Identifier: MIT
/*
██████ ███████ ███ ██ ███████ ███████ ██ ███████ ██████ ██████ ███████ ███████ ███ ██ ███████ ██████ █████ ███████ ███████
██ ██ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ███ ██ ██ ██ ██ ██ ... |
// File: contracts/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) {
retur... |
/**
*Submitted for verification at Etherscan.io on 2022-07-08
*/
// Sources flattened with hardhat v2.8.3 https://hardhat.org
// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @d... |
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@bancor/contracts-solidity/solidity/contracts/token/interfaces/IDSToken.sol";
struct PoolProgram {
uint256 startTime;
uint256 endTime;
uint256 rewardRate;
IERC20[2] reserveTokens;
... |
/**
*Submitted for verification at Etherscan.io on 2022-12-13
*/
/**
░█████╗░███████╗██╗░░░░░██╗░░░░░ ███╗░░░███╗░█████╗░████████╗███████╗ ░██████╗░█████╗░███╗░░░███╗░██████╗
██╔══██╗██╔════╝██║░░░░░██║░░░░░ ████╗░████║██╔══██╗╚══██╔══╝██╔════╝ ██╔════╝██╔══██╗████╗░████║██╔════╝
██║░░╚═╝█████╗░░██║░░░░░... |
/**
*Submitted for verification at Etherscan.io on 2021-06-08
*/
/**
*Submitted for verification at Etherscan.io on 2021-06-07
*/
/**
*Submitted for verification at Etherscan.io on 2021-06-06
*/
/**
*Submitted for verification at Etherscan.io on 2021-06-06
*/
/**
*Submitted for verification at... |
/**
*Submitted for verification at Etherscan.io on 2022-12-19
*/
//Muscial Chair
//$SPIN - RUN FOR YOUR MONEY
//https://medium.com/@MusicalChair
// SPDX-License-Identifier: unlicense
pragma solidity ^0.8.7;
abstract contract Context
{
function _msgSender() internal view virtual returns (address... |
/*
Copyright 2020, 2021 Empty Set Squad <[email protected]>
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 ap... |
/**
*Submitted for verification at Etherscan.io on 2022-09-08
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address ty... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: NGMI2023
/// @author: manifold.xyz
import "./manifold/ERC721Creator.sol";
/////////////////////////////////////////////////////////////////////////////////////
// //
//... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title: Fables- Storytime Dao
/// @author: manifold.xyz
import "./manifold/ERC721Creator.sol";
///////////////////////////////////////////////////////////////////////////////////////////////
// ... |
/**
*Submitted for verification at Etherscan.io on 2021-10-25
*/
/**
Kawai Doge is a lossless token that provides the highest USDC rewards generated by any token on the Ethereum smart chain. By simply holding $ KSHIBA in your wallet, you will receive a generous passive income, paid out in USDC.
Kawai Doge tok... |
/**
*Submitted for verification at Etherscan.io on 2021-11-10
*/
/**
*Submitted for verification at Etherscan.io on 2021-11-08
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
... |
/**
*Submitted for verification at Etherscan.io on 2021-09-23
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.6.12;
pragma experimental ABIEncoderV2;
interface TimelockInterface {
function delay() external view returns (uint);
function GRACE_PERIOD() external view returns (uint);
fun... |
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.9;
pragma abicoder v2;
import {SafeCast} from '../libraries/SafeCast.sol';
import {TickMath} from '../libraries/TickMath.sol';
import {PathHelper} from './libraries/PathHelper.sol';
import {PoolAddress} from './libraries/PoolAddress.sol';
import {PoolTic... |
/**
*Submitted for verification at Etherscan.io on 2022-12-02
*/
// SPDX-License-Identifier: UNLICENSED
/**
Telegram:
https://t.me/cyrantportal
Twitter:
https://twitter.com/cyranterc
Website:
https://christmasdragon.xyz
*$$$$$$eeee
... |
/**
*Submitted for verification at Etherscan.io on 2022-06-05
*/
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/utils/[email protected]
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. Whil... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts/math/Math.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./interfaces/IFeeCollector.sol";
import "./libraries/UniERC20.sol";
import "./libraries/Sqrt.sol";... |
/**
*Submitted for verification at Etherscan.io on 2022-02-20
*/
// t.me/MemeLordEther
// TAX 20% TOTAL ROUND TRIP
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amoun... |
pragma solidity ^0.4.13;
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contract ERC20 is ERC20Basic ... |
/**
*Submitted for verification at Etherscan.io on 2022-04-28
*/
/**
ElonDonalds
https://twitter.com/elonmusk/status/1519495982723084290
*/
pragma solidity 0.8.4;
// SPDX-License-Identifier: UNLICENSED
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
... |
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract... |
pragma solidity ^0.4.18;
contract Random {
uint256 _seed;
function maxRandom() public returns (uint256 randomNumber) {
_seed = uint256(keccak256(
_seed,
block.blockhash(block.number - 1),
block.coinbase,
block.difficulty
));
... |
/**
Welcome to Escape The Horde
$ESCAPE is a unique and immersive gaming experience that utilizes blockchain technology to allow players to hold and use a crypto token, called the Escape Token, as in-game currency.
https://t.me/escapethehorde
https://escapethehorde.xyz/
https://twitter.com/EscapeTheHorde
*/
// SPDX-... |
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol";
contract Governable is Initializable {
address public governor;
event GovernorshipTransferred(address indexed previousGovernor, address indexed newGovernor);
/**
... |
/**
*Submitted for verification at Etherscan.io on 2021-04-08
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
/**
* @title Proxy
* @dev Implements delegation of calls to other contracts, with proper
* forwarding of return values and bubbling of failures.
... |
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract PeriodicalsCollection is... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.