js-waku/examples/eth-pm
Franck Royer 612027a375
examples: Downgrade React to avoid peer dep conflict with mui
Material UI 4 is not compatible with React 18 and it looks like
some peer dep were recently changed, creating conflict issues
in CI.
2022-06-17 15:42:38 +10:00
..
config eth-pm: Remove crypto-browserify 2022-05-11 15:54:54 +10:00
public Rename Eth-DM to Eth-PM 2021-08-17 16:06:46 +10:00
src Use js-waku from npmjs.com instead of local build 2022-05-03 10:47:13 +10: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 Fix phrasing 2022-05-13 16:06:24 +10:00
package-lock.json examples: Downgrade React to avoid peer dep conflict with mui 2022-06-17 15:42:38 +10:00
package.json examples: Downgrade React to avoid peer dep conflict with mui 2022-06-17 15:42:38 +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 master branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/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