Skip to content

Latest commit

 

History

History
84 lines (47 loc) · 2.11 KB

Readme.md

File metadata and controls

84 lines (47 loc) · 2.11 KB

Mlemcoin Cryptocurrency

[]: # Frontend Framework: Angular - PrimeNG UI
[]: # Backend Framework: NodeJS - ExpressJS - WebSocket
[]: # API: REST
[]: # Database: InMemory

This is a cryptocurrency that is used as a demonstration of the power of blockchain technology.

Video demo here: https://youtu.be/rRbDssgUA7I

How Simple Run ?

Note: This is simple running on dev mode.

Blockchain Node
  1. Goto blockchain-node: cd app/blockchain-node
  2. Install dependencies: npm install
  3. Run: npm run start:dev
Webapp UI
  1. Goto webapp-ui: cd app/webapp-ui
  2. Install dependencies: npm install
  3. Run: npm run start

How to use ?

1. Mlemscan Page
1.1. Dashboard Page

Mlemscan Dashboard Page

1.2. All Blocks Page

Mlemscan All Blocks Page

1.3. All Transactions Page

Mlemscan All Transactions Page

1.4. Transaction Pool Page

Mlemscan Transaction Pool Page

1.5. Wallet Tracker Page

Mlemscan Wallet Tracker Page

1.6. P2P Page

Mlemscan P2P Page

2. Wallet Management Page
2.1. WalletMgmt Disconnect

WalletMgmt Disconnect

2.2. WalletMgmt Connect Actions Tab

WalletMgmt Connect Actions Tab

2.3. WalletMgmt Connect History Tab

WalletMgmt Connect History Tab

2.4. WalletMgmt Connect Pending Tab

WalletMgmt Connect Pending Tab

Reference

Blockchain logic: Lhartikk/Naivecoin: A simple blockchain in Javascript. For educational purposes only. (github.com)

UI components: PrimeNG

Frontend: Angular

Backend: ExpressJS