lbry-sdk/lbrynet/wallet/__init__.py

12 lines
412 B
Python
Raw Normal View History

2018-06-14 00:53:38 -04:00
__node_daemon__ = 'lbrycrdd'
__node_cli__ = 'lbrycrd-cli'
__node_bin__ = ''
__node_url__ = (
2019-02-15 13:40:00 -07:00
'https://github.com/lbryio/lbrycrd/releases/download/v0.12.4.0/lbrycrd-linux.zip'
2018-06-14 00:53:38 -04:00
)
2019-03-20 01:46:23 -04:00
__spvserver__ = 'lbrynet.wallet.server.coin.LBCRegTest'
2018-06-12 11:53:29 -04:00
from lbrynet.wallet.manager import LbryWalletManager
2019-03-20 01:46:23 -04:00
from lbrynet.wallet.network import Network
from lbrynet.wallet.ledger import MainNetLedger, RegTestLedger, TestNetLedger