Skip to content

Instantly share code, notes, and snippets.

@lilpupshib
lilpupshib / Presale.sol
Created November 27, 2021 00:09
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.6.12+commit.27d51765.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library Address {
@lilpupshib
lilpupshib / LPSHIB.sol
Created November 20, 2021 16:51
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.3+commit.8d00100c.js&optimize=true&runs=200&gist=
/**
* Name: LilPupShib
* Symbol: LPSHIB
* Telegram: https://t.me/lilpupshib_official
*/
//SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.4;
@lilpupshib
lilpupshib / AUDIT.sol
Created November 19, 2021 21:26
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.3+commit.8d00100c.js&optimize=true&runs=200&gist=
//SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.4;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
@lilpupshib
lilpupshib / AUDIT.sol
Created November 19, 2021 06:13
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.3+commit.8d00100c.js&optimize=true&runs=200&gist=
/**
*Submitted for verification at BscScan.com on 2021-11-18
*/
//SPDX-License-Identifier: MIT
pragma solidity 0.8.3;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
@lilpupshib
lilpupshib / LPSHIB.sol
Last active November 17, 2021 21:00
Smart contract LilPupShib
/**
*Submitted for verification at BscScan.com on 2021-11-06
*/
/**
* Name: LilPupShib
* Symbol: LPSHIB
*/
pragma solidity ^0.8.5;