UNPKG

@azuro-org/sdk

Version:

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

11 lines (10 loc) 420 B
import { type UseQueryResult } from '@tanstack/react-query'; import { type ChainId, type Selection } from '@azuro-org/toolkit'; import { type QueryParameter } from '../../global'; export type UseMaxBetProps = { selections: Selection[]; chainId?: ChainId; query?: QueryParameter<string>; }; export type UseMaxBet = (props: UseMaxBetProps) => UseQueryResult<string>; export declare const useMaxBet: UseMaxBet;