Skip to content

Instantly share code, notes, and snippets.

View sacredstarfamily's full-sized avatar
💭
Awesomesauce

Caleb Swenson sacredstarfamily

💭
Awesomesauce
View GitHub Profile
@sacredstarfamily
sacredstarfamily / contracts...anyway.sol
Created October 1, 2021 16:24
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-03-01
*/
/**
*Submitted for verification at BscScan.com on 2021-03-01
*/
/**
@sacredstarfamily
sacredstarfamily / contracts...new.sol
Created September 20, 2021 03:31
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.8.0;
import "./ERC721.sol";
import "./counters.sol";
import "./Ownable.sol";
import "./ERC721URIStorage.sol";
contract treeple is ERC721URIStorage , Ownable{
@sacredstarfamily
sacredstarfamily / 1_Storage.sol
Created October 12, 2020 18:34
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.5.17+commit.d19bba13.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.7.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;