js-waku/examples/eth-pm
Franck Royer 5af6d84852
Encrypt Public Key Messages using symmetric encryption
2021-08-26 16:12:53 +10:00
..
public Rename Eth-DM to Eth-PM 2021-08-17 16:06:46 +10:00
src Encrypt Public Key Messages using symmetric encryption 2021-08-26 16:12:53 +10:00
.gitignore Rename Eth-DM to Eth-PM 2021-08-17 16:06:46 +10:00
README.md Encrypt Public Key Messages using symmetric encryption 2021-08-26 16:12:53 +10:00
package-lock.json Run build with NodeJS 16 2021-08-26 13:02:09 +10:00
package.json Use sign typed data instead of personal sign 2021-08-18 16:48:28 +10:00
tsconfig.json Rename Eth-DM to Eth-PM 2021-08-17 16:06:46 +10:00

README.md

Ethereum Private Message Web App

Demonstrates:

  • Private Messaging
  • React/TypeScript
  • Waku Light Push
  • Signature with Web3
  • Asymmetric Encryption
  • Symmetric Encryption

A PoC implementation of 20/ETH-DM.

Ethereum Private Message, or Eth-PM, is a protocol that allows sending encrypted message to a recipient, only knowing their Ethereum Address.

This protocol has been created to demonstrated how encryption and signature could be added to message sent over the Waku v2 network.

The main branch's HEAD is deployed on GitHub Pages at https://status-im.github.io/js-waku/eth-pm/.

To run a development version locally, do:

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
cd examples/eth-pm
npm install   # Install dependencies for the web app
npm run start # Start development server to serve the web app on http://localhost:3000/js-waku/eth-pm