lbry-sdk/lbry/service/full_node.py

70 lines
2 KiB
Python
Raw Normal View History

2020-05-01 15:33:58 +02:00
import logging
from binascii import hexlify, unhexlify
from lbry.blockchain.lbrycrd import Lbrycrd
from lbry.blockchain.sync import BlockchainSync
from lbry.blockchain.ledger import Ledger
from lbry.blockchain.transaction import Transaction
from .base import Service
log = logging.getLogger(__name__)
class FullNode(Service):
2020-09-17 01:50:51 +02:00
name = "node"
2020-05-01 15:33:58 +02:00
sync: BlockchainSync
2020-06-05 06:35:22 +02:00
def __init__(self, ledger: Ledger, chain: Lbrycrd = None):
super().__init__(ledger)
2020-05-01 15:33:58 +02:00
self.chain = chain or Lbrycrd(ledger)
2020-06-05 06:35:22 +02:00
self.sync = BlockchainSync(self.chain, self.db)
2020-05-01 15:33:58 +02:00
async def start(self):
await self.chain.open()
await super().start()
async def stop(self):
await super().stop()
await self.chain.close()
2020-07-07 16:52:41 +02:00
async def get_status(self):
return 'everything is wonderful'
2020-07-13 21:45:21 +02:00
# async def get_block_address_filters(self):
# return {
# hexlify(f['block_hash']).decode(): hexlify(f['block_filter']).decode()
# for f in await self.db.get_block_address_filters()
# }
2020-05-01 15:33:58 +02:00
async def search_transactions(self, txids):
tx_hashes = [unhexlify(txid)[::-1] for txid in txids]
return {
hexlify(tx['tx_hash'][::-1]).decode(): hexlify(tx['raw']).decode()
2020-06-05 06:35:22 +02:00
for tx in await self.db.get_transactions(tx_hashes=tx_hashes)
2020-05-01 15:33:58 +02:00
}
async def broadcast(self, tx):
return await self.chain.send_raw_transaction(hexlify(tx.raw).decode())
async def wait(self, tx: Transaction, height=-1, timeout=1):
pass
2020-08-04 19:49:59 +02:00
async def search_claims(self, accounts, **kwargs):
return await self.db.search_claims(**kwargs)
async def protobuf_search_claims(self, **kwargs):
return await self.db.protobuf_search_claims(**kwargs)
2020-08-11 00:37:21 +02:00
async def search_supports(self, accounts, **kwargs):
return await self.db.search_supports(**kwargs)
2020-07-07 16:52:41 +02:00
async def resolve(self, urls, **kwargs):
2020-08-04 16:41:49 +02:00
return await self.db.resolve(urls, **kwargs)
async def protobuf_resolve(self, urls, **kwargs):
return await self.db.protobuf_resolve(urls, **kwargs)