lbry-sdk/lbrynet/wallet/__init__.py

12 lines
412 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-02-15 21:40:00 +01:00
'https://github.com/lbryio/lbrycrd/releases/download/v0.12.4.0/lbrycrd-linux.zip'
2018-06-14 06:53:38 +02:00
)
2019-03-20 06:46:23 +01:00
__spvserver__ = 'lbrynet.wallet.server.coin.LBCRegTest'
2018-06-12 17:53:29 +02:00
from lbrynet.wallet.manager import LbryWalletManager
2019-03-20 06:46:23 +01:00
from lbrynet.wallet.network import Network
from lbrynet.wallet.ledger import MainNetLedger, RegTestLedger, TestNetLedger