forked from LBRYCommunity/lbry-sdk
9faf6e46ca
switch from using lbrycrd to lbcd
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
|