message-choice
v0.0.0-alpha.10
Published
## Installation ``` yarn add message-choice ```
Downloads
6
Readme
Message Choice
Installation
yarn add message-choice
Usage
import { send, publish, messages, feed } from "message-choice";
Sending a private message
const data = Buffer.from("This is a test")
const receiver = "..."
const txID = await send(data, receiver)
Publishing content
const data = Buffer.from("This is a test")
const txID = await publish(data)
Using a JWK
By default Message Choice uses ArConnect to handle transactions.
If you want to use a JWK simply add it as a parameter into send(data, receiver, jwk)
or publish(data, jwk)
Retrieving messages
const from_address = "..."
const to_address = "..."
const allMessages = await messages(from_address, to_address)
Retrieving published content
const from_address = "..."
const content = await feed(from_address)