Skip to content

Instantly share code, notes, and snippets.

View BaoPham92's full-sized avatar
🎯
Focusing

Bao Pham BaoPham92

🎯
Focusing
  • Maryland, Germantown
View GitHub Profile
@BaoPham92
BaoPham92 / dAppToken.sol
Created February 7, 2019 20:46
Remix IDE dApp smart contracts for testing.
pragma solidity ^0.4.2;
contract DappToken {
string public name = "DApp Token";
string public symbol = "DAPP";
string public standard = "DApp Token v1.0";
uint256 public totalSupply;
event Transfer(
address indexed _from,