UNPKG

@azuro-org/sdk

Version:

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

10 lines (9 loc) 288 B
import { type Selection } from '@azuro-org/toolkit'; export type UseSelectionOddsProps = { selection: Selection; initialOdds?: number; }; export declare const useSelectionOdds: ({ selection, initialOdds }: UseSelectionOddsProps) => { data: number; isFetching: boolean; };