zap
Use this tool to send satoshis to a user via their npub or NIP-05 identifier on Nostr, enabling instant microtransactions with an optional comment.
Instructions
Send a zap to a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount in satoshis | |
comment | No | Optional comment | |
recipient | Yes | User npub or NIP-05 identifier to zap |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount in satoshis",
"type": "number"
},
"comment": {
"description": "Optional comment",
"type": "string"
},
"recipient": {
"description": "User npub or NIP-05 identifier to zap",
"type": "string"
}
},
"required": [
"recipient",
"amount"
],
"type": "object"
}