lbry-sdk/lbry/wallet/__init__.py

23 lines
942 B
Python
Raw Normal View History

__lbcd__ = 'lbcd'
__lbcctl__ = 'lbcctl'
__lbcwallet__ = 'lbcwallet'
__lbcd_url__ = (
'https://github.com/lbryio/lbcd/releases/download/' +
2021-12-16 19:52:43 -08:00
'v0.22.100-beta-rc7/lbcd_0.22.100-beta-rc7_TARGET_PLATFORM.tar.gz'
)
__lbcwallet_url__ = (
'https://github.com/lbryio/lbcwallet/releases/download/' +
2021-12-16 19:52:43 -08:00
'v0.13.100-alpha-rc2/lbcwallet_0.13.100-alpha-rc2_TARGET_PLATFORM.tar.gz'
2018-06-14 00:53:38 -04:00
)
__spvserver__ = 'lbry.wallet.server.coin.LBCRegTest'
2018-06-12 11:53:29 -04:00
2020-01-02 22:18:49 -05:00
from .wallet import Wallet, WalletStorage, TimestampedPreferences, ENCRYPT_ON_DISK
from .manager import WalletManager
from .network import Network
from .ledger import Ledger, RegTestLedger, TestNetLedger, BlockHeightEvent
from .account import Account, AddressManager, SingleKey, HierarchicalDeterministic, DeterministicChannelKeyManager
2020-01-02 22:18:49 -05:00
from .transaction import Transaction, Output, Input
from .script import OutputScript, InputScript
from .database import SQLiteMixin, Database
from .header import Headers