UNPKG

@azuro-org/toolkit

Version:

This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.

18 lines (17 loc) 533 B
import { type Address, type Hex } from 'viem'; import { type CreateBetResponse, type BetClientData } from '../global'; type Props = { account: Address; amount: string | bigint; minOdds: string | bigint; nonce: string | number | bigint; clientData: BetClientData; bets: { conditionId: string | bigint; outcomeId: string | number | bigint; }[]; signature: Hex; bonusId?: string; }; export declare const createComboBet: (props: Props) => Promise<CreateBetResponse | null>; export {};