Bitcoind: Use mempool as address index when doing address prefix search.

This commit is contained in:
softsimon
2021-01-11 01:51:57 +07:00
parent 38d534caee
commit 905ddbb363
5 changed files with 27 additions and 2 deletions

View File

@@ -10,4 +10,5 @@ export interface AbstractBitcoinApi {
$getBlock(hash: string): Promise<IEsploraApi.Block>;
$getAddress(address: string): Promise<IEsploraApi.Address>;
$getAddressTransactions(address: string, lastSeenTxId: string): Promise<IEsploraApi.Transaction[]>;
$getAddressPrefix(prefix: string): string[];
}