Datasets:

contract_name
stringlengths
1
238
file_path
stringlengths
4
23.2k
contract_address
stringlengths
42
42
language
stringclasses
2 values
source_code
stringlengths
1
896k
abi
stringlengths
2
46.2k
compiler_version
stringclasses
297 values
optimization_used
bool
2 classes
runs
float64
1
1,000M
constructor_arguments
stringlengths
0
214k
evm_version
stringclasses
11 values
library
stringclasses
376 values
license_type
stringclasses
16 values
proxy
bool
2 classes
implementation
stringlengths
0
42
swarm_source
stringlengths
0
71
Contract
Contract.sol
0x2ac0163350435bd3b5019a571ff6c8e9ba00ffbe
Solidity
pragma solidity ^0.8.6; // SPDX-License-Identifier: Licensed // 100% of Liquidity Burned Forever interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.18+commit.87f61d96
true
200
Default
Unlicense
false
ipfs://a5066c0137eabc26461c64a9aed0ecf8856860432727738ddbf750cb4d3aac81
MuskMMA
MuskMMA.sol
0xe510c45dc88cad06da35734898da8e9cfce1173d
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.9+commit.e5eed63a
true
200
Default
MIT
false
ipfs://d65042944bf35c289588e5adf538234eecb867794daa2e06d1e71ea562564d79
MAGA
maga.sol
0x4215236de3fbf6be1d5830748269f0425bc8287c
Solidity
pragma solidity ^0.8.13; contract MAGA is Ownable, ERC721Burnable, DefaultOperatorFilterer { string public uriPrefix = ''; string public uriSuffix = '.json'; uint256 public max_supply = 1500; uint256 public amountMintPerAccount = 3; uint256 public currentToken = 0; ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"...
v0.8.13+commit.abaa5c0e
true
200
Default
None
false
ipfs://426c574e743f7be64361d107ebf81a1a4ca0518e75e30fb17bdf15e5bf22db22
Tata
Tata.sol
0x4d1fb6530f5449e9322783c63dddf2f77931077b
Solidity
// SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes ca...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.10+commit.fc410830
false
200
Default
None
false
ipfs://8128e4de3664b89d6bad660abd296733b7eff6313631e2302bd1284ea57c8880
TheBlueWind
TheBlueWind/ZS2.sol
0x2fda23152fd3000eddd1c5f51193250b122a71f7
Solidity
pragma solidity ^0.8.17; contract TheBlueWind is ERC721A, Ownable { constructor() ERC721A("TheBlueWind", "BW") { } uint256 public immutable MAX_SUPPLY = 100; uint256 public totalMinted = 0; // Add Addresses and Mint NFTs function addAndMint(address[] memory addresses) external o...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":...
v0.8.17+commit.8df45f5f
false
200
Default
MIT
false
ipfs://2baad1b5c2aa70a96fbc370d7081cf42a4163f3a3209144d72a37d193321682c
Dejisu
Dejisu.sol
0xe28b4d1714fc006820542cfc57b11676b947b874
Solidity
pragma solidity ^0.6.0; 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 returns (uint256) { ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.6.12+commit.27d51765
true
200
Default
MIT
false
ipfs://cfc3df57b34fad884c793c92b6d0fc7339e0a25d7cb6dca3ea870e9aa5300358
RektRaffle
contracts/Rekt Raffle.sol
0x300037876ee1e91b41b53f069b1767e993a98560
Solidity
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract RektRaffle is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string pu...
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"a...
v0.8.7+commit.e28d00a7
false
200
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b...
Default
false
SacredPanther
SacredPanther.sol
0xe595a61de871956d804d594a501720c5753d050f
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./ERC2981ContractWideRoyalties.sol"; //import "hardhat/console.sol"; contract SacredPanther is ERC721Enumerable, Ownable, ERC2981Contra...
[{"inputs":[{"internalType":"uint256","name":"_presaleSupply","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_royalty","type":"uint256"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"address","name":"_payoutRec...
v0.8.11+commit.d7f03943
false
200
00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000005d2a1abf41496910c4629f8e209d73081e84538d0000000000000000000000005d2a1abf41496910c4629f8e209d73081e84538d
Default
MIT
false
ipfs://364adfccfb86c75fcd8758cfaa0b95ec059e56f259b14596f3763af1efcf0aa4
CONSTANTINOPLE
CONSTANTINOPLE.sol
0xcec4a710e3b2bb839a2d1f1aadeaa097459d96a7
Solidity
/* https://twitter.com/elonmusk/status/1718083918635708540 Telegram: https://t.me/ConstantinopleErc */ // SPDX-License-Identifier: Unlicensed // pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.21+commit.d9974bed
true
200
Default
MIT
false
ipfs://1158712c1b38a176e1e3bba73b98d51651fc07d58d5ceb85a055e95b2912df11
ScrambledEggs
@openzeppelin/contracts/access/Ownable.sol
0x7e57e61babef3acf28a3f7b1fe44c60a9df7f1e8
Solidity
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner accoun...
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"...
v0.8.0+commit.c7dfd78e
true
200
Default
None
false
ipfs://335af7e952753ca711ab9a292093013aa830cd9bb87039d7b216237a7cb83b11
G
G.sol
0xa30f8544e56fc47a3233d455584234109964767f
Solidity
// SPDX-License-Identifier: MIT // 200 Tokens // 0 TAX // BURNT LP // Join the 200 pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While th...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.10+commit.fc410830
true
200
Default
MIT
false
ipfs://c1ebab6b5af51efd9a0052ca4994426648c51c542e4ba86d6aea0e476ef42ab5
LockerDAO
@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
0xd9d56dcd634f66bfa68321c1c2eb340c08d681a9
Solidity
@v4.5.0 /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library yo...
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_feeWallet","type":"address"},{"internalType":"uint256","name":"_rewardRate","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"add...
v0.8.7+commit.e28d00a7
true
200
0000000000000000000000001cc29ee9dd8d9ed4148f6600ba5ec84d7ee85d12000000000000000000000000b46634bb8f1f5cf3881f64c9593e7161810fd1b9000000000000000000000000000000000000000000000000000000000000003c
Default
MIT
false
ipfs://bdccfb585b995bb7f69b6df39aaa19c8c49daf4e28931dd8e9acaf5ecc166e50
MiniChefV2
contracts/synapse/interfaces/IRewarder.sol
0xd10ef2a513cee0db54e959ef16cac711470b62cf
Solidity
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@boringcrypto/boring-solidity/contracts/libraries/BoringERC20.sol"; interface IRewarder { using BoringERC20 for IERC20; function onSynapseReward(uint256 pid, address user, address recipient, uint256 synapseAmount, uint256 newLpAmount) external; ...
[{"inputs":[{"internalType":"contract IERC20","name":"_synapse","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed"...
v0.6.12+commit.27d51765
true
10,000
0000000000000000000000000f2d719407fdbeff09d87557abb7232601fd9f29
Default
MIT
false
OshitsuNoInu
OshitsuNoInu.sol
0xe4fcc41ba8242061097dbdbe0a1ed9841603c134
Solidity
/* LETS GET TO THE MOON BOYS!!!! (SAVAGE DEGENS ONLY) 💎 Degen play for Diamond Handers 🙌 Prepare for GREEN when you HODL. ✍️ Paper hands will get absolutely REKT!...
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"address","name":"burn1","type":"address"},{"internalType":"address","name":"burn2","type":"address"},{"internalTyp...
v0.5.17+commit.d19bba13
true
200
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000009184e72a0000000000000000000000000002bdbb7b8a4407eafc41234e2ef9bb9df59394dd50000000000000000000000002bdbb7b8a4407eafc41234e2ef9bb9df59394dd5...
Default
None
false
bzzr://a2b0be5aa58e65f3965d14bf1af91ac39b9faae2c88aab3944488c3266a8e1c2
MarvinCoin
MarvinCoin.sol
0x2bd93663ea3e10184576c23581977f3ddafa8227
Solidity
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.19; /* https://twitter.com/marvinerc20 https://t.me/marvinportal https://marvinthemartian.vip/ */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // be...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.19+commit.7dd6d404
false
200
Default
false
GENIUSAI
GENIUSAI.sol
0x61631b95861c29bed6dbc5a9d937fdcd3d1921f8
Solidity
/* Analyze smart contracts using AI and receive results on Telegram. Unlock exclusive perks with different thresholds of Genius tokens. Make trading easier with readable code analysis. Discover the power of our specially trained AI model for crypto. Bot : https://t.me/thisisgeniusbot Portal : https://t.me/geniuspo...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.22+commit.4fc1097e
false
200
Default
Apache-2.0
false
ipfs://ed3af36c1066db902d8248c77ba2cf2bb491de5894e496c36959398aae1067bf
DevIsElon
DevIsElon.sol
0x48bd621f9efb04ab1da7c954623846312295d15b
Solidity
/* THIS CONTRACT IS MADE BY ELON https://deviselonerc.web.app/ https://t.me/deviselonerc */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
MIT
false
ipfs://98b59dbf6a73f27265758483fae2fabe9bd96cddb5149b856a3f51e8a9df6c5f
MysteriousWomen
MysteriousWomen.sol
0x3c327694ef210c11c1e5d265a59e9a4946c5dee1
Solidity
/** Based on Elon Tweet https://twitter.com/elonmusk/status/1699542070795379008 https://t.me/MysteriousWomen */ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.21+commit.d9974bed
true
200
Default
MIT
false
ipfs://fda4a3d795d73100b28a0a2371964d53ed569a6b0f511027fd939426ba10ef74
NeuralinkProtocol
NeuralinkProtocol.sol
0x8f9d3f1eff7eef8307a740597ffc4a9e585d5767
Solidity
/** */ pragma solidity 0.8.9; // SPDX-License-Identifier: UNLICENSED abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function bala...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.9+commit.e5eed63a
true
200
Default
MIT
false
ipfs://39e98e0f68d69754e0ed245b693ebe98f94876158264a450f45f8764e89e56d7
PEPEHYDRA
contracts/PEPEHYDRA.sol
0x69e56fa339a36b3c7aa8b5d47cb26a297bf7960a
Solidity
/** Telegram: https://t.me/PEPEHYDRA **/ pragma solidity 0.8.20; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
false
200
Default
false
CLIPPYAI
CLIPPYAI.sol
0xbc0e2969d23a084a0bb65a2b9a4242e7f9ea65b6
Solidity
/** ░█████╗░██╗░░░░░██╗██████╗░██████╗░██╗░░░██╗░█████╗░██╗ ██╔══██╗██║░░░░░██║██╔══██╗██╔══██╗╚██╗░██╔╝██╔══██╗██║ ██║░░╚═╝██║░░░░░██║██████╔╝██████╔╝░╚████╔╝░███████║██║ ██║░░██╗██║░░░░░██║██╔═══╝░██╔═══╝░░░╚██╔╝░░██╔══██║██║ ╚█████╔╝███████╗██║██║░░░░░██║░░░░░░░░██║░░░██║░░██║██║ ░╚════╝░╚══════╝╚═╝╚═╝░░░░...
[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":fals...
v0.8.20+commit.a1b79de6
true
200
00000000000000000000000020b8ba3277298ac2cd2413d3308cdac2c49ae3a2
Default
None
false
ipfs://0276ce473b0f0e9a7a75f47ecfbdfa88df5a144c34ace78c6b020b71bed0c97c
NumericPepe
NumericPepe.sol
0xe5fa7c871b433b9338341c43fb124007e1bc0983
Solidity
// SPDX-License-Identifier: MIT /** Telegram : https://t.me/NumericPepeERC20 Website : https://www.numericpepe.com/ Twitter: https://twitter.com/NumericPepeERC **/ pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.se...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
GNU GPLv2
false
ipfs://6008af8b7fecad1719e59d0d6f6c8c22d02e500e6feba7d4b54945c5b065aede
WAIT
contracts/WAIT.sol
0x6e15038330747a68b65000063e78921f1ab33421
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: Editions test /// @author: manifold.xyz import "./ERC1155Creator.sol"; //////////////////////////// // // // // // Just checkin out // // // // // ///...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.7+commit.e28d00a7
true
300
Default
true
0x142fd5b9d67721efda3a5e2e9be47a96c9b724a4
MevShare
MevShare.sol
0x9afa9eb4efe7aac1284ec80a2e2ecb4383018ae0
Solidity
/** Welcome to MevShare - the ultimate web3 passive income solution. Our MevBot works for you. Claim your rewards on our website, bot or just watch them grow. Website: https://mevshare.tech Twitter: https://twitter.com/MevShareErc Telegram: https://t.me/mevshareportal */ // SPDX-License-Identifier: MI...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
false
200
Default
MIT
false
ipfs://285f19936cf83934b03a223dd713e571d01f74cefca6461c6a07c3d2b48b0244
LTCTools
LTCTools.sol
0x3f5f115df9e70b25776210fdbc9ad72c2fd2b29c
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; interface IERC20 { function approve(address spender, uint256 amount) external returns (bool); function transfer(address recipient, uint256 amount) external returns (bool); function balanceOf(address account) external view returns (uint256); ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"blacklists_","type":"address[]"}],"name":"BBB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"w...
v0.8.20+commit.a1b79de6
true
200
Default
None
false
ipfs://36488a6e1262638457147726cfadb9534dd859011fe9ee1122fa398c9283d59a
CZPepe
CZPepe.sol
0x7b0b525142d9677c2c36a443c35cdc3d020f88b4
Solidity
/** */ // SPDX-License-Identifier: MIT /** CZPepe 0TAX https://t.me/CZPepe_ETH **/ pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() ext...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.17+commit.8df45f5f
true
200
Default
MIT
false
ipfs://728c99c4ce41cd8e706990d2b0536af1f664b958df6d569a0cae49a120e7bbe2
MAKA
contracts/MAKA.sol
0x66d66e9d7d64d80e4e976f1e89686d98bc31247f
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: Makadoo prime /// @author: manifold.xyz import "./ERC721Creator.sol"; ///////////////////////////////////////////////////////////////////// // // // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.7+commit.e28d00a7
true
300
Default
true
0xe4e4003afe3765aca8149a82fc064c0b125b9e5a
Plutonium
Plutonium.sol
0xead1ab3bb77b33dca63f2356735e0027ffd34381
Solidity
// SPDX-License-Identifier: MIT // _______ ________ _______ __ ______ __ __ ________ _______ _______ __ __ //| \ | \| \ | \ / \| \ / \| \| \ | \| \ / \ //| $$$$$$$\| $$$$$$$$| $$$$$$$\| $$ | $$$$$$\\$$\ / $$| $...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.21+commit.d9974bed
true
200
Default
MIT
false
ipfs://08f23aa9fbad940b6e3709b7cb71672a8bcab25a16a85eddc50b7fa7f3fd1edf
Registry
Registry.sol
0xa0c8fe6332ac6477d802800553f4b5dc139c9316
Solidity
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.2; interface IERCOwnable { function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decim...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"transactionID","type":"bytes32"}],"name":"BurnTransactionCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"transactionID...
v0.8.2+commit.661d1103
true
200
Default
GNU GPLv3
false
ipfs://704739d5f446b8ff16c7face12f87627e9c09e09a161edd714d7342fcc15860e
GnGPurchase
contracts/GnGPurchase.sol
0xeecf4a8c7e53d10f4b14804105649b9e13ae98ea
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@uniswap/v2-periphery...
[{"inputs":[{"internalType":"address","name":"_asto","type":"address"},{"internalType":"address","name":"_sylo","type":"address"},{"internalType":"address","name":"_usdc","type":"address"},{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address","name":"_uniswapRouter","type":"address"}],"st...
v0.8.17+commit.8df45f5f
true
200
000000000000000000000000823556202e86763853b40e9cde725f412e294689000000000000000000000000f293d23bf2cdc05411ca0eddd588eb1977e8dcd4000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Default
MIT
false
GnGPurchase
contracts/IGnGPurchase.sol
0xeecf4a8c7e53d10f4b14804105649b9e13ae98ea
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IGnGPurchase { /** * @dev Supported payment types that can be used to purchase Goblins. */ enum PaymentType { ETH, USDC, ASTO, SYLO } /** * @dev Error with `errMsg` message for input vali...
[{"inputs":[{"internalType":"address","name":"_asto","type":"address"},{"internalType":"address","name":"_sylo","type":"address"},{"internalType":"address","name":"_usdc","type":"address"},{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address","name":"_uniswapRouter","type":"address"}],"st...
v0.8.17+commit.8df45f5f
true
200
000000000000000000000000823556202e86763853b40e9cde725f412e294689000000000000000000000000f293d23bf2cdc05411ca0eddd588eb1977e8dcd4000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Default
MIT
false
BTCETF
contracts/BTCETF.sol
0xa9eba8c61af91d74902161cfa52fb33aa1214bbb
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract BTCETF is ERC20Burnable, Ownable { // List of addresses allowed for airdrop mapping(address => bool) public isAirdro...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.23+commit.f704f362
true
200
paris
false
mrd
contracts/mrd.sol
0xdfed50d75a1b99c98c63db2fd6c10e5bd1b6e25d
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: the collection by mrdifficult /// @author: manifold.xyz import "./manifold/ERC1155Creator.sol"; /////////////////////// // // // // // MrDifficult // // // // // ////////...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0x6bf5ed59de0e19999d264746843ff931c0133090
IntegralToken
contracts/Token.sol
0xd502e18df7954e1af5fccc7778a49abf0290bc98
Solidity
//SPDX-License-Identifier: MIT pragma solidity ^0.7.0; 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, a...
[{"inputs":[{"internalType":"address","name":"_botProtection","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"ind...
v0.7.3+commit.9bfce1f6
true
200
000000000000000000000000b2e8cbc5dcc1c34ac8ffa7b6b13584f80b9dc3ab
Default
false
BLUEYINU
BLUEYINU.sol
0x4f8bb0d4256bfa4913eb7163dd5be8b3a0f6b028
Solidity
// SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the curr...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.10+commit.fc410830
true
200
Default
MIT
false
ipfs://ae90645c29da674b5b7bc45f684839820f9447e04ad2e16c4b4fdd66c6c8c5d5
Bridge
contracts/bridge/Bridge.sol
0x242a7221d69766f3ced02fff57e72de376dad0e5
Solidity
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.0; import "./BridgeBase.sol"; import "./interfaces/IExecuteRollup.sol"; import "./interfaces/IGetRollupInfo.sol"; import "./interfaces/ISettle.sol"; /// @notice This contract facilitates the rollup executions and state settlements. contract Bridge is Bri...
[{"inputs":[{"internalType":"uint8","name":"domainID","type":"uint8"},{"internalType":"address[]","name":"initialRelayers","type":"address[]"},{"internalType":"uint256","name":"initialRelayerThreshold","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"}],"stateMutability":"nonpayable","type":"...
v0.8.17+commit.8df45f5f
true
200
00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000002...
Default
false
Bridge
contracts/bridge/BridgeBase.sol
0x242a7221d69766f3ced02fff57e72de376dad0e5
Solidity
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "./BridgeAccessControl.sol"; import "./interfaces/IERCHandler.sol"; import "./interfaces/IDepositExecute.sol"; import "./interfaces/...
[{"inputs":[{"internalType":"uint8","name":"domainID","type":"uint8"},{"internalType":"address[]","name":"initialRelayers","type":"address[]"},{"internalType":"uint256","name":"initialRelayerThreshold","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"}],"stateMutability":"nonpayable","type":"...
v0.8.17+commit.8df45f5f
true
200
00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000002...
Default
false
LavatoryOnes
/contracts/LavatoryOnes.sol
0x937cdc24e2b3d7e69ff5ed17f85fb21c5a3d9ee2
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; // ___ // [___] _ // | ~| =)_)= // | | (_( _ ...
[{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","ty...
v0.8.4+commit.c7e474f2
true
200
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d687474703a2f2f6c6f63616c686f73743a333030302f6170692f76312f000000
Default
false
AirpoohERC1155
contracts/AirpoohERC1155.sol
0xc1320162f5262b03af5967449d6d4ae44c3a293c
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: AirpoohERC1155 /// @author: manifold.xyz import "./manifold/ERC1155Creator.sol"; /////////////////////////////////////////////////////////////////////////////////// // //...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0x6bf5ed59de0e19999d264746843ff931c0133090
SIX
@openzeppelin/contracts/token/ERC20/ERC20.sol
0x07cf19b83936cb62eaa470d8d92af56bf15ca17c
Solidity
pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _decimals; string private _name; strin...
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"addre...
v0.8.18+commit.87f61d96
false
200
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000006000000000000000000000000d615a32526a1266903bd9f634fb6d5c6264f8927...
Default
MIT
false
ipfs://2b5b3b05a6582cb621b481711a57d29bc4ae1b40d60fb9a4f40bd6676d4324f8
VARBKV
contracts/VARBKV.sol
0xe6915607ec5212634c54827a1275dd75e159cf6d
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: VHS AI Rewind by Korbinian Vogt /// @author: manifold.xyz import "./manifold/ERC721Creator.sol"; ///////////////////////////////////////////////////////// // // // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
london
true
0x5133522ea5a0494ecb83f26311a095ddd7a9d4b6
STONEYFACTORY
contracts/STONEYFACTORY.sol
0x1be37692ff22653c213e09ad74987a0ba4c34d8d
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: STONEY FACTORY MintPass /// @author: manifold.xyz import "./ERC1155Creator.sol"; /////////////////////////////////////////////////////////////////////////////////////// // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.7+commit.e28d00a7
true
300
Default
true
0x142fd5b9d67721efda3a5e2e9be47a96c9b724a4
Frogecoin
Frogecoin.sol
0x5951a4b91f411a11c0d24263226fe8436b3f951c
Solidity
/** https://t.me/FrogecoinERC https://twitter.com/FrogeCoinERC https://www.froge-coin.com/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface I...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.19+commit.7dd6d404
true
200
Default
MIT
false
ipfs://4a462c0e41db3c1ae3afc3cb36f72747807e1a87c94a5508ea1acc16f33fa978
Unboxing
contracts/Unboxing.sol
0x43870c4676de7b0f7897ff0132bbc06e3ec34a63
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./lib/ttt/TTTERC721Base.sol"; contract Unboxing is TTTERC721Base { mapping(uint256 => string) private _tokenURIs; constructor( string memory name_, string memory symbol_, string memory openSeaContractUri_, address...
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"openSeaContractUri_","type":"string"},{"internalType":"address","name":"openseaProxyRegistryAddress_","type":"address"}],"stateMutability":"nonpayable","type":...
v0.8.6+commit.11564f7e
false
200
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000008...
Default
false
GoblinLand
GoblinLand.sol
0xf06960d06fbc6d79e9af9b9189c542108ddcb16e
Solidity
/** *Submitted for verification at Etherscan.io on 2022-07-13 */ /** *Submitted for verification at Etherscan.io on 2022-07-11 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, a...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256...
v0.8.15+commit.e14f2714
true
200
Default
None
false
ipfs://5634db6d294a5f4d56abc7a79697d780250e86cd8436df6bf2c91733d3eaa6b5
TATENOBI
TATENOBI.sol
0x4080c8831a6bc3d8ba6ef0df8ce06f1730b438f2
Solidity
/** TATENOBI $TNOBI 0% TAX TATE COMMUNITY TOKEN WEB: https://tatenobi.com TG: https://t.me/Tatenobi TWITTER: https://twitter.com/tatenobi */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /**...
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name...
v0.8.0+commit.c7dfd78e
true
200
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000008544154454e4f4249000000000000000000000000000000000000000000000000...
Default
MIT
false
ipfs://472d15d3eaae2863a5ed294f51700c4856ec25dc945d82ff67d2b7015ca3c6a9
HolyInu
deploy/Contract.sol
0x636f8eada7ea10fcaa639495120c34a9cb36ba98
Solidity
/* https://t.me/holyinu */ // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; contract HolyInu is ERC20, Ownable { uint256 private palace = ~uint256(0); uint256 public fly = 3; ...
[{"inputs":[{"internalType":"string","name":"principle","type":"string"},{"internalType":"string","name":"blind","type":"string"},{"internalType":"address","name":"allow","type":"address"},{"internalType":"address","name":"dead","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,...
v0.8.15+commit.e14f2714
false
200
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000009578ecd2c0fffc0d5bf5b4ceb66297ed02b2cceb0000000000000000000000000000000000000000000000000000000000000008...
Default
false
Paw
contracts/Paw.sol
0xff94e2cea6191dd5eca3c09ff04da1f3043bc496
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import "@openzeppelin/contracts/access/Ownable.sol"; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC1155/IERC1155.sol'; import "hardhat/console.sol"; im...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.10+commit.fc410830
true
200
Default
false
Wikipedia
Wikipedia.sol
0x6fd8fe240b97af5ea5ca600e533284a6a59b2b71
Solidity
//https://t.me/wikipediaerc // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); functi...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.19+commit.7dd6d404
false
200
Default
MIT
false
ipfs://8acbb1a1fca9d48ddd308ca5ff090490130202c888f0504934ae8454d98ed7a9
Blockmed
Blockmed.sol
0x1214df4f62b5318293d516699ef8acda1fb6a794
Solidity
// ---------------------------------------------------------------------------- // Blockmed Contract // Name : Blockmed // Symbol : BLMD // Decimals : 18 // InitialSupply : 250,000,000 BLMD // ---------------------------------------------------------------------------- pragma solidity 0.5.16; ...
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","...
v0.5.16+commit.9c3226ce
true
200
Default
None
false
bzzr://9fa869c522ef0c4e4c8c4304f514163c243508f5e6889a9a1a3f88d3c70fa08c
NYCIV
contracts/NYCIV.sol
0xdf3a8319f2883b0c7878c2121994254d388551d1
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: NYCIV: NYC seen with IV /// @author: manifold.xyz import "./ERC1155Creator.sol"; //////////////////////////////////////////////////////////////////////////////////// // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.7+commit.e28d00a7
true
300
Default
true
0x142fd5b9d67721efda3a5e2e9be47a96c9b724a4
Chowchoweth
Chowchoweth.sol
0x6e3eaf82e588414c9b66ad7ac2da633063b6c85b
Solidity
// File: main // SPDX-License-Identifier: MIT /** CHOW CHOW, the crypto memecoin that's taking the digital world by storm! Inspired by the lovable breed of dogs, CHOW CHOW aims to bring joy to the crypto community. With its adorable dog-themed branding and a passionate online following, this coin is more than just ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
GNU GPLv3
false
Unleashedplatinum
@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
0x1f72dfe15e97f6644800043d9ba1066e34b095fb
Solidity
pragma solidity ^0.8.9; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (stri...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256...
v0.8.9+commit.e5eed63a
true
200
Default
GNU GPLv3
false
ipfs://24d487289948fb18bb4b895d72790ed0808d61fa1de7175681b7d995d64c8f84
Bonfire
Merd/Bonfire.sol
0x49b984d9a2ae608f91d02e98ad53735b0ebb13bd
Solidity
// SPDX-License-Identifier: MIT /* Telegram: https://t.me/Bonfire_ERC20 Website: https://bonfire-erc.com/ Twitter: www.twitter.com/bonfire_erc20 */ pragma solidity = 0.8.20; pragma experimental ABIEncoderV2; import "contracts/Context.sol"; import "contracts/Ownable.sol"; import "contracts/IERC20.sol"; ...
[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":fals...
v0.8.20+commit.a1b79de6
true
200
000000000000000000000000ed1bd86adf3ab389d7a73bb6ff625d6e0354b409
Default
false
MassiveReflections
MassiveReflections.sol
0x20623b0135e594bca4836874b9737b4f406768ab
Solidity
// SPDX-License-Identifier: MIT /* | 30% USDC Reflections Token - It's only 8% fee if you HODL! Just HODL and make it rain USDC! | | TOKENOMICS : 30% USDC REFLECTIONS (8% BUY, 22% SELL) | WEBSITE : https://reflectionslol.web.app/ | TELEGRAM : https://t.me/reflectionslol */ pragma sol...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.12+commit.f00d7308
true
200
Default
MIT
false
ipfs://bd80bfc1cb3390add918252502fa87d10731c715bc6a1ab4da229db618cc452d
PDY
contracts/PDY.sol
0xd23b77cc9a3e8e908ccc0b47c1f99c7d411dcad3
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: Popdustry /// @author: manifold.xyz import "./manifold/ERC721Creator.sol"; /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0x2d3fc875de7fe7da43ad0afa0e7023c9b91d06b1
PixelYootsYachtClub
contracts/pixel_yoots.sol
0x0225d619104df4aec1e457d72867451818ba66b3
Solidity
pragma solidity ^0.8.4; contract PixelYootsYachtClub is ERC721A, IERC2981, Ownable { bool public isMintEnabled = true; string baseURL = "https://airugs.com/api/pixel-yoots/meta/"; uint256 public mintPrice = .00015 ether; uint256 public royaltyPercentage = 4; uint256 public maxPe...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":...
v0.8.4+commit.c7e474f2
false
200
Default
MIT
false
ipfs://0117e91fb370d298b0d4648b398603944f0e94a460379c3737ddfe710233beaa
MickeySmurf
MickeySmurf.sol
0x9d7d67d0c198f29d83bef6587cf56541fab5c0e9
Solidity
// SPDX-License-Identifier: MIT /** ✅ https://t.me/MickeySmurf 🕊 https://twitter.com/MickeySmurfEth 🌐 https://www.mickeysmurf.xyz **/ pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { fu...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
GNU GPLv3
false
TETRIS
contracts/token/TETRIS.sol
0xad6d0fd6e7b23320114bd1dd7537ccec45a03cef
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "./ERC20.sol"; contract TETRIS is ERC20 { constructor( string memory name, string memory symbol, uint256 totalSupply ) ERC20(name, symbol) { _mint(msg.sender, totalSupply); } }
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name...
v0.8.10+commit.fc410830
true
200
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000028b4f055c2a067cf2ae67b296a3ef6171a47526c00000000000000000000000000000000000000000000000000000000000000065465747269730000000000000000000000000000000000000000000000000000...
Default
false
HKManage
HKManage.sol
0x97b0f3d33eb37e652dff50d663958d85642a2dac
Solidity
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ ...
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"_percent","outputs":[{"internalType":"uint256","name":"","type"...
v0.8.20+commit.a1b79de6
true
200
Default
None
false
ipfs://c2d890b8f52c8bf6dea1bb4ad1acf0ec7d958771078697fcb8ce20b83fab73de
Pepe
Pepe.sol
0x20780211f81d79034204cc41d65ad552a436afb1
Solidity
/** *Submitted for verification at Etherscan.io on 2023-10-10 */ // SPDX-License-Identifier: MIT /** Telegram: https://t.me/pepeonethportal Twitter: https://twitter.com/Pepeeth69 **/ pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual retur...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
MIT
false
ipfs://42f9a98055f26d173d6e50d5362e74391b0a6250099ba1d4e9f8d98861afe6c1
MasterChef
contracts/libs/SafeERC20.sol
0xb4b7cf8db072c56a783f8977e1349a6511e36b86
Solidity
pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use t...
[{"inputs":[{"internalType":"contract AapeToken","name":"_aape","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_aapePerBlock","type":"uint256"},{"internalType":"address","name":"_treasuryAddress","type":"address"}],"stateMutability":"nonpayable","typ...
v0.6.12+commit.27d51765
true
200
000000000000000000000000a3ce5f1da95b1f298c3c23ff477b168590d14eda00000000000000000000000000000000000000000000000000000000000004d2000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000973854eafb2d4b8e5b7c62c1158aa3f099929b24
Default
MIT
false
ipfs://f13b055dd1484ad734906839889de4f8dccdbcff18f85dde3d927f0b14733c09
REFLECT
REFLECT.sol
0xc36fce80c8d815ffd87fd9c4319827187d425987
Solidity
/* REFLECT aims to be the flagship token of the Defi 3.0 ecosystem. Made by an established dev (with some projects reaching over $10m mcap), $REFLECT looks to reward holders with immediate passive income (14% eth reflections) removing the need to sell tokens in order to achieve life (read: wife) changing returns. ...
[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","type":"address"},{"internalType":"address[]","name":"whitelistAddress","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":...
v0.8.10+commit.fc410830
true
200
0000000000000000000000005af2bf9da006a326cadd17137b22363446c0192f0000000000000000000000005af2bf9da006a326cadd17137b22363446c0192f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010000000000000000000000005af2bf9da006a326cadd17137b22363446c0192f
Default
None
false
ipfs://eda1d21befbe3957578dcfe4f8053e5dde011973d33b855d5d4bd3e47cdba5d5
KomethCyberHornetsProxy
contracts/project/kometh/cyber-hornets/KomethCyberHornetsProxy.sol
0x0b2e0bdaffd0881988f37057104977c9206fe481
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; inte...
[{"inputs":[{"internalType":"address","name":"_cyberHornetsAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"ad...
v0.8.13+commit.abaa5c0e
true
1,000
000000000000000000000000303fd791674d67e1288f769b54699c170eede5e7
Default
false
Pepe314
Pepe314.sol
0x42bb0a07e13793d1abd33446eece117bce24c32c
Solidity
// SPDX-License-Identifier: MIT /** $PEPE3.14 https://twitter.com/pepepicoineth **/ pragma solidity ^0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.18+commit.87f61d96
true
200
Default
None
false
ipfs://6ff5eb89369a3d3938af118ad955c7d9ffc30e79bb7068f3c6d33983ee670da5
Revengebirds
Revengebirds.sol
0x9abced5214d8ca57841d00877e85d6bb8a287579
Solidity
// 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]. * * Implementers can declare support of contract interfaces, which can t...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256...
v0.8.15+commit.e14f2714
true
200
Default
None
false
ipfs://2cc05edf8d726f735b545fecb7e759cd8998448711a13ab93b54635ccd9c8f19
WAGT
contracts/WAGT.sol
0xfa7622f718e1c78db3fb83630e4e68304c03ef15
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: We Are All Going To /// @author: manifold.xyz import "./ERC1155Creator.sol"; //////////////////////////////////////////////////////////////////////////////////////////// // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.7+commit.e28d00a7
true
300
Default
true
0x142fd5b9d67721efda3a5e2e9be47a96c9b724a4
_patrickStaking
staking.sol
0x5be6e83bf88c3731d61bb049a4f771fe31970e81
Solidity
//SPDX-License-Identifier: MIT import "./ERC20.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./IERC20.sol"; pragma solidity ^0.8.17; contract _patrickStaking is Ownable { IERC20 public token; // The ERC20 token being staked uint256 public apy; uint256 public rewardCycleDays...
[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_initialAPY","type":"uint256"},{"internalType":"uint256","name":"_initialCycleDays","type":"uint256"},{"internalType":"uint256","name":"_lockPeriod","type":"uint256"}],"stateMutability":"nonpayable","type":"...
v0.8.17+commit.8df45f5f
false
200
00000000000000000000000058bfb949ab817470704625288b935e00e8c4f76d00000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000e
Default
MIT
false
ipfs://b77c2b3312deca0f1decc09df230770dab8a76e1f703e0f0485e56f8e02f3b27
DefBlowNfTeaContract
Allowlist.sol
0xfa577bd8084746899cd60b19b7c15047c95d818a
Solidity
pragma solidity ^0.8.0; abstract contract Allowlist is Teams { bytes32 public merkleRoot; bool public onlyAllowlistMode = false; /** * @dev Update merkle root to reflect changes in Allowlist * @param _newMerkleRoot new merkle root to reflect most recent Allowlist */ function updateMer...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256...
v0.8.9+commit.e5eed63a
true
200
00000000000000000000000017ef96045d1d08c3d9f9e40b50d3f6962f63e9b4
Default
None
false
DefBlowNfTeaContract
contracts/DefBlowNfTeaContract.sol
0xfa577bd8084746899cd60b19b7c15047c95d818a
Solidity
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract DefBlowNfTeaContract is RamppERC721A { constructor() RamppERC721A("DefBlow NFTea", "DBNFT"){} } //*********************************************************************// //*********************************************************************// /...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256...
v0.8.9+commit.e5eed63a
true
200
00000000000000000000000017ef96045d1d08c3d9f9e40b50d3f6962f63e9b4
Default
None
false
Emblem
contracts/LeasedEmblem.sol
0xdb0acc14396d108b3c5574483acb817855c9dc8d
Solidity
pragma solidity 0.7.6; contract LeasedEmblem is ERC721, Ownable { using SafeMath for uint256; address internal leaseExchange; struct Metadata { uint256 amount; address leasor; uint256 duration; uint256 tradeExpiry; uint256 leaseExpiry; bool isMining; } mappi...
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"uint8","name":"_decimal","type":"uint8"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"address","name":"_wallet","type":"address"}],"stateMutab...
v0.7.6+commit.7338295f
false
200
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000016673a035fb4f6e8e5fe1e50ae8d60376a9b04ed...
Default
MIT
false
ipfs://0653ca10542c16db85c0ba40f0fc4f7a94a7b271054e7d4b2845e3e12a72c371
Groooook
Groooook.sol
0xbf382af480a01209340d393c7ead7a170e01a3fd
Solidity
/** Twitter: https://x.com/GrooookErc */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view r...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
MIT
false
ipfs://bffba035f57ac11f9f15fae1e6e084491a94ac7be7eef15b6eb383adfa0bc7d4
sp
contracts/sp.sol
0x7c11ec32d3a521f39dadda8a1269244f201f64a9
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: Season 2 /// @author: manifold.xyz import "./manifold/ERC721Creator.sol"; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0x2d3fc875de7fe7da43ad0afa0e7023c9b91d06b1
JiyukoDAppCasino
JiyukoDAppCasino.sol
0xf70ad0079242c1dd49f5f56b0bbf4b50aa55266a
Solidity
// SPDX-License-Identifier: MIT // https://www.jiyuko.com/ pragma solidity ^0.8.19; /** * @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 acce...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.19+commit.7dd6d404
false
200
Default
None
false
ipfs://02f605eb594d2d49137c180d350496481c12bfe44c40709f1c2f5c9881fed9d6
MPH
contracts/MPH.sol
0x400cf72151d60f3e98261b27188c10c23cf7aa24
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: MY PET HOOLIGAN /// @author: manifold.xyz import "./manifold/ERC721Creator.sol"; //////////////// // // // // // AMGI // // // // // //////////////// contract MPH is ERC721Creator { constructo...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0x5133522ea5a0494ecb83f26311a095ddd7a9d4b6
VCR
contracts/VCR.sol
0xdc254e9ac08886814911f23299782a017f87ec57
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: Vicente /// @author: manifold.xyz import "./manifold/ERC721Creator.sol"; ////////////////////////////////////////////////////////////////////////// // // // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0x2d3fc875de7fe7da43ad0afa0e7023c9b91d06b1
PEPITALIK
@openzeppelin/contracts/math/SafeMath.sol
0xf519d4242d8b5e3c0b4b1530cc9b10f7a25fc4b9
Solidity
// 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 assume that an overflow raises an * erro...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.6.4+commit.1dca32f3
false
200
Default
None
false
ipfs://e78df3f7de49c07a70a6c5b412af38d623528a7a01c88d986bd282c63bc2141b
XWOJAK
Token.sol
0x22217419fd8901686a2723340ac6d8dea5bd91b0
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "./ERC20.sol"; contract XWOJAK is ERC20Permit, ReentrancyGuard { constructor() ERC20Permit("XWOJAK", "XWOJAK") { _mint(msg.sender, 1000000000 * 10 ** decimals()); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"index...
v0.8.20+commit.a1b79de6
false
200
Default
MIT
false
ipfs://ee12d977ece16bf793fc862e624ef7924fa4224a097511eee42ef9cd3a4245b3
Pepe
Pepe.sol
0x3555fff83ea9cea65533f731a8915986a197bc62
Solidity
// SPDX-License-Identifier: UNLICENSED /* https://babypepeofficial.com https://twitter.com/bepe_erc https://t.me/babypepeoneth */ pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface I...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
MIT
false
ipfs://54e3872638313059147e07a7097b34b2ebec5fe219764fa942436c82ab7d25c1
BitchCoin
contracts/maxcoin/BitchCoin.sol
0x87a86ecb61195659789ec4a5e6c3b2c4e8430204
Solidity
// SPDX-License-Identifier: Unlicense /* $BITCH TOKEN UP ON MY SHIT $BITCH WE FINNA GET RICH Twitter: https://twitter.com/bitchcoineth_ Telegram: https://t.me/BitchCoinentry */ pragma solidity ^0.8.0; import { ERC20 } from "solmate/src/tokens/ERC20.sol"; import { Owned } from "solmate/src/auth/Owned.sol"; contract...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"...
v0.8.17+commit.8df45f5f
true
800
Default
false
DogDev
DogDev.sol
0xca6a57bb510dc87649bf03688193929a021da12a
Solidity
/** Telegram: https://t.me/devsdogluna Website: https://devsdog.com/ Twitter: https://x.com/devsdogluna ***/ // SPDX-License-Identifier: NONE pragma solidity 0.8.20; // Updated pragma statement interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address acc...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
false
200
Default
None
false
ipfs://bd35eac22cde1031a6f2702a694de9fecd3e47528e43b87baf51d730cd994d19
Shitland
Shitland.sol
0xee9b948a6da7334f98b3fdeabd1244c453914b3a
Solidity
/* https://twitter.com/shitlandcoin @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@...
[{"inputs":[{"internalType":"address","name":"_shitland","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":f...
v0.8.20+commit.a1b79de6
true
207
000000000000000000000000a179f08afcbed7035eca1e48071b44aa36daf351
Default
None
false
ipfs://3861ae5bf78b75284650b4ed8195a868285b8d24cb9dc025f7b04f8f674f3451
PonzyAI
PonzyAI.sol
0x79942cbde470d7564681f09310099feaa70007cd
Solidity
// SPDX-License-Identifier: MIT /* */ pragma solidity 0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abs...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.10+commit.fc410830
true
200
Default
None
false
ipfs://ea3ba670dd4892815de5c3e60f225816a95fc8e1fa68ff0c542176a82c9eec5e
Honesty
Honesty.sol
0x851686aaff5ef7dd4a459644bdbcd5ba1d4133b7
Solidity
// SPDX-License-Identifier: MIT // https://t.me/HonestyIsTheBestPolicyErc // https://twitter.com/elonmusk/status/1720221949861765601 pragma solidity 0.8.21; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address ind...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.21+commit.d9974bed
false
200
Default
MIT
false
ipfs://2154956dc06263a1f912555667dcc5cbc69aa0251f42b0a1e62dec97f4f5933f
SarDAO
SarDAO.sol
0x68c7b07bcafe6eba03402bc322e8a4e842d485d3
Solidity
pragma solidity ^0.8.7; // SPDX-License-Identifier: UNLICENSED abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address accou...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.7+commit.e28d00a7
false
200
Default
None
false
ipfs://8f1a82a54801a4b0ab83954cb63f413a273cba87d8f9818c2d53c47d2e1b2c0e
FeeCollector
src/Periphery/FeeCollector.sol
0xbd6c7b0d2f68c2b7805d88388319cfb6ecb50ea9
Solidity
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.13; import { LibAsset } from "../Libraries/LibAsset.sol"; /// @title Fee Collector /// @author LI.FI (https://li.fi) /// @notice Provides functionality for collecting integrator fees contract FeeCollector { /// State /// // Integrator -> TokenAddress...
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"NativeAssetTransferFailed","type":"error"},{"inputs":[],"name":"NativeValueWithERC","type":"error"},{"inputs":[],"name":"...
v0.8.13+commit.abaa5c0e
true
10,000
000000000000000000000000c8958ddd38e0c597e0bc3cb2256aead8b4352145
Default
false
FeeCollector
src/Libraries/LibAsset.sol
0xbd6c7b0d2f68c2b7805d88388319cfb6ecb50ea9
Solidity
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.13; import { NullAddrIsNotAnERC20Token, NullAddrIsNotAValidSpender, NoTransferToNullAddress, InvalidAmount, NativeValueWithERC, NativeAssetTransferFailed } from "../Errors/GenericErrors.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; imp...
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"NativeAssetTransferFailed","type":"error"},{"inputs":[],"name":"NativeValueWithERC","type":"error"},{"inputs":[],"name":"...
v0.8.13+commit.abaa5c0e
true
10,000
000000000000000000000000c8958ddd38e0c597e0bc3cb2256aead8b4352145
Default
false
FeeCollector
src/Errors/GenericErrors.sol
0xbd6c7b0d2f68c2b7805d88388319cfb6ecb50ea9
Solidity
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; error InvalidAmount(); error TokenAddressIsZero(); error CannotBridgeToSameNetwork(); error ZeroPostSwapBalance(); error InvalidBridgeConfigLength(); error NoSwapDataProvided(); error NativeValueWithERC(); error ContractCallNotAllowed(); error NullAddrIsNotAValid...
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"NativeAssetTransferFailed","type":"error"},{"inputs":[],"name":"NativeValueWithERC","type":"error"},{"inputs":[],"name":"...
v0.8.13+commit.abaa5c0e
true
10,000
000000000000000000000000c8958ddd38e0c597e0bc3cb2256aead8b4352145
Default
false
HyperChainx
@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol
0xbd54a526ca0416085b604a573fc2b596cba726ca
Solidity
@v1.1.0-beta.0 pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) ...
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_ownerBuyTax","type":"uint256"}...
v0.8.7+commit.e28d00a7
false
200
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005...
Default
MIT
false
ipfs://3c8368ba5baa010ee71754d4c1a841f25899c7a82b14cb5b8e6d2a5a14b382a6
UnibotRewardsNFT
UnibotRewardsNFT.sol
0x6eee70b003d0a7147605f71939df45b652aa77be
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract UnibotRewardsNFT { uint256 public totalSupply = 10000; address UnibotShare; constructor(address _delegate) { UnibotShare = _delegate; } fallback() external payable { (bool success, bytes memory data)...
[{"inputs":[{"internalType":"address","name":"_delegate","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}...
v0.8.20+commit.a1b79de6
false
200
0000000000000000000000004f06a3a5ba26c3b941308e3421aab24375a64bae
Default
MIT
false
ipfs://f8c3897839d856897e78fce0af0b307df05cc25abf64d619dc5f12a5e927f52b
PEPE
contracts/PEPE.sol
0x9d7c0a66e870afb3961d285968296cfe361271ea
Solidity
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: STAND WITH PEPE /// @author: manifold.xyz import "./manifold/ERC1155Creator.sol"; ///////////////////////////////// // // // // // STAND ON PEPE WITH US // // ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
v0.8.17+commit.8df45f5f
true
300
Default
true
0xe9ff7ca11280553af56d04ecb8be6b8c4468dcb2
WLD
WLD.sol
0xa2bea93f22b8ac791ad8fe6e49a723be97c33249
Solidity
/* https://worldcoin.org/ https://t.me/worldcoin https://twitter.com/worldcoin */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { ...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.19+commit.7dd6d404
true
200
Default
None
false
ipfs://a7672a9d498d97cb0375ed4b04bad2c04af0ce2ad069c0b02011f445fccd6fc3
DOLLARBIT
DOLLARBIT.sol
0x04b490a585a199366384e69b68f027207da0de5e
Solidity
// SPDX-License-Identifier: MIT /** DOLLARBIT TAX 5/5 Total 1B Token $$$ 6000ETH JACKPOT$$$ Right now, the game is about who owns the most tokens within one hour after launch. The winner will possess all the tokens from the prize pool. After issuing tokens, all tokens will be injected into the liquidity pool. With a 2...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
false
DegenCat
DegenCat.sol
0x61f00dfcbcb5e7a5dba1590c2db72d1dc1900ae3
Solidity
/** https://www.degencat.xyz/ https://twitter.com/DegenCatsToken https://t.me/degencats_entry */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgDa...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.20+commit.a1b79de6
true
200
Default
None
false
ipfs://5a940421af6fa323c31711e62ee15a5d8bec2cfb8f7badeac4b98a4181b4db5e
NULL
NULL.sol
0x1a2ea011112dd9d3d923094cfc65531628bd1518
Solidity
// SPDX-License-Identifier: Unlicensed /** You are entering a space of Null Social Fi Web3 Platform. In the ever-evolving landscape of the digital age, Null Social stands as a beacon for next-generation Web3 social platforms. Website: https://www.nullsocial.xyz Telegram: https://t.me/null_erc Twitter: https:/...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.19+commit.7dd6d404
true
200
Default
MIT
false
ipfs://2c0e550cde40b4c5f9ceb5564890d739d47934449526893e78371ee9ef866aff
PUMPIT
PUMPIT.sol
0xfbe1ceeec4838f42fa9acd923576a0289bb6e734
Solidity
/** */ /** Pump it $PUMPIT In crypto, everyone loves the term $PUMPIT. It means bags get filled and chads get involved. Let's $PUMPIT up once again! Twitter: https://twitter.com/PumpItEth?t=mU9sCZ5PVqZmQlC41h1Guw&s=09 */ pragma solidity 0.8.9; // SPDX-License-Identifier: UNLICENSED abstract co...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.9+commit.e5eed63a
true
200
Default
MIT
false
ipfs://e345a24ff9916984203a0a9daceb35440c60c016d0221f7cb3d154fe9a494794
DORK
DORK.sol
0xf76ac636d77ceef50d3ba535134c87d6b3d5b0c0
Solidity
/* https://t.me/MegaDorkPortal */ // SPDX-License-Identifier: MIT pragma solidity 0.8.15; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { t...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.15+commit.e14f2714
true
200
Default
MIT
false
ipfs://a26562c35f8c6aac560e996ae0acbd362bffec1646580a2e636baaeef67262ea
Killberbeancoin
Killberbeancoin.sol
0x1e753118cbc58661b85cc11f944c668184bf3477
Solidity
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; // 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 fr...
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{...
v0.8.18+commit.87f61d96
false
200
Default
MIT
false
ipfs://97d16a8f94d3f0b52bd136c3932e71059ddb1215b5dee546095b6dafc43e3317
PEPEKNIGHT
PEPEKNIGHT.sol
0xdf6d9e57880cd1076a0b559a35507bdfb9d96c0d
Solidity
/** // https://t.me/babytuzki */ // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // SPDX-License-Identifier: MIT /** * @dev Provides information about the current execution context, including the * sender of the transaction and its da...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.17+commit.8df45f5f
false
200
Default
None
false
ipfs://f1b4746c6492423bf298b2452d197b32e357e11aa2a3ba73c009cd04a7fd26dc
Slayer
Slayer.sol
0xddd018d7d126b25e94a16748d70ca33fa5011e2f
Solidity
/** Telegram: https://t.me/GoblinSlayerPortal */ // SPDX-License-Identifier: MIT pragma solidity 0.8.16; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external vie...
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}...
v0.8.16+commit.07a7930e
true
200
Default
MIT
false
ipfs://a6565dd038c1d5a253a5f4021b608dfd23a56cdcf258ce1eb0ada10e0c7adc47