message-choice
TypeScript icon, indicating that this package has built-in type declarations

0.0.0-alpha.10 • Public • Published

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)

/message-choice/

    Package Sidebar

    Install

    npm i message-choice

    Weekly Downloads

    8

    Version

    0.0.0-alpha.10

    License

    MIT

    Unpacked Size

    26.3 kB

    Total Files

    5

    Last publish

    Collaborators

    • fabianriewe