0.0.6 • Published 1 month ago

nikabrik v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Nikabrik version

Utilities for building DVMs on nostr. See count for an example of how to build a custom dvm handler.

import {DVM, countAgents} from 'nikabrik'

const dvm = new DVM({
  sk: 'your dvm private key here',
  relays: ['wss://relay.damus.io'],
  agents: {
    ...countAgents,
  }
})

// When you're done
dvm.stop()