forked from LBRYCommunity/lbry-sdk
7d973aaaa8
# Conflicts: # lbry/testcase.py # lbry/wallet/orchstr8/node.py # lbry/wallet/server/db/db.py # lbry/wallet/server/db/prefixes.py # lbry/wallet/server/server.py # lbry/wallet/server/session.py # setup.py # tests/integration/takeovers/test_resolve_command.py # tests/integration/transactions/test_internal_transaction_api.py # tests/integration/transactions/test_transactions.py
23 lines
1 KiB
Python
23 lines
1 KiB
Python
__lbcd__ = 'lbcd'
|
|
__lbcctl__ = 'lbcctl'
|
|
__lbcwallet__ = 'lbcwallet'
|
|
__lbcd_url__ = (
|
|
'https://github.com/lbryio/lbcd/releases/download/' +
|
|
'v0.22.200-beta/lbcd_0.22.200-beta_TARGET_PLATFORM.tar.gz'
|
|
)
|
|
__lbcwallet_url__ = (
|
|
'https://github.com/lbryio/lbcwallet/releases/download/' +
|
|
'v0.13.100-alpha-rc2/lbcwallet_0.13.100-alpha-rc2_TARGET_PLATFORM.tar.gz'
|
|
)
|
|
__spvserver__ = 'lbry.wallet.server.coin.LBCRegTest'
|
|
|
|
from lbry.wallet.wallet import Wallet, WalletStorage, TimestampedPreferences, ENCRYPT_ON_DISK
|
|
from lbry.wallet.manager import WalletManager
|
|
from lbry.wallet.network import Network
|
|
from lbry.wallet.ledger import Ledger, RegTestLedger, TestNetLedger, BlockHeightEvent
|
|
from lbry.wallet.account import Account, AddressManager, SingleKey, HierarchicalDeterministic, \
|
|
DeterministicChannelKeyManager
|
|
from lbry.wallet.transaction import Transaction, Output, Input
|
|
from lbry.wallet.script import OutputScript, InputScript
|
|
from lbry.wallet.database import SQLiteMixin, Database
|
|
from lbry.wallet.header import Headers
|