UNPKG

@azuro-org/sdk

Version:

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

13 lines (12 loc) 509 B
import { type Address } from 'viem'; import { type ChainId, type WaveId, type WaveLeaderBoardItem } from '@azuro-org/toolkit'; import { type QueryParameter } from '../../global'; type Props = { waveId?: WaveId; account?: Address; startsAt?: number; chainId?: ChainId; query?: QueryParameter<WaveLeaderBoardItem[] | null>; }; export declare const useWaveLeaderBoard: (props: Props) => import("@tanstack/react-query").UseQueryResult<NoInfer<WaveLeaderBoardItem[] | null>, Error>; export {};