@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
18 lines (17 loc) • 391 B
TypeScript
import { type ChainId } from '../config';
import { type Selection } from '../global';
export type GetMaxBetResponse = {
response: {
maxBet: string;
maxPayout: string;
};
};
type Props = {
chainId: ChainId;
selections: Selection[];
};
export declare const getMaxBet: (props: Props) => Promise<{
maxBet: string;
maxPayout: string;
} | null>;
export {};