(address: string,
params?: GetTransactionsParams,)
| 43 | |
| 44 | |
| 45 | export const getGetTransactionsQueryKey = (address: string, |
| 46 | params?: GetTransactionsParams,) => { |
| 47 | return [`/addresses/${address}/transactions`, ...(params ? [params]: [])] as const; |
| 48 | } |
| 49 | |
| 50 | |
| 51 | export const getGetTransactionsQueryOptions = <TData = Awaited<ReturnType<typeof getTransactions>>, TError = unknown>(address: string, |
no outgoing calls
no test coverage detected