js-waku/examples/eth-pm
dependabot[bot] 6313e3e4f7
Bump @testing-library/react from 12.1.2 to 13.2.0 in /examples/eth-pm
Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.2 to 13.2.0.
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/react-testing-library/compare/v12.1.2...v13.2.0)

---
updated-dependencies:
- dependency-name: "@testing-library/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-16 15:40:25 +00: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 Bump @testing-library/react from 12.1.2 to 13.2.0 in /examples/eth-pm 2022-05-16 15:40:25 +00:00
package.json Bump @testing-library/react from 12.1.2 to 13.2.0 in /examples/eth-pm 2022-05-16 15:40:25 +00: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