11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
|
import useSWR from 'swr'
|
||
|
|
||
|
import getHLSStakingAssets from 'api/hls/getHLSStakingAssets'
|
||
|
|
||
|
export default function useHLSStakingAssets() {
|
||
|
return useSWR('hls-staking', getHLSStakingAssets, {
|
||
|
fallbackData: [],
|
||
|
revalidateOnFocus: false,
|
||
|
})
|
||
|
}
|