Files
purple-electrumwallet/electrum/plugins/psbt_nostr/__init__.py
T

12 lines
425 B
Python
Raw Normal View History

2015-11-23 19:38:48 +01:00
from electrum.i18n import _
2024-10-17 14:46:50 +02:00
fullname = _('PSBT over Nostr')
2015-11-23 19:38:48 +01:00
description = ' '.join([
_("This plugin facilitates the use of multi-signatures wallets."),
_("It sends and receives partially signed transactions from/to your cosigner wallet."),
2024-10-17 14:46:50 +02:00
_("PSBTs are sent and retrieved from Nostr relays.")
2015-11-23 19:38:48 +01:00
])
2024-10-17 14:46:50 +02:00
author = 'The Electrum Developers'
2016-02-25 09:39:01 +01:00
#requires_wallet_type = ['2of2', '2of3']
2015-11-23 19:38:48 +01:00
available_for = ['qt']
2024-10-17 14:46:50 +02:00
version = '0.0.1'