UNPKG

@azuro-org/sdk

Version:

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

8 lines (7 loc) 346 B
import { type ChainId } from '@azuro-org/toolkit'; import { type PrecalculatedCashout } from '../hooks/cashout/usePrecalculatedCashouts'; export declare const batchFetchCashouts: (conditionIds: string[], chainId: ChainId) => Promise<{ margin: string; minMargin: string; cashouts: Record<string, PrecalculatedCashout>; } | undefined>;