Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/play3rzer0/publickeyverification
Verify public key and private key pair.
https://github.com/play3rzer0/publickeyverification
Last synced: about 4 hours ago
JSON representation
Verify public key and private key pair.
- Host: GitHub
- URL: https://github.com/play3rzer0/publickeyverification
- Owner: Play3rZer0
- Created: 2023-02-28T02:08:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-01T01:26:07.000Z (over 1 year ago)
- Last Synced: 2024-07-11T14:25:42.077Z (4 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Ethereum Public Key Verification For ECDSA
This project is an example of verifying a private key to a public key verification to for a public address. This makes use of the React framework, Axios, ethereum-cryptography components among others.
There are two parts. The client and the server.
Here are the installation steps.
A project folder must be created to store the files.
### Client
This connects the Vite SSR (Server Side Rendering) front-end for React.
1. From a terminal window open your project folder.
2. Go to the `/client` folder.
3. Run `npm install` which installs the dependencies needed.
4. Run `npm run dev` to start application in development mode,
5. The app can be opened at http://127.0.0.1:5173/ (localhost).### Server
This starts the node server running at port 3042.
1. From a terminal window open your project folder.
2. Go to the `/server` folder
3. Run `npm install` to install all the depedencies
4. Run `npx nodemon index` to start the serverNote: To use nodemon, you must install it first (npm i nodemon)
### Sending Transaction
There is also a test transaction that allows accounts to send funds to another
account. Must be defined in the index.js file (in the server folder).