Skip to content

Commit 169b857

Browse files
committed
Prettyfying MVP project
1 parent 5f7ec25 commit 169b857

File tree

2 files changed

+38
-8
lines changed

2 files changed

+38
-8
lines changed

README.md

+38-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ Live Example -> https://altablock.herokuapp.com/wallet
66
This is an example of a DeFI Blockchain structure using the BlockMatrix Structure.
77
---
88

9-
## Motivation:
9+
## Project Snaphshots
10+
11+
![image](https://user-images.githubusercontent.com/20924663/84569761-27ea1b00-ad89-11ea-8328-a1481a27ee74.png)
12+
![image](https://user-images.githubusercontent.com/20924663/84569785-39cbbe00-ad89-11ea-8d56-bb80b4251210.png)
13+
![image](https://user-images.githubusercontent.com/20924663/84569796-51a34200-ad89-11ea-8955-eb9147131e20.png)
14+
15+
## Motivation
1016

1117
Solving the GDPR concerns within the blockchain industry to in reaction to the 2018 European
1218
law stating the key points in placing user privacy 1st and the so called "Right to be forgotten",
@@ -15,7 +21,8 @@ if the user decides to opt out of their data (pseudonyms or referential) stored
1521
## Project Structure
1622

1723
This project is built upon the Spring Boot (Java) Framework with a in-built UI panel for easier interface and
18-
visualization of the Blockchain (Blockmatrix).
24+
visualization of the Blockchain (Blockmatrix) all in one package. I also throughtout the project switched to html5
25+
templating engine (Pug/Jade), as well as opted for (Sass/Scss) for better design management.
1926

2027
## Features
2128

@@ -25,19 +32,43 @@ visualization of the Blockchain (Blockmatrix).
2532
- Number of Blocks on the Network (inside the Block-Matrix/Blockchain),
2633
- Number of "tampered"/"modified" blocks transaction information in the entire "BlockMatrix",
2734
- All transaction made on the BlockChain / BlockMatrix,
28-
35+
- Blockmatrix Dimensions
36+
37+
## Inconveniences
38+
39+
- Currently the project holds x2 wallets on the network, with the ability to create inifite amount (until Java Memeroy Heap exceeds my Heroku Dyno hehe),
40+
- Upon interaction with the wallet, you can only send by default to another 'fixed' wallet on the network.
41+
- The "Access Another Wallet" & "View Wallet Keys" buttons currently do not do anything as I have not implmented an action for them.
42+
- The "Search capability" on the "/block_explorer" is not currently very well designed aesthetically and only will display the JSON ouptut in another tab (yikes)
43+
44+
## Issues
45+
46+
- I have implemented live block mining, but it is not enabled currently and thus every transaction will automatically mine a new block and place it in the blockcmatrix.
47+
- The ability to "register new nodes" on the network works and stores unique nodes onto the blockmatrix, but currently lacking the "/resolve" method gateway endpoint for keeping the blockmatrix up-to-date on other users machines.
48+
- Using Heroku on a free tier does not allow me to instanciate a higher "blockmatrix dimension" value (ie: 10000^2) because it causes a "Java Heap Leak Error"... Although it will work perfectly with higher dimensions on your personal machine depedning on your RAM capacity.
49+
- Heroku Free tier will reset the Dyno upon a certain period of inactivity, earasing thus all of the blockmatrix data and reboot its from scratch.
50+
2951
## Getting Set-up
3052

3153
1. Download / clone the repository to your local computer,
3254
2. Open this file in your IDE or text-editor,
33-
3. Run the Application.class Main app.
55+
3. Run the Application.class app,
56+
4. you should have now your 'localhost:5000/wallet' running, should be identical to the live Heroku Version.
3457

3558
OR
3659

37-
You can download and run the Java.exe located [here]() or in the [/release_branch]().
60+
You can download and run the Java.exe package file located [here]() or in the [/release_branch]().
61+
62+
OR
63+
64+
Just visit the Live Heroku version [here](https://altablock.herokuapp.com/wallet).
3865

3966
## Resources
4067

41-
- Research Paper from NIST [here](),
42-
- Referential GitHub Repository on BlockMatrix from NIST [here](),
68+
- Blockchain Immutability research paper [here](https://www.researchgate.net/publication/336822518_Blockchain_Mutability_Challenges_and_Proposed_Solutions),
69+
- Follow up Research Paper from unistgov [here](https://csrc.nist.gov/CSRC/media/Publications/white-paper/2018/05/31/data-structure-for-integrity-protection-with-erasure-capability/draft/documents/data-structure-for-integrity-with-erasure-draft.pdf),
70+
- Referecnce Offical GitHub Repository on BlockMatrix from unistgov [here](https://github.com/usnistgov/blockmatrix),
71+
72+
## Takeaway
4373

74+
All in all I continue to work on my personal research and discovering new technologies and the blockmatrix seems very exciting. It was a crazy 3 weeks projects (from research to MVP) and will be looking at ways to utilize this technology in the near future. Currently thinking to apply it HealthCare systems &/or Identity System or even use Smart Contracts with it.

src/main/resources/application.properties

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ spring.profiles.active=production
66
spring.devtools.livereload.enabled=false
77
logging.level.org.springframework=INFO
88

9-
109
# --- Thymeleaf Config. ---
1110
app.name=SpringBootBean
1211
spring.thymeleaf.mode=HTML

0 commit comments

Comments
 (0)