Skip to content

Instantly share code, notes, and snippets.

View colonelxy's full-sized avatar
💭
Digging a deep AWS hole. Hope to get out of it in time

Harold Oliver colonelxy

💭
Digging a deep AWS hole. Hope to get out of it in time
View GitHub Profile
@colonelxy
colonelxy / Transactions.sol
Created August 3, 2022 04:06 — 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);
@colonelxy
colonelxy / eslintrc.js
Created June 7, 2022 02:14 — forked from adrianhajdin/eslintrc.js
ESLint Configuration
// eslintrc.js
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],