lbry-sdk/lbry/wallet/__init__.py

12 lines
405 B
Python
Raw Normal View History

2018-06-14 06:53:38 +02:00
__node_daemon__ = 'lbrycrdd'
__node_cli__ = 'lbrycrd-cli'
__node_bin__ = ''
__node_url__ = (
2019-11-27 02:53:55 +01:00
'https://github.com/lbryio/lbrycrd/releases/download/v0.17.3.2/lbrycrd-linux-1732.zip'
2018-06-14 06:53:38 +02:00
)
__spvserver__ = 'lbry.wallet.server.coin.LBCRegTest'
2018-06-12 17:53:29 +02:00
2019-06-21 02:55:47 +02:00
from lbry.wallet.manager import LbryWalletManager
from lbry.wallet.network import Network
from lbry.wallet.ledger import MainNetLedger, RegTestLedger, TestNetLedger