Skip to content

Instantly share code, notes, and snippets.

View tarbusca's full-sized avatar

Tariq Saeed tarbusca

View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
@tarbusca
tarbusca / 1_Storage.sol
Created March 1, 2021 04:23
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.1+commit.df193b15.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.8.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
@tarbusca
tarbusca / 1_Storage.sol
Created February 20, 2021 08:17
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.0+commit.1d4f565a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.8.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
@tarbusca
tarbusca / $fud.sol
Created January 30, 2021 03:26 — forked from shahzaintariq/$fud.sol
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.4.25+commit.59dbf8f1.js&optimize=false&runs=200&gist=
/**
*Submitted for verification at Etherscan.io on 2020-04-28
*/
// BUILT FOR FREE ON https://vittominacori.github.io/erc20-generator
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.6.0;