2021-08-17 06:01:27 +00:00
|
|
|
# Ethereum Private Message Web App
|
2021-05-28 05:35:50 +00:00
|
|
|
|
2021-07-30 03:55:43 +00:00
|
|
|
**Demonstrates**:
|
|
|
|
|
|
|
|
- Private Messaging
|
|
|
|
- React/TypeScript
|
|
|
|
- Waku Light Push
|
|
|
|
- Signature with Web3
|
|
|
|
- Asymmetric Encryption
|
2021-08-26 05:24:57 +00:00
|
|
|
- Symmetric Encryption
|
2021-07-30 03:55:43 +00:00
|
|
|
|
|
|
|
A PoC implementation of [20/ETH-DM](https://rfc.vac.dev/spec/20/).
|
|
|
|
|
2021-08-17 06:01:27 +00:00
|
|
|
Ethereum Private Message, or Eth-PM, is a protocol that allows sending encrypted message to a recipient,
|
2021-07-30 03:55:43 +00:00
|
|
|
only knowing their Ethereum Address.
|
|
|
|
|
2021-08-17 06:01:27 +00:00
|
|
|
This protocol has been created to demonstrated how encryption and signature could be added to message
|
2021-07-30 03:55:43 +00:00
|
|
|
sent over the Waku v2 network.
|
|
|
|
|
2022-02-02 00:56:40 +00:00
|
|
|
The `master` branch's HEAD is deployed on GitHub Pages at https://js-waku.wakuconnect.dev/examples/eth-pm/.
|
2021-07-30 03:55:43 +00:00
|
|
|
|
|
|
|
To run a development version locally, do:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
git clone https://github.com/status-im/js-waku/ ; cd js-waku
|
|
|
|
npm install # Install dependencies for js-waku
|
|
|
|
npm run build # Build js-waku
|
2021-08-17 06:01:27 +00:00
|
|
|
cd examples/eth-pm
|
2021-07-30 03:55:43 +00:00
|
|
|
npm install # Install dependencies for the web app
|
2021-08-17 06:01:27 +00:00
|
|
|
npm run start # Start development server to serve the web app on http://localhost:3000/js-waku/eth-pm
|
2021-07-30 03:55:43 +00:00
|
|
|
```
|