This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |