Skip to content

Instantly share code, notes, and snippets.

@oliverpret3664
oliverpret3664 / HolidayToken.sol
Created November 21, 2021 21:47
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.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
/**
*Submitted for verification at BscScan.com on 2021-11-13
*/
/**
*Submitted for verification at BscScan.com on 2021-11-13
*/
/**
@oliverpret3664
oliverpret3664 / Holiday Token Test_flat.sol
Created November 13, 2021 13:19
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.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
// File: Holiday Token Test.sol
pragma solidity ^0.8.0;
/**
* SAFEMATH LIBRARY
*/
@oliverpret3664
oliverpret3664 / Holiday Token test.sol
Created November 13, 2021 12:28
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.0+commit.c7dfd78e.js&optimize=true&runs=200&gist=
/**
*Submitted for verification at BscScan.com on 2021-11-11
*/
/**
Holiday token is a next generation community driven Token rewarding holders 8% in Stable Coin BUSD.
Incorporating passive income and charity events to the less fortunate every holiday.
@oliverpret3664
oliverpret3664 / BOUNTYWHALE.SOL
Created November 5, 2021 13:33
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.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
/**
*Submitted for verification at BscScan.com on 2021-10-15
*/
/**
Name = BOUNTY WHALE
Symbol = BWHALE
Total Supply = 100,000,000,000
Decimal = 18
@oliverpret3664
oliverpret3664 / AggregatorV3Interface.sol
Created November 4, 2021 18:08
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.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
pragma solidity 0.8.7;
// SPDX-License-Identifier: MIT
interface AggregatorV3Interface {
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function version() external view returns (uint256);
@oliverpret3664
oliverpret3664 / AggregatorV3Interface.sol
Created November 4, 2021 17:56
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.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
pragma solidity 0.8.7;
// SPDX-License-Identifier: MIT
interface AggregatorV3Interface {
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function version() external view returns (uint256);
@oliverpret3664
oliverpret3664 / SCP final with changes.sol
Created September 9, 2021 21:11
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.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
@oliverpret3664
oliverpret3664 / SCP.sol
Created September 7, 2021 13: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.6.12+commit.27d51765.js&optimize=false&runs=200&gist=
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
@oliverpret3664
oliverpret3664 / SCP final with changes.sol
Created September 1, 2021 19:01
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.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
@oliverpret3664
oliverpret3664 / SCP final with changes.sol
Created August 20, 2021 00:52
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=
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);