This commit is contained in:
callebtc
2023-02-25 14:52:57 +01:00
parent d1c32e4c69
commit a1c3538b50
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ Cashu is an Ecash implementation based on David Wagner's variant of Chaumian bli
- PostgreSQL and SQLite database support
- Builtin Tor for hiding IPs for wallet and mint interactions
- Multimint wallet for tokens from different mints
- Send tokens to nostr pubkeys
- Send and receive tokens on nostr
## Cashu client protocol
There are ongoing efforts to implement alternative Cashu clients that use the same protocol. If you are interested in helping with Cashu development, please refer to the protocol specs [protocol specs](https://github.com/cashubtc/nuts).

View File

@@ -54,7 +54,7 @@ async def send_nostr(ctx: Context, amount: int, pubkey: str, verbose: bool, yes:
wallet = await get_mint_wallet(ctx)
if "@" in pubkey or "." in pubkey:
# parses user@domain.com and domain.com (which is _@domain.com)
# matches user@domain.com and domain.com (which is _@domain.com)
pubkey = await nip5_to_pubkey(wallet, pubkey)
await wallet.load_proofs()