Skip to content

Instantly share code, notes, and snippets.

View jyothiRamilla's full-sized avatar
🎯
Focusing

Jyothi Ramilla jyothiRamilla

🎯
Focusing
View GitHub Profile

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@jyothiRamilla
jyothiRamilla / DappToken.sol
Created August 14, 2020 12:51 — forked from gwmccubbin/DappToken.sol
DApp ERC-20 Token
pragma solidity ^0.5.0;
contract Token {
string public name = "DApp Token";
string public symbol = "DAPP";
uint256 public totalSupply = 1000000000000000000000000; // 1 million tokens
uint8 public decimals = 18;
event Transfer(
address indexed _from,