Skip to content

Instantly share code, notes, and snippets.

View Eversmile12's full-sized avatar
Oh look, a brand new project!

VItto Rivabella Eversmile12

Oh look, a brand new project!
View GitHub Profile
@Eversmile12
Eversmile12 / .gitignore
Created May 23, 2023 15:00
gitignore for create-web3-dapp templates
# Ignore .env and .env.local files in both "frontend" and "backend" folders
frontend/.env
frontend/.env.local
backend/.env
backend/.env.local
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
/// @custom:security-contact vitto@alchemy.com
@Eversmile12
Eversmile12 / Blockchain.py
Created January 28, 2022 10:51
Python Blockchain
# Python program to create Blockchain
# For timestamp
import datetime
# Calculating the hash
# in order to add digital
# fingerprints to the blocks
import hashlib
name: README build
on:
push:
branches: [ main ]
schedule:
- cron: '0 */6 * * *'
jobs:
build: