forked from LBRYCommunity/lbry-sdk
22 lines
910 B
Python
22 lines
910 B
Python
__lbcd__ = 'lbcd'
|
|
__lbcctl__ = 'lbcctl'
|
|
__lbcwallet__ = 'lbcwallet'
|
|
__lbcd_url__ = (
|
|
'https://github.com/lbryio/lbcd/releases/download/' +
|
|
'v0.22.100-beta-rc2/lbcd_0.22.100-beta-rc2_TARGET_PLATFORM.tar.gz'
|
|
)
|
|
__lbcwallet_url__ = (
|
|
'https://github.com/lbryio/lbcwallet/releases/download/' +
|
|
'v0.12.100-alpha-rc1/lbcwallet_0.12.100-alpha-rc1_TARGET_PLATFORM.tar.gz'
|
|
)
|
|
__spvserver__ = 'lbry.wallet.server.coin.LBCRegTest'
|
|
|
|
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
|
|
from .transaction import Transaction, Output, Input
|
|
from .script import OutputScript, InputScript
|
|
from .database import SQLiteMixin, Database
|
|
from .header import Headers
|