12 lines
425 B
Python
12 lines
425 B
Python
from electrum.i18n import _
|
|
fullname = _('PSBT over Nostr')
|
|
description = ' '.join([
|
|
_("This plugin facilitates the use of multi-signatures wallets."),
|
|
_("It sends and receives partially signed transactions from/to your cosigner wallet."),
|
|
_("PSBTs are sent and retrieved from Nostr relays.")
|
|
])
|
|
author = 'The Electrum Developers'
|
|
#requires_wallet_type = ['2of2', '2of3']
|
|
available_for = ['qt']
|
|
version = '0.0.1'
|