Messaging dapp built on Solana.
https://medium.com/solana-labs/announcing-the-winners-of-solanas-inaugural-hackathon-66a280b33e6
https://jabber-test.vercel.app
- Send end-to-end encrypted messages to any valid Solana address. Your signing keys are converted to Curve25519 to be used in encrypting the messages.
- Cheap and real-time. Messages cost 0.0015 SOL for a tweet length message stored permanently. Temporary storage will be much cheaper(it will work like disappearing messages!).
- The creator pays and allocates for storage(upto 10MB) for the group, when storage is full the oldest messages are recycled. When sending messages you only pay the computation costs.
Requires node
, yarn
, docker
, cargo
cd web && yarn install
- Run the solana localnode
yarn localnet:up
- Create account
yarn sol:account:create
- Get airdrops
yarn sol:account:airdrop
- Deploy program
yarn sol:program:deploy
- Copy the programId to
web/config.ts
- Run app
yarn dev