@goat-sdk/plugin-betswirl
Version:
<div align="center"> <a href="https://github.com/goat-sdk/goat">
17 lines (14 loc) • 534 B
TypeScript
import { CASINO_GAME_TYPE } from '@betswirl/sdk-core';
import { z } from 'zod';
declare const hexAddress: z.ZodString;
declare const casinoBetParams: {
betAmount: z.ZodString;
token: z.ZodOptional<z.ZodString>;
stopGain: z.ZodOptional<z.ZodString>;
stopLoss: z.ZodOptional<z.ZodString>;
receiver: z.ZodOptional<z.ZodString>;
};
declare function getMaxBetCountParam(game: CASINO_GAME_TYPE): {
betCount: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
};
export { casinoBetParams, getMaxBetCountParam, hexAddress };