js-waku/examples/eth-pm
Franck Royer 4fd2db608b
Update caniuse in all examples
2022-01-13 16:40:11 +11:00
..
public Rename Eth-DM to Eth-PM 2021-08-17 16:06:46 +10:00
src Fix-up new bootstrap API 2022-01-13 16:39:52 +11:00
.env Remove ReactJS warning about webpack 2021-10-12 11:43:29 +11: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 Update caniuse in all examples 2022-01-13 16:40:11 +11: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