0.0.0-alpha.10 • Published 4 years ago
message-choice v0.0.0-alpha.10
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)
0.0.0-alpha.10
4 years ago
0.0.0-alpha.9
4 years ago
0.0.0-alpha.8
4 years ago
0.0.0-alpha.3
4 years ago
0.0.0-alpha.4
4 years ago
0.0.0-alpha.1
4 years ago
0.0.0-alpha.2
4 years ago
0.0.0-alpha.7
4 years ago
0.0.0-alpha.5
4 years ago
0.0.0-alpha.6
4 years ago
0.0.0-alpha
4 years ago