• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

audio_modem/H03-May-2022-143108

bitbox02/H03-May-2022-849710

coldcard/H03-May-2022-998667

cosigner_pool/H03-May-2022-267200

digitalbitbox/H03-May-2022-836662

email_requests/H03-May-2022-286215

hw_wallet/H03-May-2022-765561

keepkey/H03-May-2022-1,3691,126

labels/H03-May-2022-328265

ledger/H03-May-2022-1,010846

revealer/H03-May-2022-928758

safe_t/H03-May-2022-1,3711,112

trezor/H03-May-2022-1,6471,345

trustedcoin/H03-May-2022-1,2711,006

virtualkeyboard/H03-May-2022-6954

READMEH A D11-Nov-20001.5 KiB3225

__init__.pyH A D03-May-20221.1 KiB270

README

1Plugin rules:
2
3 * The plugin system of Electrum is designed to allow the development
4   of new features without increasing the core code of Electrum.
5
6 * Electrum is written in pure python. if you want to add a feature
7   that requires non-python libraries, then it must be submitted as a
8   plugin. If the feature you want to add requires communication with
9   a remote server (not an Electrum server), then it should be a
10   plugin as well. If the feature you want to add introduces new
11   dependencies in the code, then it should probably be a plugin.
12
13 * We expect plugin developers to maintain their plugin code. However,
14   once a plugin is merged in Electrum, we will have to maintain it
15   too, because changes in the Electrum code often require updates in
16   the plugin code. Therefore, plugins have to be easy to maintain. If
17   we believe that a plugin will create too much maintenance work in
18   the future, it will be rejected.
19
20 * Plugins should be compatible with Electrum's conventions. If your
21   plugin does not fit with Electrum's architecture, or if we believe
22   that it will create too much maintenance work, it will not be
23   accepted. In particular, do not duplicate existing Electrum code in
24   your plugin.
25
26 * We may decide to remove a plugin after it has been merged in
27   Electrum. For this reason, a plugin must be easily removable,
28   without putting at risk the user's bitcoins. If we feel that a
29   plugin cannot be removed without threatening users who rely on it,
30   we will not merge it.
31
32