create-bap-identity

Installation
SKILL.md

Create BAP Identity

Create and manage BAP (Bitcoin Attestation Protocol) identities.

Installation

bun add bsv-bap @bsv/sdk

Creating an Identity

import { BAP } from "bsv-bap";
import { PrivateKey } from "@bsv/sdk";

// Create BAP instance with new key
const privateKey = PrivateKey.fromRandom();
const bap = new BAP({ rootPk: privateKey.toWif() });
Installs
19
GitHub Stars
5
First Seen
Feb 8, 2026
create-bap-identity — b-open-io/bsv-skills