Bitcoin Social transaction creation library
bun add @bitcoinschema/bso-lib
import { createMessage, createPost, createVideo } from "bso";
// Creates a new message transaction in channel #test
// and returns a `bsv-wasm` transaction
const message = createMessage("Hello World", "test");
// Creates a post with a url context
const post = createPost("Hello World", {
context: "url",
contextValue: "https://google.com",
});