2023-06-15 12:34:12 +00:00
|
|
|
import useSWR from 'swr'
|
|
|
|
|
|
|
|
import getMarketDeposits from 'api/markets/getMarketDeposits'
|
|
|
|
|
|
|
|
export default function useMarketDeposits() {
|
|
|
|
return useSWR(`marketDeposits`, getMarketDeposits, {
|
|
|
|
suspense: true,
|
|
|
|
fallbackData: [],
|
2023-08-05 09:52:11 +00:00
|
|
|
revalidateOnFocus: false,
|
2023-06-15 12:34:12 +00:00
|
|
|
})
|
|
|
|
}
|