@azuro-org/toolkit 4.4.1 → 4.5.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/config.d.ts +28 -23
- package/dist/docs/prematch/fragments/liveBet.d.ts +3 -2
- package/dist/docs/prematch/fragments/prematchBet.d.ts +3 -2
- package/dist/docs/prematch/liveBets.d.ts +3 -2
- package/dist/docs/prematch/prematchBets.d.ts +3 -2
- package/dist/docs/prematch/types.d.ts +696 -0
- package/dist/global.d.ts +23 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +251 -14
- package/dist/utils/cashout/createCashout.d.ts +22 -0
- package/dist/utils/cashout/getCalculatedCashout.d.ts +22 -0
- package/dist/utils/cashout/getCashout.d.ts +11 -0
- package/dist/utils/cashout/getCashoutTypedData.d.ts +13 -0
- package/dist/utils/cashout/getPrecalculatedCashouts.d.ts +18 -0
- package/dist/utils/getEndpoints.d.ts +1 -1
- package/dist/utils/getLiveBetTypedData.d.ts +2 -2
- package/dist/utils/setupContracts.d.ts +11 -2
- package/package.json +4 -4
|
@@ -58,6 +58,90 @@ export type Scalars = {
|
|
|
58
58
|
output: any;
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
|
+
export type AffiliateMonthly = {
|
|
62
|
+
__typename?: 'AffiliateMonthly';
|
|
63
|
+
affiliate: Scalars['String']['output'];
|
|
64
|
+
betsCount: Scalars['Int']['output'];
|
|
65
|
+
/** Affiliate address + year + month number */
|
|
66
|
+
id: Scalars['ID']['output'];
|
|
67
|
+
lastAnyBetCreatedTimestamp: Scalars['BigInt']['output'];
|
|
68
|
+
month: Scalars['Int']['output'];
|
|
69
|
+
year: Scalars['Int']['output'];
|
|
70
|
+
};
|
|
71
|
+
export type AffiliateMonthly_Filter = {
|
|
72
|
+
/** Filter for the block changed event. */
|
|
73
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
74
|
+
affiliate?: InputMaybe<Scalars['String']['input']>;
|
|
75
|
+
affiliate_contains?: InputMaybe<Scalars['String']['input']>;
|
|
76
|
+
affiliate_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
77
|
+
affiliate_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
78
|
+
affiliate_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
79
|
+
affiliate_gt?: InputMaybe<Scalars['String']['input']>;
|
|
80
|
+
affiliate_gte?: InputMaybe<Scalars['String']['input']>;
|
|
81
|
+
affiliate_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
82
|
+
affiliate_lt?: InputMaybe<Scalars['String']['input']>;
|
|
83
|
+
affiliate_lte?: InputMaybe<Scalars['String']['input']>;
|
|
84
|
+
affiliate_not?: InputMaybe<Scalars['String']['input']>;
|
|
85
|
+
affiliate_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
86
|
+
affiliate_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
87
|
+
affiliate_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
88
|
+
affiliate_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
89
|
+
affiliate_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90
|
+
affiliate_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
91
|
+
affiliate_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
92
|
+
affiliate_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
93
|
+
affiliate_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
94
|
+
and?: InputMaybe<Array<InputMaybe<AffiliateMonthly_Filter>>>;
|
|
95
|
+
betsCount?: InputMaybe<Scalars['Int']['input']>;
|
|
96
|
+
betsCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
97
|
+
betsCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
98
|
+
betsCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
99
|
+
betsCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
100
|
+
betsCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
101
|
+
betsCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
102
|
+
betsCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
103
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
104
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
105
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
106
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
107
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
108
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
109
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
110
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
111
|
+
lastAnyBetCreatedTimestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
112
|
+
lastAnyBetCreatedTimestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
113
|
+
lastAnyBetCreatedTimestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
114
|
+
lastAnyBetCreatedTimestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
115
|
+
lastAnyBetCreatedTimestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
116
|
+
lastAnyBetCreatedTimestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
117
|
+
lastAnyBetCreatedTimestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
118
|
+
lastAnyBetCreatedTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
119
|
+
month?: InputMaybe<Scalars['Int']['input']>;
|
|
120
|
+
month_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
121
|
+
month_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
122
|
+
month_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
123
|
+
month_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
124
|
+
month_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
125
|
+
month_not?: InputMaybe<Scalars['Int']['input']>;
|
|
126
|
+
month_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
127
|
+
or?: InputMaybe<Array<InputMaybe<AffiliateMonthly_Filter>>>;
|
|
128
|
+
year?: InputMaybe<Scalars['Int']['input']>;
|
|
129
|
+
year_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
130
|
+
year_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
131
|
+
year_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
132
|
+
year_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
133
|
+
year_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
134
|
+
year_not?: InputMaybe<Scalars['Int']['input']>;
|
|
135
|
+
year_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
136
|
+
};
|
|
137
|
+
export declare enum AffiliateMonthly_OrderBy {
|
|
138
|
+
Affiliate = "affiliate",
|
|
139
|
+
BetsCount = "betsCount",
|
|
140
|
+
Id = "id",
|
|
141
|
+
LastAnyBetCreatedTimestamp = "lastAnyBetCreatedTimestamp",
|
|
142
|
+
Month = "month",
|
|
143
|
+
Year = "year"
|
|
144
|
+
}
|
|
61
145
|
export type AzuroBetContract = {
|
|
62
146
|
__typename?: 'AzuroBetContract';
|
|
63
147
|
address: Scalars['String']['output'];
|
|
@@ -145,6 +229,7 @@ export type Bet = {
|
|
|
145
229
|
approxSettledAt: Scalars['BigInt']['output'];
|
|
146
230
|
betId: Scalars['BigInt']['output'];
|
|
147
231
|
bettor: Scalars['String']['output'];
|
|
232
|
+
cashout?: Maybe<Cashout>;
|
|
148
233
|
core: CoreContract;
|
|
149
234
|
createdBlockNumber: Scalars['BigInt']['output'];
|
|
150
235
|
createdBlockTimestamp: Scalars['BigInt']['output'];
|
|
@@ -152,6 +237,7 @@ export type Bet = {
|
|
|
152
237
|
freebet?: Maybe<Freebet>;
|
|
153
238
|
/** Core contract address + Bet Id */
|
|
154
239
|
id: Scalars['ID']['output'];
|
|
240
|
+
isCashedOut: Scalars['Boolean']['output'];
|
|
155
241
|
isRedeemable: Scalars['Boolean']['output'];
|
|
156
242
|
isRedeemed: Scalars['Boolean']['output'];
|
|
157
243
|
odds: Scalars['BigDecimal']['output'];
|
|
@@ -442,6 +528,27 @@ export type Bet_Filter = {
|
|
|
442
528
|
bettor_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
443
529
|
bettor_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
444
530
|
bettor_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
531
|
+
cashout?: InputMaybe<Scalars['String']['input']>;
|
|
532
|
+
cashout_?: InputMaybe<Cashout_Filter>;
|
|
533
|
+
cashout_contains?: InputMaybe<Scalars['String']['input']>;
|
|
534
|
+
cashout_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
535
|
+
cashout_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
536
|
+
cashout_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
537
|
+
cashout_gt?: InputMaybe<Scalars['String']['input']>;
|
|
538
|
+
cashout_gte?: InputMaybe<Scalars['String']['input']>;
|
|
539
|
+
cashout_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
540
|
+
cashout_lt?: InputMaybe<Scalars['String']['input']>;
|
|
541
|
+
cashout_lte?: InputMaybe<Scalars['String']['input']>;
|
|
542
|
+
cashout_not?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
+
cashout_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
544
|
+
cashout_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
545
|
+
cashout_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
546
|
+
cashout_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
547
|
+
cashout_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
548
|
+
cashout_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
549
|
+
cashout_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
550
|
+
cashout_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
551
|
+
cashout_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
445
552
|
core?: InputMaybe<Scalars['String']['input']>;
|
|
446
553
|
core_?: InputMaybe<CoreContract_Filter>;
|
|
447
554
|
core_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -528,6 +635,10 @@ export type Bet_Filter = {
|
|
|
528
635
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
529
636
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
530
637
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
638
|
+
isCashedOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
639
|
+
isCashedOut_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
640
|
+
isCashedOut_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
641
|
+
isCashedOut_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
531
642
|
isRedeemable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
532
643
|
isRedeemable_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
533
644
|
isRedeemable_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -750,12 +861,14 @@ export declare enum Bet_OrderBy {
|
|
|
750
861
|
ApproxSettledAt = "approxSettledAt",
|
|
751
862
|
BetId = "betId",
|
|
752
863
|
Bettor = "bettor",
|
|
864
|
+
Cashout = "cashout",
|
|
753
865
|
Core = "core",
|
|
754
866
|
CreatedBlockNumber = "createdBlockNumber",
|
|
755
867
|
CreatedBlockTimestamp = "createdBlockTimestamp",
|
|
756
868
|
CreatedTxHash = "createdTxHash",
|
|
757
869
|
Freebet = "freebet",
|
|
758
870
|
Id = "id",
|
|
871
|
+
IsCashedOut = "isCashedOut",
|
|
759
872
|
IsRedeemable = "isRedeemable",
|
|
760
873
|
IsRedeemed = "isRedeemed",
|
|
761
874
|
Odds = "odds",
|
|
@@ -810,6 +923,9 @@ export type Bettor = {
|
|
|
810
923
|
rawTotalProfit: Scalars['BigInt']['output'];
|
|
811
924
|
rawTurnover: Scalars['BigInt']['output'];
|
|
812
925
|
redeemedBetsCount: Scalars['Int']['output'];
|
|
926
|
+
redeemedCanceledBetsCount: Scalars['Int']['output'];
|
|
927
|
+
redeemedLostBetsCount: Scalars['Int']['output'];
|
|
928
|
+
redeemedWonBetsCount: Scalars['Int']['output'];
|
|
813
929
|
settledBetsCount: Scalars['Int']['output'];
|
|
814
930
|
toPayout: Scalars['BigDecimal']['output'];
|
|
815
931
|
totalPayout: Scalars['BigDecimal']['output'];
|
|
@@ -1054,6 +1170,30 @@ export type Bettor_Filter = {
|
|
|
1054
1170
|
redeemedBetsCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1055
1171
|
redeemedBetsCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1056
1172
|
redeemedBetsCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1173
|
+
redeemedCanceledBetsCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1174
|
+
redeemedCanceledBetsCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1175
|
+
redeemedCanceledBetsCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1176
|
+
redeemedCanceledBetsCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1177
|
+
redeemedCanceledBetsCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1178
|
+
redeemedCanceledBetsCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1179
|
+
redeemedCanceledBetsCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1180
|
+
redeemedCanceledBetsCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1181
|
+
redeemedLostBetsCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1182
|
+
redeemedLostBetsCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1183
|
+
redeemedLostBetsCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1184
|
+
redeemedLostBetsCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1185
|
+
redeemedLostBetsCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1186
|
+
redeemedLostBetsCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1187
|
+
redeemedLostBetsCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1188
|
+
redeemedLostBetsCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1189
|
+
redeemedWonBetsCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1190
|
+
redeemedWonBetsCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1191
|
+
redeemedWonBetsCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1192
|
+
redeemedWonBetsCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1193
|
+
redeemedWonBetsCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1194
|
+
redeemedWonBetsCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1195
|
+
redeemedWonBetsCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1196
|
+
redeemedWonBetsCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1057
1197
|
settledBetsCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1058
1198
|
settledBetsCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1059
1199
|
settledBetsCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1130,6 +1270,9 @@ export declare enum Bettor_OrderBy {
|
|
|
1130
1270
|
RawTotalProfit = "rawTotalProfit",
|
|
1131
1271
|
RawTurnover = "rawTurnover",
|
|
1132
1272
|
RedeemedBetsCount = "redeemedBetsCount",
|
|
1273
|
+
RedeemedCanceledBetsCount = "redeemedCanceledBetsCount",
|
|
1274
|
+
RedeemedLostBetsCount = "redeemedLostBetsCount",
|
|
1275
|
+
RedeemedWonBetsCount = "redeemedWonBetsCount",
|
|
1133
1276
|
SettledBetsCount = "settledBetsCount",
|
|
1134
1277
|
ToPayout = "toPayout",
|
|
1135
1278
|
TotalPayout = "totalPayout",
|
|
@@ -1145,8 +1288,242 @@ export type Block_Height = {
|
|
|
1145
1288
|
number?: InputMaybe<Scalars['Int']['input']>;
|
|
1146
1289
|
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1147
1290
|
};
|
|
1291
|
+
export type Cashout = {
|
|
1292
|
+
__typename?: 'Cashout';
|
|
1293
|
+
_oddsDecimals: Scalars['Int']['output'];
|
|
1294
|
+
_tokenDecimals: Scalars['Int']['output'];
|
|
1295
|
+
_updatedAt: Scalars['BigInt']['output'];
|
|
1296
|
+
betContractAddress: Scalars['String']['output'];
|
|
1297
|
+
betId: Scalars['BigInt']['output'];
|
|
1298
|
+
cashoutContractAddress: Scalars['String']['output'];
|
|
1299
|
+
core: CoreContract;
|
|
1300
|
+
createdBlockNumber: Scalars['BigInt']['output'];
|
|
1301
|
+
createdBlockTimestamp: Scalars['BigInt']['output'];
|
|
1302
|
+
createdTxHash: Scalars['String']['output'];
|
|
1303
|
+
/** Bet Contract address + Bet Id */
|
|
1304
|
+
id: Scalars['ID']['output'];
|
|
1305
|
+
odds: Scalars['BigDecimal']['output'];
|
|
1306
|
+
owner: Scalars['String']['output'];
|
|
1307
|
+
payout: Scalars['BigDecimal']['output'];
|
|
1308
|
+
rawOdds: Scalars['BigInt']['output'];
|
|
1309
|
+
rawPayout: Scalars['BigInt']['output'];
|
|
1310
|
+
};
|
|
1311
|
+
export type Cashout_Filter = {
|
|
1312
|
+
/** Filter for the block changed event. */
|
|
1313
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1314
|
+
_oddsDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
1315
|
+
_oddsDecimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1316
|
+
_oddsDecimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1317
|
+
_oddsDecimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1318
|
+
_oddsDecimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1319
|
+
_oddsDecimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1320
|
+
_oddsDecimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1321
|
+
_oddsDecimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1322
|
+
_tokenDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
1323
|
+
_tokenDecimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1324
|
+
_tokenDecimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1325
|
+
_tokenDecimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1326
|
+
_tokenDecimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1327
|
+
_tokenDecimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1328
|
+
_tokenDecimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
1329
|
+
_tokenDecimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1330
|
+
_updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1331
|
+
_updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1332
|
+
_updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1333
|
+
_updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1334
|
+
_updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1335
|
+
_updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1336
|
+
_updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1337
|
+
_updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1338
|
+
and?: InputMaybe<Array<InputMaybe<Cashout_Filter>>>;
|
|
1339
|
+
betContractAddress?: InputMaybe<Scalars['String']['input']>;
|
|
1340
|
+
betContractAddress_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1341
|
+
betContractAddress_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1342
|
+
betContractAddress_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1343
|
+
betContractAddress_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1344
|
+
betContractAddress_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1345
|
+
betContractAddress_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1346
|
+
betContractAddress_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1347
|
+
betContractAddress_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1348
|
+
betContractAddress_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1349
|
+
betContractAddress_not?: InputMaybe<Scalars['String']['input']>;
|
|
1350
|
+
betContractAddress_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1351
|
+
betContractAddress_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1352
|
+
betContractAddress_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1353
|
+
betContractAddress_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1354
|
+
betContractAddress_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1355
|
+
betContractAddress_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1356
|
+
betContractAddress_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1357
|
+
betContractAddress_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1358
|
+
betContractAddress_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1359
|
+
betId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1360
|
+
betId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1361
|
+
betId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1362
|
+
betId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1363
|
+
betId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1364
|
+
betId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1365
|
+
betId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1366
|
+
betId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1367
|
+
cashoutContractAddress?: InputMaybe<Scalars['String']['input']>;
|
|
1368
|
+
cashoutContractAddress_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1369
|
+
cashoutContractAddress_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1370
|
+
cashoutContractAddress_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1371
|
+
cashoutContractAddress_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1372
|
+
cashoutContractAddress_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1373
|
+
cashoutContractAddress_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1374
|
+
cashoutContractAddress_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1375
|
+
cashoutContractAddress_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1376
|
+
cashoutContractAddress_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1377
|
+
cashoutContractAddress_not?: InputMaybe<Scalars['String']['input']>;
|
|
1378
|
+
cashoutContractAddress_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1379
|
+
cashoutContractAddress_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1380
|
+
cashoutContractAddress_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1381
|
+
cashoutContractAddress_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1382
|
+
cashoutContractAddress_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1383
|
+
cashoutContractAddress_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1384
|
+
cashoutContractAddress_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1385
|
+
cashoutContractAddress_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1386
|
+
cashoutContractAddress_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1387
|
+
core?: InputMaybe<Scalars['String']['input']>;
|
|
1388
|
+
core_?: InputMaybe<CoreContract_Filter>;
|
|
1389
|
+
core_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1390
|
+
core_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1391
|
+
core_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1392
|
+
core_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1393
|
+
core_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1394
|
+
core_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1395
|
+
core_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1396
|
+
core_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1397
|
+
core_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1398
|
+
core_not?: InputMaybe<Scalars['String']['input']>;
|
|
1399
|
+
core_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1400
|
+
core_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1401
|
+
core_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1402
|
+
core_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1403
|
+
core_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1404
|
+
core_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1405
|
+
core_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1406
|
+
core_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1407
|
+
core_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1408
|
+
createdBlockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1409
|
+
createdBlockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1410
|
+
createdBlockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1411
|
+
createdBlockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1412
|
+
createdBlockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1413
|
+
createdBlockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1414
|
+
createdBlockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1415
|
+
createdBlockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1416
|
+
createdBlockTimestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1417
|
+
createdBlockTimestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1418
|
+
createdBlockTimestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1419
|
+
createdBlockTimestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1420
|
+
createdBlockTimestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1421
|
+
createdBlockTimestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1422
|
+
createdBlockTimestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1423
|
+
createdBlockTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1424
|
+
createdTxHash?: InputMaybe<Scalars['String']['input']>;
|
|
1425
|
+
createdTxHash_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1426
|
+
createdTxHash_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1427
|
+
createdTxHash_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1428
|
+
createdTxHash_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1429
|
+
createdTxHash_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1430
|
+
createdTxHash_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1431
|
+
createdTxHash_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1432
|
+
createdTxHash_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
+
createdTxHash_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1434
|
+
createdTxHash_not?: InputMaybe<Scalars['String']['input']>;
|
|
1435
|
+
createdTxHash_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1436
|
+
createdTxHash_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1437
|
+
createdTxHash_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1438
|
+
createdTxHash_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1439
|
+
createdTxHash_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1440
|
+
createdTxHash_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1441
|
+
createdTxHash_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1442
|
+
createdTxHash_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1443
|
+
createdTxHash_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1444
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1445
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1446
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1447
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1448
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1449
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1450
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1451
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1452
|
+
odds?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1453
|
+
odds_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1454
|
+
odds_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1455
|
+
odds_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
1456
|
+
odds_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1457
|
+
odds_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1458
|
+
odds_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1459
|
+
odds_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
1460
|
+
or?: InputMaybe<Array<InputMaybe<Cashout_Filter>>>;
|
|
1461
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
1462
|
+
owner_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1463
|
+
owner_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1464
|
+
owner_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1465
|
+
owner_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1466
|
+
owner_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1467
|
+
owner_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1468
|
+
owner_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1469
|
+
owner_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1470
|
+
owner_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1471
|
+
owner_not?: InputMaybe<Scalars['String']['input']>;
|
|
1472
|
+
owner_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1473
|
+
owner_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1474
|
+
owner_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1475
|
+
owner_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1476
|
+
owner_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1477
|
+
owner_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1478
|
+
owner_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1479
|
+
owner_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1480
|
+
owner_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1481
|
+
payout?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1482
|
+
payout_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1483
|
+
payout_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1484
|
+
payout_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
1485
|
+
payout_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1486
|
+
payout_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1487
|
+
payout_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
1488
|
+
payout_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
1489
|
+
rawOdds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1490
|
+
rawOdds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1491
|
+
rawOdds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1492
|
+
rawOdds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1493
|
+
rawOdds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1494
|
+
rawOdds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1495
|
+
rawOdds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1496
|
+
rawOdds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1497
|
+
rawPayout?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1498
|
+
rawPayout_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1499
|
+
rawPayout_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1500
|
+
rawPayout_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1501
|
+
rawPayout_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1502
|
+
rawPayout_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1503
|
+
rawPayout_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1504
|
+
rawPayout_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1505
|
+
};
|
|
1506
|
+
export declare enum Cashout_OrderBy {
|
|
1507
|
+
OddsDecimals = "_oddsDecimals",
|
|
1508
|
+
TokenDecimals = "_tokenDecimals",
|
|
1509
|
+
UpdatedAt = "_updatedAt",
|
|
1510
|
+
BetContractAddress = "betContractAddress",
|
|
1511
|
+
BetId = "betId",
|
|
1512
|
+
CashoutContractAddress = "cashoutContractAddress",
|
|
1513
|
+
Core = "core",
|
|
1514
|
+
CreatedBlockNumber = "createdBlockNumber",
|
|
1515
|
+
CreatedBlockTimestamp = "createdBlockTimestamp",
|
|
1516
|
+
CreatedTxHash = "createdTxHash",
|
|
1517
|
+
Id = "id",
|
|
1518
|
+
Odds = "odds",
|
|
1519
|
+
Owner = "owner",
|
|
1520
|
+
Payout = "payout",
|
|
1521
|
+
RawOdds = "rawOdds",
|
|
1522
|
+
RawPayout = "rawPayout"
|
|
1523
|
+
}
|
|
1148
1524
|
export type Condition = {
|
|
1149
1525
|
__typename?: 'Condition';
|
|
1526
|
+
_outcomesKey?: Maybe<Scalars['String']['output']>;
|
|
1150
1527
|
_updatedAt: Scalars['BigInt']['output'];
|
|
1151
1528
|
_winningOutcomesCount: Scalars['Int']['output'];
|
|
1152
1529
|
conditionId: Scalars['BigInt']['output'];
|
|
@@ -1156,6 +1533,7 @@ export type Condition = {
|
|
|
1156
1533
|
createdBlockTimestamp: Scalars['BigInt']['output'];
|
|
1157
1534
|
createdTxHash: Scalars['String']['output'];
|
|
1158
1535
|
game: Game;
|
|
1536
|
+
hidden: Scalars['Boolean']['output'];
|
|
1159
1537
|
/** Core Contract address + Condition Id */
|
|
1160
1538
|
id: Scalars['ID']['output'];
|
|
1161
1539
|
internalStartsAt?: Maybe<Scalars['BigInt']['output']>;
|
|
@@ -1188,6 +1566,67 @@ export type ConditionWonOutcomesArgs = {
|
|
|
1188
1566
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1189
1567
|
where?: InputMaybe<Outcome_Filter>;
|
|
1190
1568
|
};
|
|
1569
|
+
export type ConditionLog = {
|
|
1570
|
+
__typename?: 'ConditionLog';
|
|
1571
|
+
conditionId: Scalars['BigInt']['output'];
|
|
1572
|
+
createdBlockTimestamp: Scalars['BigInt']['output'];
|
|
1573
|
+
/** Core Contract address + Condition Id */
|
|
1574
|
+
id: Scalars['ID']['output'];
|
|
1575
|
+
isLive: Scalars['Boolean']['output'];
|
|
1576
|
+
status: ConditionLogStatus;
|
|
1577
|
+
};
|
|
1578
|
+
export declare enum ConditionLogStatus {
|
|
1579
|
+
Canceled = "Canceled",
|
|
1580
|
+
Created = "Created",
|
|
1581
|
+
Paused = "Paused",
|
|
1582
|
+
Resolved = "Resolved",
|
|
1583
|
+
Unpaused = "Unpaused"
|
|
1584
|
+
}
|
|
1585
|
+
export type ConditionLog_Filter = {
|
|
1586
|
+
/** Filter for the block changed event. */
|
|
1587
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1588
|
+
and?: InputMaybe<Array<InputMaybe<ConditionLog_Filter>>>;
|
|
1589
|
+
conditionId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1590
|
+
conditionId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1591
|
+
conditionId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1592
|
+
conditionId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1593
|
+
conditionId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1594
|
+
conditionId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1595
|
+
conditionId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1596
|
+
conditionId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1597
|
+
createdBlockTimestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1598
|
+
createdBlockTimestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1599
|
+
createdBlockTimestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1600
|
+
createdBlockTimestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1601
|
+
createdBlockTimestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1602
|
+
createdBlockTimestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1603
|
+
createdBlockTimestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1604
|
+
createdBlockTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1605
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1606
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1607
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1608
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1609
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1610
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1611
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1612
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1613
|
+
isLive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1614
|
+
isLive_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1615
|
+
isLive_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1616
|
+
isLive_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1617
|
+
or?: InputMaybe<Array<InputMaybe<ConditionLog_Filter>>>;
|
|
1618
|
+
status?: InputMaybe<ConditionLogStatus>;
|
|
1619
|
+
status_in?: InputMaybe<Array<ConditionLogStatus>>;
|
|
1620
|
+
status_not?: InputMaybe<ConditionLogStatus>;
|
|
1621
|
+
status_not_in?: InputMaybe<Array<ConditionLogStatus>>;
|
|
1622
|
+
};
|
|
1623
|
+
export declare enum ConditionLog_OrderBy {
|
|
1624
|
+
ConditionId = "conditionId",
|
|
1625
|
+
CreatedBlockTimestamp = "createdBlockTimestamp",
|
|
1626
|
+
Id = "id",
|
|
1627
|
+
IsLive = "isLive",
|
|
1628
|
+
Status = "status"
|
|
1629
|
+
}
|
|
1191
1630
|
export declare enum ConditionStatus {
|
|
1192
1631
|
Canceled = "Canceled",
|
|
1193
1632
|
Created = "Created",
|
|
@@ -1197,6 +1636,26 @@ export declare enum ConditionStatus {
|
|
|
1197
1636
|
export type Condition_Filter = {
|
|
1198
1637
|
/** Filter for the block changed event. */
|
|
1199
1638
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1639
|
+
_outcomesKey?: InputMaybe<Scalars['String']['input']>;
|
|
1640
|
+
_outcomesKey_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1641
|
+
_outcomesKey_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1642
|
+
_outcomesKey_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1643
|
+
_outcomesKey_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1644
|
+
_outcomesKey_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1645
|
+
_outcomesKey_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1646
|
+
_outcomesKey_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1647
|
+
_outcomesKey_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1648
|
+
_outcomesKey_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1649
|
+
_outcomesKey_not?: InputMaybe<Scalars['String']['input']>;
|
|
1650
|
+
_outcomesKey_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1651
|
+
_outcomesKey_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1652
|
+
_outcomesKey_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1653
|
+
_outcomesKey_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1654
|
+
_outcomesKey_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1655
|
+
_outcomesKey_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1656
|
+
_outcomesKey_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1657
|
+
_outcomesKey_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1658
|
+
_outcomesKey_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1200
1659
|
_updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1201
1660
|
_updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1202
1661
|
_updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1320,6 +1779,10 @@ export type Condition_Filter = {
|
|
|
1320
1779
|
game_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1321
1780
|
game_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1322
1781
|
game_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1782
|
+
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1783
|
+
hidden_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1784
|
+
hidden_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1785
|
+
hidden_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1323
1786
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1324
1787
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1325
1788
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1455,6 +1918,7 @@ export type Condition_Filter = {
|
|
|
1455
1918
|
wonOutcomes_not_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1456
1919
|
};
|
|
1457
1920
|
export declare enum Condition_OrderBy {
|
|
1921
|
+
OutcomesKey = "_outcomesKey",
|
|
1458
1922
|
UpdatedAt = "_updatedAt",
|
|
1459
1923
|
WinningOutcomesCount = "_winningOutcomesCount",
|
|
1460
1924
|
ConditionId = "conditionId",
|
|
@@ -1464,6 +1928,7 @@ export declare enum Condition_OrderBy {
|
|
|
1464
1928
|
CreatedBlockTimestamp = "createdBlockTimestamp",
|
|
1465
1929
|
CreatedTxHash = "createdTxHash",
|
|
1466
1930
|
Game = "game",
|
|
1931
|
+
Hidden = "hidden",
|
|
1467
1932
|
Id = "id",
|
|
1468
1933
|
InternalStartsAt = "internalStartsAt",
|
|
1469
1934
|
IsExpressForbidden = "isExpressForbidden",
|
|
@@ -1713,6 +2178,7 @@ export type Event = {
|
|
|
1713
2178
|
};
|
|
1714
2179
|
export declare enum EventName {
|
|
1715
2180
|
AzuroBetTransfer = "AzuroBetTransfer",
|
|
2181
|
+
BetCashedOut = "BetCashedOut",
|
|
1716
2182
|
BetSettled = "BetSettled",
|
|
1717
2183
|
BettorWin = "BettorWin",
|
|
1718
2184
|
ConditionCreated = "ConditionCreated",
|
|
@@ -1724,6 +2190,7 @@ export declare enum EventName {
|
|
|
1724
2190
|
FreeBetRedeemed = "FreeBetRedeemed",
|
|
1725
2191
|
FreeBetReissued = "FreeBetReissued",
|
|
1726
2192
|
FreeBetTransfer = "FreeBetTransfer",
|
|
2193
|
+
GameCanceled = "GameCanceled",
|
|
1727
2194
|
GameShifted = "GameShifted",
|
|
1728
2195
|
LiquidityAdded = "LiquidityAdded",
|
|
1729
2196
|
LiquidityRemoved = "LiquidityRemoved",
|
|
@@ -2491,6 +2958,7 @@ export type Game = {
|
|
|
2491
2958
|
_activeConditionsEntityIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
2492
2959
|
_canceledConditionsEntityIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
2493
2960
|
_pausedConditionsEntityIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
2961
|
+
_providerTitle?: Maybe<Scalars['String']['output']>;
|
|
2494
2962
|
_resolvedConditionsEntityIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
2495
2963
|
_updatedAt: Scalars['BigInt']['output'];
|
|
2496
2964
|
conditions: Array<Condition>;
|
|
@@ -2559,6 +3027,26 @@ export type Game_Filter = {
|
|
|
2559
3027
|
_pausedConditionsEntityIds_not?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2560
3028
|
_pausedConditionsEntityIds_not_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2561
3029
|
_pausedConditionsEntityIds_not_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3030
|
+
_providerTitle?: InputMaybe<Scalars['String']['input']>;
|
|
3031
|
+
_providerTitle_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3032
|
+
_providerTitle_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3033
|
+
_providerTitle_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3034
|
+
_providerTitle_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3035
|
+
_providerTitle_gt?: InputMaybe<Scalars['String']['input']>;
|
|
3036
|
+
_providerTitle_gte?: InputMaybe<Scalars['String']['input']>;
|
|
3037
|
+
_providerTitle_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3038
|
+
_providerTitle_lt?: InputMaybe<Scalars['String']['input']>;
|
|
3039
|
+
_providerTitle_lte?: InputMaybe<Scalars['String']['input']>;
|
|
3040
|
+
_providerTitle_not?: InputMaybe<Scalars['String']['input']>;
|
|
3041
|
+
_providerTitle_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3042
|
+
_providerTitle_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3043
|
+
_providerTitle_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3044
|
+
_providerTitle_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3045
|
+
_providerTitle_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3046
|
+
_providerTitle_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3047
|
+
_providerTitle_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3048
|
+
_providerTitle_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3049
|
+
_providerTitle_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2562
3050
|
_resolvedConditionsEntityIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2563
3051
|
_resolvedConditionsEntityIds_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2564
3052
|
_resolvedConditionsEntityIds_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -2841,6 +3329,7 @@ export declare enum Game_OrderBy {
|
|
|
2841
3329
|
ActiveConditionsEntityIds = "_activeConditionsEntityIds",
|
|
2842
3330
|
CanceledConditionsEntityIds = "_canceledConditionsEntityIds",
|
|
2843
3331
|
PausedConditionsEntityIds = "_pausedConditionsEntityIds",
|
|
3332
|
+
ProviderTitle = "_providerTitle",
|
|
2844
3333
|
ResolvedConditionsEntityIds = "_resolvedConditionsEntityIds",
|
|
2845
3334
|
UpdatedAt = "_updatedAt",
|
|
2846
3335
|
Conditions = "conditions",
|
|
@@ -3710,6 +4199,7 @@ export type LiveBet = {
|
|
|
3710
4199
|
amount: Scalars['BigDecimal']['output'];
|
|
3711
4200
|
betId: Scalars['BigInt']['output'];
|
|
3712
4201
|
bettor: Scalars['String']['output'];
|
|
4202
|
+
cashout?: Maybe<Cashout>;
|
|
3713
4203
|
core: CoreContract;
|
|
3714
4204
|
createdBlockNumber: Scalars['BigInt']['output'];
|
|
3715
4205
|
createdBlockTimestamp: Scalars['BigInt']['output'];
|
|
@@ -3717,6 +4207,7 @@ export type LiveBet = {
|
|
|
3717
4207
|
freebet?: Maybe<Freebet>;
|
|
3718
4208
|
/** Core contract address + Bet Id */
|
|
3719
4209
|
id: Scalars['ID']['output'];
|
|
4210
|
+
isCashedOut: Scalars['Boolean']['output'];
|
|
3720
4211
|
isRedeemable: Scalars['Boolean']['output'];
|
|
3721
4212
|
isRedeemed: Scalars['Boolean']['output'];
|
|
3722
4213
|
nonce?: Maybe<Scalars['BigInt']['output']>;
|
|
@@ -3938,6 +4429,27 @@ export type LiveBet_Filter = {
|
|
|
3938
4429
|
bettor_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3939
4430
|
bettor_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3940
4431
|
bettor_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
4432
|
+
cashout?: InputMaybe<Scalars['String']['input']>;
|
|
4433
|
+
cashout_?: InputMaybe<Cashout_Filter>;
|
|
4434
|
+
cashout_contains?: InputMaybe<Scalars['String']['input']>;
|
|
4435
|
+
cashout_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
4436
|
+
cashout_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
4437
|
+
cashout_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
4438
|
+
cashout_gt?: InputMaybe<Scalars['String']['input']>;
|
|
4439
|
+
cashout_gte?: InputMaybe<Scalars['String']['input']>;
|
|
4440
|
+
cashout_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4441
|
+
cashout_lt?: InputMaybe<Scalars['String']['input']>;
|
|
4442
|
+
cashout_lte?: InputMaybe<Scalars['String']['input']>;
|
|
4443
|
+
cashout_not?: InputMaybe<Scalars['String']['input']>;
|
|
4444
|
+
cashout_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
4445
|
+
cashout_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
4446
|
+
cashout_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
4447
|
+
cashout_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
4448
|
+
cashout_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4449
|
+
cashout_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
4450
|
+
cashout_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
4451
|
+
cashout_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
4452
|
+
cashout_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3941
4453
|
core?: InputMaybe<Scalars['String']['input']>;
|
|
3942
4454
|
core_?: InputMaybe<CoreContract_Filter>;
|
|
3943
4455
|
core_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4024,6 +4536,10 @@ export type LiveBet_Filter = {
|
|
|
4024
4536
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
4025
4537
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
4026
4538
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4539
|
+
isCashedOut?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4540
|
+
isCashedOut_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
4541
|
+
isCashedOut_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4542
|
+
isCashedOut_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
4027
4543
|
isRedeemable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4028
4544
|
isRedeemable_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
4029
4545
|
isRedeemable_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4265,12 +4781,14 @@ export declare enum LiveBet_OrderBy {
|
|
|
4265
4781
|
Amount = "amount",
|
|
4266
4782
|
BetId = "betId",
|
|
4267
4783
|
Bettor = "bettor",
|
|
4784
|
+
Cashout = "cashout",
|
|
4268
4785
|
Core = "core",
|
|
4269
4786
|
CreatedBlockNumber = "createdBlockNumber",
|
|
4270
4787
|
CreatedBlockTimestamp = "createdBlockTimestamp",
|
|
4271
4788
|
CreatedTxHash = "createdTxHash",
|
|
4272
4789
|
Freebet = "freebet",
|
|
4273
4790
|
Id = "id",
|
|
4791
|
+
IsCashedOut = "isCashedOut",
|
|
4274
4792
|
IsRedeemable = "isRedeemable",
|
|
4275
4793
|
IsRedeemed = "isRedeemed",
|
|
4276
4794
|
Nonce = "nonce",
|
|
@@ -4309,6 +4827,7 @@ export type LiveCondition = {
|
|
|
4309
4827
|
createdBlockTimestamp: Scalars['BigInt']['output'];
|
|
4310
4828
|
createdTxHash: Scalars['String']['output'];
|
|
4311
4829
|
gameId: Scalars['BigInt']['output'];
|
|
4830
|
+
hidden: Scalars['Boolean']['output'];
|
|
4312
4831
|
/** Core Contract address + Condition Id */
|
|
4313
4832
|
id: Scalars['ID']['output'];
|
|
4314
4833
|
outcomes: Array<LiveOutcome>;
|
|
@@ -4449,6 +4968,10 @@ export type LiveCondition_Filter = {
|
|
|
4449
4968
|
gameId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4450
4969
|
gameId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4451
4970
|
gameId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
4971
|
+
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4972
|
+
hidden_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
4973
|
+
hidden_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4974
|
+
hidden_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
4452
4975
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4453
4976
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
4454
4977
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4557,6 +5080,7 @@ export declare enum LiveCondition_OrderBy {
|
|
|
4557
5080
|
CreatedBlockTimestamp = "createdBlockTimestamp",
|
|
4558
5081
|
CreatedTxHash = "createdTxHash",
|
|
4559
5082
|
GameId = "gameId",
|
|
5083
|
+
Hidden = "hidden",
|
|
4560
5084
|
Id = "id",
|
|
4561
5085
|
Outcomes = "outcomes",
|
|
4562
5086
|
OutcomesIds = "outcomesIds",
|
|
@@ -5029,6 +5553,50 @@ export declare enum Outcome_OrderBy {
|
|
|
5029
5553
|
SortOrder = "sortOrder",
|
|
5030
5554
|
Title = "title"
|
|
5031
5555
|
}
|
|
5556
|
+
export type OutcomesKeyConditionRelation = {
|
|
5557
|
+
__typename?: 'OutcomesKeyConditionRelation';
|
|
5558
|
+
conditionEntityId: Scalars['String']['output'];
|
|
5559
|
+
/** Core Contract address + Joined outcome keys */
|
|
5560
|
+
id: Scalars['ID']['output'];
|
|
5561
|
+
};
|
|
5562
|
+
export type OutcomesKeyConditionRelation_Filter = {
|
|
5563
|
+
/** Filter for the block changed event. */
|
|
5564
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5565
|
+
and?: InputMaybe<Array<InputMaybe<OutcomesKeyConditionRelation_Filter>>>;
|
|
5566
|
+
conditionEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
5567
|
+
conditionEntityId_contains?: InputMaybe<Scalars['String']['input']>;
|
|
5568
|
+
conditionEntityId_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5569
|
+
conditionEntityId_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
5570
|
+
conditionEntityId_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5571
|
+
conditionEntityId_gt?: InputMaybe<Scalars['String']['input']>;
|
|
5572
|
+
conditionEntityId_gte?: InputMaybe<Scalars['String']['input']>;
|
|
5573
|
+
conditionEntityId_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5574
|
+
conditionEntityId_lt?: InputMaybe<Scalars['String']['input']>;
|
|
5575
|
+
conditionEntityId_lte?: InputMaybe<Scalars['String']['input']>;
|
|
5576
|
+
conditionEntityId_not?: InputMaybe<Scalars['String']['input']>;
|
|
5577
|
+
conditionEntityId_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
5578
|
+
conditionEntityId_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5579
|
+
conditionEntityId_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
5580
|
+
conditionEntityId_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5581
|
+
conditionEntityId_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5582
|
+
conditionEntityId_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5583
|
+
conditionEntityId_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5584
|
+
conditionEntityId_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5585
|
+
conditionEntityId_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5586
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5587
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
5588
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
5589
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5590
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
5591
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
5592
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
5593
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5594
|
+
or?: InputMaybe<Array<InputMaybe<OutcomesKeyConditionRelation_Filter>>>;
|
|
5595
|
+
};
|
|
5596
|
+
export declare enum OutcomesKeyConditionRelation_OrderBy {
|
|
5597
|
+
ConditionEntityId = "conditionEntityId",
|
|
5598
|
+
Id = "id"
|
|
5599
|
+
}
|
|
5032
5600
|
export type Participant = {
|
|
5033
5601
|
__typename?: 'Participant';
|
|
5034
5602
|
game: Game;
|
|
@@ -5132,6 +5700,8 @@ export type Query = {
|
|
|
5132
5700
|
__typename?: 'Query';
|
|
5133
5701
|
/** Access to subgraph metadata */
|
|
5134
5702
|
_meta?: Maybe<_Meta_>;
|
|
5703
|
+
affiliateMonthlies: Array<AffiliateMonthly>;
|
|
5704
|
+
affiliateMonthly?: Maybe<AffiliateMonthly>;
|
|
5135
5705
|
azuroBetContract?: Maybe<AzuroBetContract>;
|
|
5136
5706
|
azuroBetContracts: Array<AzuroBetContract>;
|
|
5137
5707
|
bet?: Maybe<Bet>;
|
|
@@ -5140,7 +5710,11 @@ export type Query = {
|
|
|
5140
5710
|
bets: Array<Bet>;
|
|
5141
5711
|
bettor?: Maybe<Bettor>;
|
|
5142
5712
|
bettors: Array<Bettor>;
|
|
5713
|
+
cashout?: Maybe<Cashout>;
|
|
5714
|
+
cashouts: Array<Cashout>;
|
|
5143
5715
|
condition?: Maybe<Condition>;
|
|
5716
|
+
conditionLog?: Maybe<ConditionLog>;
|
|
5717
|
+
conditionLogs: Array<ConditionLog>;
|
|
5144
5718
|
conditions: Array<Condition>;
|
|
5145
5719
|
coreContract?: Maybe<CoreContract>;
|
|
5146
5720
|
coreContracts: Array<CoreContract>;
|
|
@@ -5174,6 +5748,8 @@ export type Query = {
|
|
|
5174
5748
|
liveSelections: Array<LiveSelection>;
|
|
5175
5749
|
outcome?: Maybe<Outcome>;
|
|
5176
5750
|
outcomes: Array<Outcome>;
|
|
5751
|
+
outcomesKeyConditionRelation?: Maybe<OutcomesKeyConditionRelation>;
|
|
5752
|
+
outcomesKeyConditionRelations: Array<OutcomesKeyConditionRelation>;
|
|
5177
5753
|
participant?: Maybe<Participant>;
|
|
5178
5754
|
participants: Array<Participant>;
|
|
5179
5755
|
selection?: Maybe<Selection>;
|
|
@@ -5186,6 +5762,20 @@ export type Query = {
|
|
|
5186
5762
|
export type Query_MetaArgs = {
|
|
5187
5763
|
block?: InputMaybe<Block_Height>;
|
|
5188
5764
|
};
|
|
5765
|
+
export type QueryAffiliateMonthliesArgs = {
|
|
5766
|
+
block?: InputMaybe<Block_Height>;
|
|
5767
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5768
|
+
orderBy?: InputMaybe<AffiliateMonthly_OrderBy>;
|
|
5769
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5770
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
5771
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5772
|
+
where?: InputMaybe<AffiliateMonthly_Filter>;
|
|
5773
|
+
};
|
|
5774
|
+
export type QueryAffiliateMonthlyArgs = {
|
|
5775
|
+
block?: InputMaybe<Block_Height>;
|
|
5776
|
+
id: Scalars['ID']['input'];
|
|
5777
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5778
|
+
};
|
|
5189
5779
|
export type QueryAzuroBetContractArgs = {
|
|
5190
5780
|
block?: InputMaybe<Block_Height>;
|
|
5191
5781
|
id: Scalars['ID']['input'];
|
|
@@ -5242,11 +5832,39 @@ export type QueryBettorsArgs = {
|
|
|
5242
5832
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5243
5833
|
where?: InputMaybe<Bettor_Filter>;
|
|
5244
5834
|
};
|
|
5835
|
+
export type QueryCashoutArgs = {
|
|
5836
|
+
block?: InputMaybe<Block_Height>;
|
|
5837
|
+
id: Scalars['ID']['input'];
|
|
5838
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5839
|
+
};
|
|
5840
|
+
export type QueryCashoutsArgs = {
|
|
5841
|
+
block?: InputMaybe<Block_Height>;
|
|
5842
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5843
|
+
orderBy?: InputMaybe<Cashout_OrderBy>;
|
|
5844
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5845
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
5846
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5847
|
+
where?: InputMaybe<Cashout_Filter>;
|
|
5848
|
+
};
|
|
5245
5849
|
export type QueryConditionArgs = {
|
|
5246
5850
|
block?: InputMaybe<Block_Height>;
|
|
5247
5851
|
id: Scalars['ID']['input'];
|
|
5248
5852
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5249
5853
|
};
|
|
5854
|
+
export type QueryConditionLogArgs = {
|
|
5855
|
+
block?: InputMaybe<Block_Height>;
|
|
5856
|
+
id: Scalars['ID']['input'];
|
|
5857
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5858
|
+
};
|
|
5859
|
+
export type QueryConditionLogsArgs = {
|
|
5860
|
+
block?: InputMaybe<Block_Height>;
|
|
5861
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5862
|
+
orderBy?: InputMaybe<ConditionLog_OrderBy>;
|
|
5863
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
5864
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
5865
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
5866
|
+
where?: InputMaybe<ConditionLog_Filter>;
|
|
5867
|
+
};
|
|
5250
5868
|
export type QueryConditionsArgs = {
|
|
5251
5869
|
block?: InputMaybe<Block_Height>;
|
|
5252
5870
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5480,6 +6098,20 @@ export type QueryOutcomesArgs = {
|
|
|
5480
6098
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5481
6099
|
where?: InputMaybe<Outcome_Filter>;
|
|
5482
6100
|
};
|
|
6101
|
+
export type QueryOutcomesKeyConditionRelationArgs = {
|
|
6102
|
+
block?: InputMaybe<Block_Height>;
|
|
6103
|
+
id: Scalars['ID']['input'];
|
|
6104
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6105
|
+
};
|
|
6106
|
+
export type QueryOutcomesKeyConditionRelationsArgs = {
|
|
6107
|
+
block?: InputMaybe<Block_Height>;
|
|
6108
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6109
|
+
orderBy?: InputMaybe<OutcomesKeyConditionRelation_OrderBy>;
|
|
6110
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6111
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
6112
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6113
|
+
where?: InputMaybe<OutcomesKeyConditionRelation_Filter>;
|
|
6114
|
+
};
|
|
5483
6115
|
export type QueryParticipantArgs = {
|
|
5484
6116
|
block?: InputMaybe<Block_Height>;
|
|
5485
6117
|
id: Scalars['ID']['input'];
|
|
@@ -5870,6 +6502,8 @@ export type Subscription = {
|
|
|
5870
6502
|
__typename?: 'Subscription';
|
|
5871
6503
|
/** Access to subgraph metadata */
|
|
5872
6504
|
_meta?: Maybe<_Meta_>;
|
|
6505
|
+
affiliateMonthlies: Array<AffiliateMonthly>;
|
|
6506
|
+
affiliateMonthly?: Maybe<AffiliateMonthly>;
|
|
5873
6507
|
azuroBetContract?: Maybe<AzuroBetContract>;
|
|
5874
6508
|
azuroBetContracts: Array<AzuroBetContract>;
|
|
5875
6509
|
bet?: Maybe<Bet>;
|
|
@@ -5878,7 +6512,11 @@ export type Subscription = {
|
|
|
5878
6512
|
bets: Array<Bet>;
|
|
5879
6513
|
bettor?: Maybe<Bettor>;
|
|
5880
6514
|
bettors: Array<Bettor>;
|
|
6515
|
+
cashout?: Maybe<Cashout>;
|
|
6516
|
+
cashouts: Array<Cashout>;
|
|
5881
6517
|
condition?: Maybe<Condition>;
|
|
6518
|
+
conditionLog?: Maybe<ConditionLog>;
|
|
6519
|
+
conditionLogs: Array<ConditionLog>;
|
|
5882
6520
|
conditions: Array<Condition>;
|
|
5883
6521
|
coreContract?: Maybe<CoreContract>;
|
|
5884
6522
|
coreContracts: Array<CoreContract>;
|
|
@@ -5912,6 +6550,8 @@ export type Subscription = {
|
|
|
5912
6550
|
liveSelections: Array<LiveSelection>;
|
|
5913
6551
|
outcome?: Maybe<Outcome>;
|
|
5914
6552
|
outcomes: Array<Outcome>;
|
|
6553
|
+
outcomesKeyConditionRelation?: Maybe<OutcomesKeyConditionRelation>;
|
|
6554
|
+
outcomesKeyConditionRelations: Array<OutcomesKeyConditionRelation>;
|
|
5915
6555
|
participant?: Maybe<Participant>;
|
|
5916
6556
|
participants: Array<Participant>;
|
|
5917
6557
|
selection?: Maybe<Selection>;
|
|
@@ -5924,6 +6564,20 @@ export type Subscription = {
|
|
|
5924
6564
|
export type Subscription_MetaArgs = {
|
|
5925
6565
|
block?: InputMaybe<Block_Height>;
|
|
5926
6566
|
};
|
|
6567
|
+
export type SubscriptionAffiliateMonthliesArgs = {
|
|
6568
|
+
block?: InputMaybe<Block_Height>;
|
|
6569
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6570
|
+
orderBy?: InputMaybe<AffiliateMonthly_OrderBy>;
|
|
6571
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6572
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
6573
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6574
|
+
where?: InputMaybe<AffiliateMonthly_Filter>;
|
|
6575
|
+
};
|
|
6576
|
+
export type SubscriptionAffiliateMonthlyArgs = {
|
|
6577
|
+
block?: InputMaybe<Block_Height>;
|
|
6578
|
+
id: Scalars['ID']['input'];
|
|
6579
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6580
|
+
};
|
|
5927
6581
|
export type SubscriptionAzuroBetContractArgs = {
|
|
5928
6582
|
block?: InputMaybe<Block_Height>;
|
|
5929
6583
|
id: Scalars['ID']['input'];
|
|
@@ -5980,11 +6634,39 @@ export type SubscriptionBettorsArgs = {
|
|
|
5980
6634
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5981
6635
|
where?: InputMaybe<Bettor_Filter>;
|
|
5982
6636
|
};
|
|
6637
|
+
export type SubscriptionCashoutArgs = {
|
|
6638
|
+
block?: InputMaybe<Block_Height>;
|
|
6639
|
+
id: Scalars['ID']['input'];
|
|
6640
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6641
|
+
};
|
|
6642
|
+
export type SubscriptionCashoutsArgs = {
|
|
6643
|
+
block?: InputMaybe<Block_Height>;
|
|
6644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6645
|
+
orderBy?: InputMaybe<Cashout_OrderBy>;
|
|
6646
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6647
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
6648
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6649
|
+
where?: InputMaybe<Cashout_Filter>;
|
|
6650
|
+
};
|
|
5983
6651
|
export type SubscriptionConditionArgs = {
|
|
5984
6652
|
block?: InputMaybe<Block_Height>;
|
|
5985
6653
|
id: Scalars['ID']['input'];
|
|
5986
6654
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
5987
6655
|
};
|
|
6656
|
+
export type SubscriptionConditionLogArgs = {
|
|
6657
|
+
block?: InputMaybe<Block_Height>;
|
|
6658
|
+
id: Scalars['ID']['input'];
|
|
6659
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6660
|
+
};
|
|
6661
|
+
export type SubscriptionConditionLogsArgs = {
|
|
6662
|
+
block?: InputMaybe<Block_Height>;
|
|
6663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6664
|
+
orderBy?: InputMaybe<ConditionLog_OrderBy>;
|
|
6665
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6666
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
6667
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6668
|
+
where?: InputMaybe<ConditionLog_Filter>;
|
|
6669
|
+
};
|
|
5988
6670
|
export type SubscriptionConditionsArgs = {
|
|
5989
6671
|
block?: InputMaybe<Block_Height>;
|
|
5990
6672
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6218,6 +6900,20 @@ export type SubscriptionOutcomesArgs = {
|
|
|
6218
6900
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
6219
6901
|
where?: InputMaybe<Outcome_Filter>;
|
|
6220
6902
|
};
|
|
6903
|
+
export type SubscriptionOutcomesKeyConditionRelationArgs = {
|
|
6904
|
+
block?: InputMaybe<Block_Height>;
|
|
6905
|
+
id: Scalars['ID']['input'];
|
|
6906
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6907
|
+
};
|
|
6908
|
+
export type SubscriptionOutcomesKeyConditionRelationsArgs = {
|
|
6909
|
+
block?: InputMaybe<Block_Height>;
|
|
6910
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6911
|
+
orderBy?: InputMaybe<OutcomesKeyConditionRelation_OrderBy>;
|
|
6912
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
6913
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
6914
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
6915
|
+
where?: InputMaybe<OutcomesKeyConditionRelation_Filter>;
|
|
6916
|
+
};
|
|
6221
6917
|
export type SubscriptionParticipantArgs = {
|
|
6222
6918
|
block?: InputMaybe<Block_Height>;
|
|
6223
6919
|
id: Scalars['ID']['input'];
|