@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
20 lines (19 loc) • 549 B
TypeScript
import * as Types from './types';
export type BettorsQueryVariables = Types.Exact<{
where: Types.Bettor_Filter;
}>;
export type BettorsQuery = {
__typename?: 'Query';
bettors: Array<{
__typename?: 'Bettor';
id: string;
rawToPayout: string;
rawInBets: string;
rawTotalPayout: string;
rawTotalProfit: string;
betsCount: number;
wonBetsCount: number;
lostBetsCount: number;
}>;
};
export declare const BettorsDocument: import("graphql/language/ast").DocumentNode;