https://github.com/rayniel95/ecdsa-node
My solution to week 1 project of Alchemy University.
https://github.com/rayniel95/ecdsa-node
alchemy-university blockchain cryptography docker express nextjs react reactjs web3
Last synced: 2 months ago
JSON representation
My solution to week 1 project of Alchemy University.
- Host: GitHub
- URL: https://github.com/rayniel95/ecdsa-node
- Owner: rayniel95
- Created: 2023-04-16T21:49:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-26T00:58:02.000Z (almost 2 years ago)
- Last Synced: 2025-01-17T04:13:26.895Z (4 months ago)
- Topics: alchemy-university, blockchain, cryptography, docker, express, nextjs, react, reactjs, web3
- Language: TypeScript
- Homepage: https://rayniel95.github.io/ecdsa-node/
- Size: 2.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# About
## ECDSA NodeThis project is an example of using a client and server to facilitate transfers between different addresses. Since there is just a single server on the back-end handling transfers, this is clearly very centralized. We won't worry about distributed consensus for this project.
However, something that we would like to incoporate is Public Key Cryptography. By using Elliptic Curve Digital Signatures we can make it so the server only allows transfers that have been signed for by the person who owns the associated address.
## Requirements
- Docker
## Hot to execute
### Steps to create the Nextjs client1. Go to https://rayniel95.github.io/ecdsa-node/
### Steps to create the node server
1. Install [Docker](https://www.docker.com/)
2. Download the project
3. Open a terminal in the project folder
4. Build the image, execute: `docker build ./ -f Dockerfile-node -t server-node`
5. Run the container, execute: `docker run -it -p 3042:3042 server-node`## How it works

### Demo[Watch the demo in Youtube](https://youtu.be/eSoLngQydYc)
[Watch the code explanation in Youtube](https://youtu.be/_9IlKv0q2YI)
### TODO
- [ ] add golang server
- [ ] add rust server
- [ ] add sign the message using custom private key on frontend
- [x] add a demo