Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import { useQueries } from '@tanstack/react-query';
import { createGetBitcoinTransactionsByAddressQueryOptions } from '@leather.io/query';
import { useBitcoinClient } from '../clients/bitcoin-client';
export function useGetBitcoinTransactionsByAddressListQuery(addresses: string[]) {
const client = useBitcoinClient();
return useQueries({
queries: addresses.map(address => {
return createGetBitcoinTransactionsByAddressQueryOptions({ address, client });
}),
});
}
|