@azuro-org/toolkit
Version:
This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.
13 lines (12 loc) • 342 B
TypeScript
export type BettorFragment = {
__typename?: 'Bettor';
id: string;
rawToPayout: string;
rawInBets: string;
rawTotalPayout: string;
rawTotalProfit: string;
betsCount: number;
wonBetsCount: number;
lostBetsCount: number;
};
export declare const BettorFragmentDoc: import("graphql/language/ast").DocumentNode;