Skip to content

Instantly share code, notes, and snippets.

View jay75chauhan's full-sized avatar
☄️
NEVER GIVE UP

jay chauhan jay75chauhan

☄️
NEVER GIVE UP
View GitHub Profile
@jay75chauhan
jay75chauhan / Transactions.sol
Created January 12, 2022 13:12 — forked from adrianhajdin/Transactions.sol
Build and Deploy a Modern Web 3.0 Blockchain App | Solidity, Smart Contracts
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract Transactions {
uint256 transactionCount;
event Transfer(address from, address receiver, uint amount, string message, uint256 timestamp, string account, string keyword);