UNPKG

@azuro-org/sdk

Version:

One-stop solution for building betting dApps on the Azuro Protocol.

15 lines (14 loc) 551 B
import { type Address } from 'viem'; import { type ChainId, type WaveId, type WaveStatsResponse } from '@azuro-org/toolkit'; import { type QueryParameter } from '../../global'; type WaveStats = { isActivated: boolean; } & WaveStatsResponse; type Props = { account: Address; waveId?: WaveId; chainId?: ChainId; query?: QueryParameter<WaveStats | null>; }; export declare const useWaveStats: ({ account, waveId, chainId, query }: Props) => import("@tanstack/react-query").UseQueryResult<NoInfer<WaveStats | null>, Error>; export {};