forked from LBRYCommunity/lbry-sdk
17 lines
715 B
Python
17 lines
715 B
Python
__node_daemon__ = 'lbrycrdd'
|
|
__node_cli__ = 'lbrycrd-cli'
|
|
__node_bin__ = ''
|
|
__node_url__ = (
|
|
'https://github.com/lbryio/lbrycrd/releases/download/v0.17.4.3/lbrycrd-linux-1743.zip'
|
|
)
|
|
__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
|