@numen-crypto/contract 0.18.2 → 0.20.0
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/dist/index.cjs +77 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +621 -13
- package/dist/index.d.ts +621 -13
- package/dist/index.js +73 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -314,13 +314,13 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
314
314
|
}>;
|
|
315
315
|
type WalletOverview = z.infer<typeof WalletOverviewSchema>;
|
|
316
316
|
|
|
317
|
-
declare const TransactionTypeSchema: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
|
|
317
|
+
declare const TransactionTypeSchema: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT", "PREDICTION"]>;
|
|
318
318
|
type TransactionType = z.infer<typeof TransactionTypeSchema>;
|
|
319
319
|
declare const TransactionStatusSchema: z.ZodEnum<["PENDING", "PROCESSING", "COMPLETED", "FAILED", "CANCELLED"]>;
|
|
320
320
|
type TransactionStatus = z.infer<typeof TransactionStatusSchema>;
|
|
321
321
|
declare const TransactionSchema: z.ZodObject<{
|
|
322
322
|
id: z.ZodString;
|
|
323
|
-
type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
|
|
323
|
+
type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT", "PREDICTION"]>;
|
|
324
324
|
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
325
325
|
amount: z.ZodString;
|
|
326
326
|
price: z.ZodNullable<z.ZodString>;
|
|
@@ -329,7 +329,7 @@ declare const TransactionSchema: z.ZodObject<{
|
|
|
329
329
|
reference: z.ZodNullable<z.ZodString>;
|
|
330
330
|
createdAt: z.ZodString;
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
-
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT";
|
|
332
|
+
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION";
|
|
333
333
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
334
334
|
id: string;
|
|
335
335
|
createdAt: string;
|
|
@@ -339,7 +339,7 @@ declare const TransactionSchema: z.ZodObject<{
|
|
|
339
339
|
quoteAmount: string | null;
|
|
340
340
|
reference: string | null;
|
|
341
341
|
}, {
|
|
342
|
-
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT";
|
|
342
|
+
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION";
|
|
343
343
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
344
344
|
id: string;
|
|
345
345
|
createdAt: string;
|
|
@@ -1968,13 +1968,13 @@ declare namespace GetTransactionsCommand {
|
|
|
1968
1968
|
page: z.ZodDefault<z.ZodNumber>;
|
|
1969
1969
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
|
1970
1970
|
} & {
|
|
1971
|
-
type: z.ZodOptional<z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>>;
|
|
1971
|
+
type: z.ZodOptional<z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT", "PREDICTION"]>>;
|
|
1972
1972
|
}, "strip", z.ZodTypeAny, {
|
|
1973
1973
|
page: number;
|
|
1974
1974
|
pageSize: number;
|
|
1975
|
-
type?: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | undefined;
|
|
1975
|
+
type?: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION" | undefined;
|
|
1976
1976
|
}, {
|
|
1977
|
-
type?: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | undefined;
|
|
1977
|
+
type?: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION" | undefined;
|
|
1978
1978
|
page?: number | undefined;
|
|
1979
1979
|
pageSize?: number | undefined;
|
|
1980
1980
|
}>;
|
|
@@ -1982,7 +1982,7 @@ declare namespace GetTransactionsCommand {
|
|
|
1982
1982
|
const ResponseSchema: z.ZodObject<{
|
|
1983
1983
|
items: z.ZodArray<z.ZodObject<{
|
|
1984
1984
|
id: z.ZodString;
|
|
1985
|
-
type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
|
|
1985
|
+
type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT", "PREDICTION"]>;
|
|
1986
1986
|
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1987
1987
|
amount: z.ZodString;
|
|
1988
1988
|
price: z.ZodNullable<z.ZodString>;
|
|
@@ -1991,7 +1991,7 @@ declare namespace GetTransactionsCommand {
|
|
|
1991
1991
|
reference: z.ZodNullable<z.ZodString>;
|
|
1992
1992
|
createdAt: z.ZodString;
|
|
1993
1993
|
}, "strip", z.ZodTypeAny, {
|
|
1994
|
-
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT";
|
|
1994
|
+
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION";
|
|
1995
1995
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
1996
1996
|
id: string;
|
|
1997
1997
|
createdAt: string;
|
|
@@ -2001,7 +2001,7 @@ declare namespace GetTransactionsCommand {
|
|
|
2001
2001
|
quoteAmount: string | null;
|
|
2002
2002
|
reference: string | null;
|
|
2003
2003
|
}, {
|
|
2004
|
-
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT";
|
|
2004
|
+
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION";
|
|
2005
2005
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
2006
2006
|
id: string;
|
|
2007
2007
|
createdAt: string;
|
|
@@ -2018,7 +2018,7 @@ declare namespace GetTransactionsCommand {
|
|
|
2018
2018
|
page: number;
|
|
2019
2019
|
pageSize: number;
|
|
2020
2020
|
items: {
|
|
2021
|
-
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT";
|
|
2021
|
+
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION";
|
|
2022
2022
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
2023
2023
|
id: string;
|
|
2024
2024
|
createdAt: string;
|
|
@@ -2033,7 +2033,7 @@ declare namespace GetTransactionsCommand {
|
|
|
2033
2033
|
page: number;
|
|
2034
2034
|
pageSize: number;
|
|
2035
2035
|
items: {
|
|
2036
|
-
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT";
|
|
2036
|
+
type: "DEPOSIT" | "WITHDRAWAL" | "BUY" | "SELL" | "COMMISSION" | "BONUS" | "ADJUSTMENT" | "PREDICTION";
|
|
2037
2037
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
2038
2038
|
id: string;
|
|
2039
2039
|
createdAt: string;
|
|
@@ -6284,6 +6284,609 @@ declare namespace TicketAttachmentUploadCommand {
|
|
|
6284
6284
|
type Response = z.infer<typeof ResponseSchema>;
|
|
6285
6285
|
}
|
|
6286
6286
|
|
|
6287
|
+
declare const PredictionSideSchema: z.ZodEnum<["YES", "NO"]>;
|
|
6288
|
+
type PredictionSide = z.infer<typeof PredictionSideSchema>;
|
|
6289
|
+
declare const PredictionStatusSchema: z.ZodEnum<["OPEN", "LOCKED", "RESOLVING", "RESOLVED", "VOID"]>;
|
|
6290
|
+
type PredictionStatus = z.infer<typeof PredictionStatusSchema>;
|
|
6291
|
+
declare const PredictionSchema: z.ZodObject<{
|
|
6292
|
+
id: z.ZodString;
|
|
6293
|
+
slug: z.ZodString;
|
|
6294
|
+
title: z.ZodString;
|
|
6295
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6296
|
+
category: z.ZodString;
|
|
6297
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6298
|
+
status: z.ZodEnum<["OPEN", "LOCKED", "RESOLVING", "RESOLVED", "VOID"]>;
|
|
6299
|
+
outcome: z.ZodNullable<z.ZodEnum<["YES", "NO"]>>;
|
|
6300
|
+
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
6301
|
+
betsCloseAt: z.ZodString;
|
|
6302
|
+
resolvesAt: z.ZodString;
|
|
6303
|
+
poolYes: z.ZodString;
|
|
6304
|
+
poolNo: z.ZodString;
|
|
6305
|
+
poolTotal: z.ZodString;
|
|
6306
|
+
/** Staked by real bettors, house seed excluded — this is what actually funds a payout. */
|
|
6307
|
+
stakedYes: z.ZodString;
|
|
6308
|
+
stakedNo: z.ZodString;
|
|
6309
|
+
/** Share of the total pool sitting on YES, in basis points. */
|
|
6310
|
+
yesShareBp: z.ZodNumber;
|
|
6311
|
+
participants: z.ZodNumber;
|
|
6312
|
+
minStake: z.ZodNullable<z.ZodString>;
|
|
6313
|
+
maxStake: z.ZodNullable<z.ZodString>;
|
|
6314
|
+
feeBp: z.ZodNumber;
|
|
6315
|
+
}, "strip", z.ZodTypeAny, {
|
|
6316
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6317
|
+
id: string;
|
|
6318
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6319
|
+
imageUrl: string | null;
|
|
6320
|
+
title: string;
|
|
6321
|
+
category: string;
|
|
6322
|
+
slug: string;
|
|
6323
|
+
description: string | null;
|
|
6324
|
+
outcome: "YES" | "NO" | null;
|
|
6325
|
+
betsCloseAt: string;
|
|
6326
|
+
resolvesAt: string;
|
|
6327
|
+
poolYes: string;
|
|
6328
|
+
poolNo: string;
|
|
6329
|
+
poolTotal: string;
|
|
6330
|
+
stakedYes: string;
|
|
6331
|
+
stakedNo: string;
|
|
6332
|
+
yesShareBp: number;
|
|
6333
|
+
participants: number;
|
|
6334
|
+
minStake: string | null;
|
|
6335
|
+
maxStake: string | null;
|
|
6336
|
+
feeBp: number;
|
|
6337
|
+
}, {
|
|
6338
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6339
|
+
id: string;
|
|
6340
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6341
|
+
imageUrl: string | null;
|
|
6342
|
+
title: string;
|
|
6343
|
+
category: string;
|
|
6344
|
+
slug: string;
|
|
6345
|
+
description: string | null;
|
|
6346
|
+
outcome: "YES" | "NO" | null;
|
|
6347
|
+
betsCloseAt: string;
|
|
6348
|
+
resolvesAt: string;
|
|
6349
|
+
poolYes: string;
|
|
6350
|
+
poolNo: string;
|
|
6351
|
+
poolTotal: string;
|
|
6352
|
+
stakedYes: string;
|
|
6353
|
+
stakedNo: string;
|
|
6354
|
+
yesShareBp: number;
|
|
6355
|
+
participants: number;
|
|
6356
|
+
minStake: string | null;
|
|
6357
|
+
maxStake: string | null;
|
|
6358
|
+
feeBp: number;
|
|
6359
|
+
}>;
|
|
6360
|
+
type Prediction = z.infer<typeof PredictionSchema>;
|
|
6361
|
+
declare const PredictionPositionSchema: z.ZodObject<{
|
|
6362
|
+
side: z.ZodEnum<["YES", "NO"]>;
|
|
6363
|
+
staked: z.ZodString;
|
|
6364
|
+
/** What the position pays out right now if this side wins, stake included. */
|
|
6365
|
+
projectedPayout: z.ZodString;
|
|
6366
|
+
settled: z.ZodBoolean;
|
|
6367
|
+
payout: z.ZodNullable<z.ZodString>;
|
|
6368
|
+
}, "strip", z.ZodTypeAny, {
|
|
6369
|
+
side: "YES" | "NO";
|
|
6370
|
+
staked: string;
|
|
6371
|
+
projectedPayout: string;
|
|
6372
|
+
settled: boolean;
|
|
6373
|
+
payout: string | null;
|
|
6374
|
+
}, {
|
|
6375
|
+
side: "YES" | "NO";
|
|
6376
|
+
staked: string;
|
|
6377
|
+
projectedPayout: string;
|
|
6378
|
+
settled: boolean;
|
|
6379
|
+
payout: string | null;
|
|
6380
|
+
}>;
|
|
6381
|
+
type PredictionPosition = z.infer<typeof PredictionPositionSchema>;
|
|
6382
|
+
declare const PredictionDetailSchema: z.ZodObject<{
|
|
6383
|
+
id: z.ZodString;
|
|
6384
|
+
slug: z.ZodString;
|
|
6385
|
+
title: z.ZodString;
|
|
6386
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6387
|
+
category: z.ZodString;
|
|
6388
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6389
|
+
status: z.ZodEnum<["OPEN", "LOCKED", "RESOLVING", "RESOLVED", "VOID"]>;
|
|
6390
|
+
outcome: z.ZodNullable<z.ZodEnum<["YES", "NO"]>>;
|
|
6391
|
+
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
6392
|
+
betsCloseAt: z.ZodString;
|
|
6393
|
+
resolvesAt: z.ZodString;
|
|
6394
|
+
poolYes: z.ZodString;
|
|
6395
|
+
poolNo: z.ZodString;
|
|
6396
|
+
poolTotal: z.ZodString;
|
|
6397
|
+
/** Staked by real bettors, house seed excluded — this is what actually funds a payout. */
|
|
6398
|
+
stakedYes: z.ZodString;
|
|
6399
|
+
stakedNo: z.ZodString;
|
|
6400
|
+
/** Share of the total pool sitting on YES, in basis points. */
|
|
6401
|
+
yesShareBp: z.ZodNumber;
|
|
6402
|
+
participants: z.ZodNumber;
|
|
6403
|
+
minStake: z.ZodNullable<z.ZodString>;
|
|
6404
|
+
maxStake: z.ZodNullable<z.ZodString>;
|
|
6405
|
+
feeBp: z.ZodNumber;
|
|
6406
|
+
} & {
|
|
6407
|
+
position: z.ZodNullable<z.ZodObject<{
|
|
6408
|
+
side: z.ZodEnum<["YES", "NO"]>;
|
|
6409
|
+
staked: z.ZodString;
|
|
6410
|
+
/** What the position pays out right now if this side wins, stake included. */
|
|
6411
|
+
projectedPayout: z.ZodString;
|
|
6412
|
+
settled: z.ZodBoolean;
|
|
6413
|
+
payout: z.ZodNullable<z.ZodString>;
|
|
6414
|
+
}, "strip", z.ZodTypeAny, {
|
|
6415
|
+
side: "YES" | "NO";
|
|
6416
|
+
staked: string;
|
|
6417
|
+
projectedPayout: string;
|
|
6418
|
+
settled: boolean;
|
|
6419
|
+
payout: string | null;
|
|
6420
|
+
}, {
|
|
6421
|
+
side: "YES" | "NO";
|
|
6422
|
+
staked: string;
|
|
6423
|
+
projectedPayout: string;
|
|
6424
|
+
settled: boolean;
|
|
6425
|
+
payout: string | null;
|
|
6426
|
+
}>>;
|
|
6427
|
+
}, "strip", z.ZodTypeAny, {
|
|
6428
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6429
|
+
id: string;
|
|
6430
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6431
|
+
imageUrl: string | null;
|
|
6432
|
+
title: string;
|
|
6433
|
+
category: string;
|
|
6434
|
+
slug: string;
|
|
6435
|
+
description: string | null;
|
|
6436
|
+
outcome: "YES" | "NO" | null;
|
|
6437
|
+
betsCloseAt: string;
|
|
6438
|
+
resolvesAt: string;
|
|
6439
|
+
poolYes: string;
|
|
6440
|
+
poolNo: string;
|
|
6441
|
+
poolTotal: string;
|
|
6442
|
+
stakedYes: string;
|
|
6443
|
+
stakedNo: string;
|
|
6444
|
+
yesShareBp: number;
|
|
6445
|
+
participants: number;
|
|
6446
|
+
minStake: string | null;
|
|
6447
|
+
maxStake: string | null;
|
|
6448
|
+
feeBp: number;
|
|
6449
|
+
position: {
|
|
6450
|
+
side: "YES" | "NO";
|
|
6451
|
+
staked: string;
|
|
6452
|
+
projectedPayout: string;
|
|
6453
|
+
settled: boolean;
|
|
6454
|
+
payout: string | null;
|
|
6455
|
+
} | null;
|
|
6456
|
+
}, {
|
|
6457
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6458
|
+
id: string;
|
|
6459
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6460
|
+
imageUrl: string | null;
|
|
6461
|
+
title: string;
|
|
6462
|
+
category: string;
|
|
6463
|
+
slug: string;
|
|
6464
|
+
description: string | null;
|
|
6465
|
+
outcome: "YES" | "NO" | null;
|
|
6466
|
+
betsCloseAt: string;
|
|
6467
|
+
resolvesAt: string;
|
|
6468
|
+
poolYes: string;
|
|
6469
|
+
poolNo: string;
|
|
6470
|
+
poolTotal: string;
|
|
6471
|
+
stakedYes: string;
|
|
6472
|
+
stakedNo: string;
|
|
6473
|
+
yesShareBp: number;
|
|
6474
|
+
participants: number;
|
|
6475
|
+
minStake: string | null;
|
|
6476
|
+
maxStake: string | null;
|
|
6477
|
+
feeBp: number;
|
|
6478
|
+
position: {
|
|
6479
|
+
side: "YES" | "NO";
|
|
6480
|
+
staked: string;
|
|
6481
|
+
projectedPayout: string;
|
|
6482
|
+
settled: boolean;
|
|
6483
|
+
payout: string | null;
|
|
6484
|
+
} | null;
|
|
6485
|
+
}>;
|
|
6486
|
+
type PredictionDetail = z.infer<typeof PredictionDetailSchema>;
|
|
6487
|
+
|
|
6488
|
+
declare namespace ListPredictionsCommand {
|
|
6489
|
+
const endpointDetails: EndpointDetails;
|
|
6490
|
+
const QuerySchema: z.ZodObject<{
|
|
6491
|
+
status: z.ZodOptional<z.ZodEnum<["active", "resolved", "mine"]>>;
|
|
6492
|
+
}, "strip", z.ZodTypeAny, {
|
|
6493
|
+
status?: "active" | "resolved" | "mine" | undefined;
|
|
6494
|
+
}, {
|
|
6495
|
+
status?: "active" | "resolved" | "mine" | undefined;
|
|
6496
|
+
}>;
|
|
6497
|
+
type Query = z.infer<typeof QuerySchema>;
|
|
6498
|
+
const ResponseSchema: z.ZodObject<{
|
|
6499
|
+
items: z.ZodArray<z.ZodObject<{
|
|
6500
|
+
id: z.ZodString;
|
|
6501
|
+
slug: z.ZodString;
|
|
6502
|
+
title: z.ZodString;
|
|
6503
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6504
|
+
category: z.ZodString;
|
|
6505
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6506
|
+
status: z.ZodEnum<["OPEN", "LOCKED", "RESOLVING", "RESOLVED", "VOID"]>;
|
|
6507
|
+
outcome: z.ZodNullable<z.ZodEnum<["YES", "NO"]>>;
|
|
6508
|
+
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
6509
|
+
betsCloseAt: z.ZodString;
|
|
6510
|
+
resolvesAt: z.ZodString;
|
|
6511
|
+
poolYes: z.ZodString;
|
|
6512
|
+
poolNo: z.ZodString;
|
|
6513
|
+
poolTotal: z.ZodString;
|
|
6514
|
+
stakedYes: z.ZodString;
|
|
6515
|
+
stakedNo: z.ZodString;
|
|
6516
|
+
yesShareBp: z.ZodNumber;
|
|
6517
|
+
participants: z.ZodNumber;
|
|
6518
|
+
minStake: z.ZodNullable<z.ZodString>;
|
|
6519
|
+
maxStake: z.ZodNullable<z.ZodString>;
|
|
6520
|
+
feeBp: z.ZodNumber;
|
|
6521
|
+
} & {
|
|
6522
|
+
position: z.ZodNullable<z.ZodObject<{
|
|
6523
|
+
side: z.ZodEnum<["YES", "NO"]>;
|
|
6524
|
+
staked: z.ZodString;
|
|
6525
|
+
projectedPayout: z.ZodString;
|
|
6526
|
+
settled: z.ZodBoolean;
|
|
6527
|
+
payout: z.ZodNullable<z.ZodString>;
|
|
6528
|
+
}, "strip", z.ZodTypeAny, {
|
|
6529
|
+
side: "YES" | "NO";
|
|
6530
|
+
staked: string;
|
|
6531
|
+
projectedPayout: string;
|
|
6532
|
+
settled: boolean;
|
|
6533
|
+
payout: string | null;
|
|
6534
|
+
}, {
|
|
6535
|
+
side: "YES" | "NO";
|
|
6536
|
+
staked: string;
|
|
6537
|
+
projectedPayout: string;
|
|
6538
|
+
settled: boolean;
|
|
6539
|
+
payout: string | null;
|
|
6540
|
+
}>>;
|
|
6541
|
+
}, "strip", z.ZodTypeAny, {
|
|
6542
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6543
|
+
id: string;
|
|
6544
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6545
|
+
imageUrl: string | null;
|
|
6546
|
+
title: string;
|
|
6547
|
+
category: string;
|
|
6548
|
+
slug: string;
|
|
6549
|
+
description: string | null;
|
|
6550
|
+
outcome: "YES" | "NO" | null;
|
|
6551
|
+
betsCloseAt: string;
|
|
6552
|
+
resolvesAt: string;
|
|
6553
|
+
poolYes: string;
|
|
6554
|
+
poolNo: string;
|
|
6555
|
+
poolTotal: string;
|
|
6556
|
+
stakedYes: string;
|
|
6557
|
+
stakedNo: string;
|
|
6558
|
+
yesShareBp: number;
|
|
6559
|
+
participants: number;
|
|
6560
|
+
minStake: string | null;
|
|
6561
|
+
maxStake: string | null;
|
|
6562
|
+
feeBp: number;
|
|
6563
|
+
position: {
|
|
6564
|
+
side: "YES" | "NO";
|
|
6565
|
+
staked: string;
|
|
6566
|
+
projectedPayout: string;
|
|
6567
|
+
settled: boolean;
|
|
6568
|
+
payout: string | null;
|
|
6569
|
+
} | null;
|
|
6570
|
+
}, {
|
|
6571
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6572
|
+
id: string;
|
|
6573
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6574
|
+
imageUrl: string | null;
|
|
6575
|
+
title: string;
|
|
6576
|
+
category: string;
|
|
6577
|
+
slug: string;
|
|
6578
|
+
description: string | null;
|
|
6579
|
+
outcome: "YES" | "NO" | null;
|
|
6580
|
+
betsCloseAt: string;
|
|
6581
|
+
resolvesAt: string;
|
|
6582
|
+
poolYes: string;
|
|
6583
|
+
poolNo: string;
|
|
6584
|
+
poolTotal: string;
|
|
6585
|
+
stakedYes: string;
|
|
6586
|
+
stakedNo: string;
|
|
6587
|
+
yesShareBp: number;
|
|
6588
|
+
participants: number;
|
|
6589
|
+
minStake: string | null;
|
|
6590
|
+
maxStake: string | null;
|
|
6591
|
+
feeBp: number;
|
|
6592
|
+
position: {
|
|
6593
|
+
side: "YES" | "NO";
|
|
6594
|
+
staked: string;
|
|
6595
|
+
projectedPayout: string;
|
|
6596
|
+
settled: boolean;
|
|
6597
|
+
payout: string | null;
|
|
6598
|
+
} | null;
|
|
6599
|
+
}>, "many">;
|
|
6600
|
+
}, "strip", z.ZodTypeAny, {
|
|
6601
|
+
items: {
|
|
6602
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6603
|
+
id: string;
|
|
6604
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6605
|
+
imageUrl: string | null;
|
|
6606
|
+
title: string;
|
|
6607
|
+
category: string;
|
|
6608
|
+
slug: string;
|
|
6609
|
+
description: string | null;
|
|
6610
|
+
outcome: "YES" | "NO" | null;
|
|
6611
|
+
betsCloseAt: string;
|
|
6612
|
+
resolvesAt: string;
|
|
6613
|
+
poolYes: string;
|
|
6614
|
+
poolNo: string;
|
|
6615
|
+
poolTotal: string;
|
|
6616
|
+
stakedYes: string;
|
|
6617
|
+
stakedNo: string;
|
|
6618
|
+
yesShareBp: number;
|
|
6619
|
+
participants: number;
|
|
6620
|
+
minStake: string | null;
|
|
6621
|
+
maxStake: string | null;
|
|
6622
|
+
feeBp: number;
|
|
6623
|
+
position: {
|
|
6624
|
+
side: "YES" | "NO";
|
|
6625
|
+
staked: string;
|
|
6626
|
+
projectedPayout: string;
|
|
6627
|
+
settled: boolean;
|
|
6628
|
+
payout: string | null;
|
|
6629
|
+
} | null;
|
|
6630
|
+
}[];
|
|
6631
|
+
}, {
|
|
6632
|
+
items: {
|
|
6633
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6634
|
+
id: string;
|
|
6635
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6636
|
+
imageUrl: string | null;
|
|
6637
|
+
title: string;
|
|
6638
|
+
category: string;
|
|
6639
|
+
slug: string;
|
|
6640
|
+
description: string | null;
|
|
6641
|
+
outcome: "YES" | "NO" | null;
|
|
6642
|
+
betsCloseAt: string;
|
|
6643
|
+
resolvesAt: string;
|
|
6644
|
+
poolYes: string;
|
|
6645
|
+
poolNo: string;
|
|
6646
|
+
poolTotal: string;
|
|
6647
|
+
stakedYes: string;
|
|
6648
|
+
stakedNo: string;
|
|
6649
|
+
yesShareBp: number;
|
|
6650
|
+
participants: number;
|
|
6651
|
+
minStake: string | null;
|
|
6652
|
+
maxStake: string | null;
|
|
6653
|
+
feeBp: number;
|
|
6654
|
+
position: {
|
|
6655
|
+
side: "YES" | "NO";
|
|
6656
|
+
staked: string;
|
|
6657
|
+
projectedPayout: string;
|
|
6658
|
+
settled: boolean;
|
|
6659
|
+
payout: string | null;
|
|
6660
|
+
} | null;
|
|
6661
|
+
}[];
|
|
6662
|
+
}>;
|
|
6663
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
6664
|
+
}
|
|
6665
|
+
declare namespace GetPredictionCommand {
|
|
6666
|
+
const endpointDetails: EndpointDetails;
|
|
6667
|
+
const ResponseSchema: z.ZodObject<{
|
|
6668
|
+
id: z.ZodString;
|
|
6669
|
+
slug: z.ZodString;
|
|
6670
|
+
title: z.ZodString;
|
|
6671
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6672
|
+
category: z.ZodString;
|
|
6673
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6674
|
+
status: z.ZodEnum<["OPEN", "LOCKED", "RESOLVING", "RESOLVED", "VOID"]>;
|
|
6675
|
+
outcome: z.ZodNullable<z.ZodEnum<["YES", "NO"]>>;
|
|
6676
|
+
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
6677
|
+
betsCloseAt: z.ZodString;
|
|
6678
|
+
resolvesAt: z.ZodString;
|
|
6679
|
+
poolYes: z.ZodString;
|
|
6680
|
+
poolNo: z.ZodString;
|
|
6681
|
+
poolTotal: z.ZodString;
|
|
6682
|
+
stakedYes: z.ZodString;
|
|
6683
|
+
stakedNo: z.ZodString;
|
|
6684
|
+
yesShareBp: z.ZodNumber;
|
|
6685
|
+
participants: z.ZodNumber;
|
|
6686
|
+
minStake: z.ZodNullable<z.ZodString>;
|
|
6687
|
+
maxStake: z.ZodNullable<z.ZodString>;
|
|
6688
|
+
feeBp: z.ZodNumber;
|
|
6689
|
+
} & {
|
|
6690
|
+
position: z.ZodNullable<z.ZodObject<{
|
|
6691
|
+
side: z.ZodEnum<["YES", "NO"]>;
|
|
6692
|
+
staked: z.ZodString;
|
|
6693
|
+
projectedPayout: z.ZodString;
|
|
6694
|
+
settled: z.ZodBoolean;
|
|
6695
|
+
payout: z.ZodNullable<z.ZodString>;
|
|
6696
|
+
}, "strip", z.ZodTypeAny, {
|
|
6697
|
+
side: "YES" | "NO";
|
|
6698
|
+
staked: string;
|
|
6699
|
+
projectedPayout: string;
|
|
6700
|
+
settled: boolean;
|
|
6701
|
+
payout: string | null;
|
|
6702
|
+
}, {
|
|
6703
|
+
side: "YES" | "NO";
|
|
6704
|
+
staked: string;
|
|
6705
|
+
projectedPayout: string;
|
|
6706
|
+
settled: boolean;
|
|
6707
|
+
payout: string | null;
|
|
6708
|
+
}>>;
|
|
6709
|
+
}, "strip", z.ZodTypeAny, {
|
|
6710
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6711
|
+
id: string;
|
|
6712
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6713
|
+
imageUrl: string | null;
|
|
6714
|
+
title: string;
|
|
6715
|
+
category: string;
|
|
6716
|
+
slug: string;
|
|
6717
|
+
description: string | null;
|
|
6718
|
+
outcome: "YES" | "NO" | null;
|
|
6719
|
+
betsCloseAt: string;
|
|
6720
|
+
resolvesAt: string;
|
|
6721
|
+
poolYes: string;
|
|
6722
|
+
poolNo: string;
|
|
6723
|
+
poolTotal: string;
|
|
6724
|
+
stakedYes: string;
|
|
6725
|
+
stakedNo: string;
|
|
6726
|
+
yesShareBp: number;
|
|
6727
|
+
participants: number;
|
|
6728
|
+
minStake: string | null;
|
|
6729
|
+
maxStake: string | null;
|
|
6730
|
+
feeBp: number;
|
|
6731
|
+
position: {
|
|
6732
|
+
side: "YES" | "NO";
|
|
6733
|
+
staked: string;
|
|
6734
|
+
projectedPayout: string;
|
|
6735
|
+
settled: boolean;
|
|
6736
|
+
payout: string | null;
|
|
6737
|
+
} | null;
|
|
6738
|
+
}, {
|
|
6739
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6740
|
+
id: string;
|
|
6741
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6742
|
+
imageUrl: string | null;
|
|
6743
|
+
title: string;
|
|
6744
|
+
category: string;
|
|
6745
|
+
slug: string;
|
|
6746
|
+
description: string | null;
|
|
6747
|
+
outcome: "YES" | "NO" | null;
|
|
6748
|
+
betsCloseAt: string;
|
|
6749
|
+
resolvesAt: string;
|
|
6750
|
+
poolYes: string;
|
|
6751
|
+
poolNo: string;
|
|
6752
|
+
poolTotal: string;
|
|
6753
|
+
stakedYes: string;
|
|
6754
|
+
stakedNo: string;
|
|
6755
|
+
yesShareBp: number;
|
|
6756
|
+
participants: number;
|
|
6757
|
+
minStake: string | null;
|
|
6758
|
+
maxStake: string | null;
|
|
6759
|
+
feeBp: number;
|
|
6760
|
+
position: {
|
|
6761
|
+
side: "YES" | "NO";
|
|
6762
|
+
staked: string;
|
|
6763
|
+
projectedPayout: string;
|
|
6764
|
+
settled: boolean;
|
|
6765
|
+
payout: string | null;
|
|
6766
|
+
} | null;
|
|
6767
|
+
}>;
|
|
6768
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
6769
|
+
}
|
|
6770
|
+
declare namespace PlacePredictionBetCommand {
|
|
6771
|
+
const endpointDetails: EndpointDetails;
|
|
6772
|
+
const BodySchema: z.ZodObject<{
|
|
6773
|
+
side: z.ZodEnum<["YES", "NO"]>;
|
|
6774
|
+
amount: z.ZodString;
|
|
6775
|
+
idempotencyKey: z.ZodString;
|
|
6776
|
+
}, "strip", z.ZodTypeAny, {
|
|
6777
|
+
amount: string;
|
|
6778
|
+
side: "YES" | "NO";
|
|
6779
|
+
idempotencyKey: string;
|
|
6780
|
+
}, {
|
|
6781
|
+
amount: string;
|
|
6782
|
+
side: "YES" | "NO";
|
|
6783
|
+
idempotencyKey: string;
|
|
6784
|
+
}>;
|
|
6785
|
+
type Body = z.infer<typeof BodySchema>;
|
|
6786
|
+
const ResponseSchema: z.ZodObject<{
|
|
6787
|
+
id: z.ZodString;
|
|
6788
|
+
slug: z.ZodString;
|
|
6789
|
+
title: z.ZodString;
|
|
6790
|
+
description: z.ZodNullable<z.ZodString>;
|
|
6791
|
+
category: z.ZodString;
|
|
6792
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
6793
|
+
status: z.ZodEnum<["OPEN", "LOCKED", "RESOLVING", "RESOLVED", "VOID"]>;
|
|
6794
|
+
outcome: z.ZodNullable<z.ZodEnum<["YES", "NO"]>>;
|
|
6795
|
+
asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
6796
|
+
betsCloseAt: z.ZodString;
|
|
6797
|
+
resolvesAt: z.ZodString;
|
|
6798
|
+
poolYes: z.ZodString;
|
|
6799
|
+
poolNo: z.ZodString;
|
|
6800
|
+
poolTotal: z.ZodString;
|
|
6801
|
+
stakedYes: z.ZodString;
|
|
6802
|
+
stakedNo: z.ZodString;
|
|
6803
|
+
yesShareBp: z.ZodNumber;
|
|
6804
|
+
participants: z.ZodNumber;
|
|
6805
|
+
minStake: z.ZodNullable<z.ZodString>;
|
|
6806
|
+
maxStake: z.ZodNullable<z.ZodString>;
|
|
6807
|
+
feeBp: z.ZodNumber;
|
|
6808
|
+
} & {
|
|
6809
|
+
position: z.ZodNullable<z.ZodObject<{
|
|
6810
|
+
side: z.ZodEnum<["YES", "NO"]>;
|
|
6811
|
+
staked: z.ZodString;
|
|
6812
|
+
projectedPayout: z.ZodString;
|
|
6813
|
+
settled: z.ZodBoolean;
|
|
6814
|
+
payout: z.ZodNullable<z.ZodString>;
|
|
6815
|
+
}, "strip", z.ZodTypeAny, {
|
|
6816
|
+
side: "YES" | "NO";
|
|
6817
|
+
staked: string;
|
|
6818
|
+
projectedPayout: string;
|
|
6819
|
+
settled: boolean;
|
|
6820
|
+
payout: string | null;
|
|
6821
|
+
}, {
|
|
6822
|
+
side: "YES" | "NO";
|
|
6823
|
+
staked: string;
|
|
6824
|
+
projectedPayout: string;
|
|
6825
|
+
settled: boolean;
|
|
6826
|
+
payout: string | null;
|
|
6827
|
+
}>>;
|
|
6828
|
+
}, "strip", z.ZodTypeAny, {
|
|
6829
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6830
|
+
id: string;
|
|
6831
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6832
|
+
imageUrl: string | null;
|
|
6833
|
+
title: string;
|
|
6834
|
+
category: string;
|
|
6835
|
+
slug: string;
|
|
6836
|
+
description: string | null;
|
|
6837
|
+
outcome: "YES" | "NO" | null;
|
|
6838
|
+
betsCloseAt: string;
|
|
6839
|
+
resolvesAt: string;
|
|
6840
|
+
poolYes: string;
|
|
6841
|
+
poolNo: string;
|
|
6842
|
+
poolTotal: string;
|
|
6843
|
+
stakedYes: string;
|
|
6844
|
+
stakedNo: string;
|
|
6845
|
+
yesShareBp: number;
|
|
6846
|
+
participants: number;
|
|
6847
|
+
minStake: string | null;
|
|
6848
|
+
maxStake: string | null;
|
|
6849
|
+
feeBp: number;
|
|
6850
|
+
position: {
|
|
6851
|
+
side: "YES" | "NO";
|
|
6852
|
+
staked: string;
|
|
6853
|
+
projectedPayout: string;
|
|
6854
|
+
settled: boolean;
|
|
6855
|
+
payout: string | null;
|
|
6856
|
+
} | null;
|
|
6857
|
+
}, {
|
|
6858
|
+
status: "OPEN" | "LOCKED" | "RESOLVING" | "RESOLVED" | "VOID";
|
|
6859
|
+
id: string;
|
|
6860
|
+
asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
6861
|
+
imageUrl: string | null;
|
|
6862
|
+
title: string;
|
|
6863
|
+
category: string;
|
|
6864
|
+
slug: string;
|
|
6865
|
+
description: string | null;
|
|
6866
|
+
outcome: "YES" | "NO" | null;
|
|
6867
|
+
betsCloseAt: string;
|
|
6868
|
+
resolvesAt: string;
|
|
6869
|
+
poolYes: string;
|
|
6870
|
+
poolNo: string;
|
|
6871
|
+
poolTotal: string;
|
|
6872
|
+
stakedYes: string;
|
|
6873
|
+
stakedNo: string;
|
|
6874
|
+
yesShareBp: number;
|
|
6875
|
+
participants: number;
|
|
6876
|
+
minStake: string | null;
|
|
6877
|
+
maxStake: string | null;
|
|
6878
|
+
feeBp: number;
|
|
6879
|
+
position: {
|
|
6880
|
+
side: "YES" | "NO";
|
|
6881
|
+
staked: string;
|
|
6882
|
+
projectedPayout: string;
|
|
6883
|
+
settled: boolean;
|
|
6884
|
+
payout: string | null;
|
|
6885
|
+
} | null;
|
|
6886
|
+
}>;
|
|
6887
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
6888
|
+
}
|
|
6889
|
+
|
|
6287
6890
|
declare const REST_API: {
|
|
6288
6891
|
readonly AUTH: {
|
|
6289
6892
|
readonly REGISTER: "/auth/register";
|
|
@@ -6384,6 +6987,11 @@ declare const REST_API: {
|
|
|
6384
6987
|
readonly REPLY: "/tickets/:id/messages";
|
|
6385
6988
|
readonly ATTACHMENT_UPLOAD_URL: "/tickets/attachments/upload-url";
|
|
6386
6989
|
};
|
|
6990
|
+
readonly PREDICTIONS: {
|
|
6991
|
+
readonly LIST: "/predictions";
|
|
6992
|
+
readonly GET: "/predictions/:slug";
|
|
6993
|
+
readonly BET: "/predictions/:slug/bet";
|
|
6994
|
+
};
|
|
6387
6995
|
readonly SUPPORT_TICKETS: {
|
|
6388
6996
|
readonly LIST: "/support/tickets";
|
|
6389
6997
|
readonly STREAM: "/support/tickets/stream";
|
|
@@ -6396,4 +7004,4 @@ declare const REST_API: {
|
|
|
6396
7004
|
declare const API_PREFIX = "/api";
|
|
6397
7005
|
declare const API_VERSION = "v1";
|
|
6398
7006
|
|
|
6399
|
-
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BONUS_ASSET, BrowsePartnersCommand, BuyPackageCommand, CONTENT_LOCALES, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTicketCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, type ContentLocale, ContentLocaleSchema, CreateTicketCommand, DEFAULT_CONTENT_LOCALE, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetSupportTicketCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, GetWheelCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListSupportTicketsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerBranch, type PartnerBranchRoot, PartnerBranchRootSchema, PartnerBranchSchema, type PartnerLevel, PartnerLevelSchema, type PartnerNode, PartnerNodeSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, ResolveTicketCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SupportReplyTicketCommand, type SupportTicketDetail, SupportTicketDetailSchema, type SupportTicketScope, SupportTicketScopeSchema, type SupportTicketSummary, SupportTicketSummarySchema, type SupportTicketUser, SupportTicketUserSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, TelegramLinkCodeCommand, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserRole, UserRoleSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, WHEEL_SLOT_COUNT, type WalletOverview, WalletOverviewSchema, type WheelAmountMode, WheelAmountModeSchema, type WheelPrize, WheelPrizeSchema, WheelSlotSchema, type WheelSpinKind, WheelSpinKindSchema, type WheelSpinResult, WheelSpinResultSchema, type WheelStatus, WheelStatusSchema, type WheelWin, WheelWinSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint, isContentLocale };
|
|
7007
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BONUS_ASSET, BrowsePartnersCommand, BuyPackageCommand, CONTENT_LOCALES, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTicketCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, type ContentLocale, ContentLocaleSchema, CreateTicketCommand, DEFAULT_CONTENT_LOCALE, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetPredictionCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetSupportTicketCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, GetWheelCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListPredictionsCommand, ListSupportTicketsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerBranch, type PartnerBranchRoot, PartnerBranchRootSchema, PartnerBranchSchema, type PartnerLevel, PartnerLevelSchema, type PartnerNode, PartnerNodeSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PlacePredictionBetCommand, PositiveMoneyStringSchema, type Prediction, type PredictionDetail, PredictionDetailSchema, type PredictionPosition, PredictionPositionSchema, PredictionSchema, type PredictionSide, PredictionSideSchema, type PredictionStatus, PredictionStatusSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, ResolveTicketCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SupportReplyTicketCommand, type SupportTicketDetail, SupportTicketDetailSchema, type SupportTicketScope, SupportTicketScopeSchema, type SupportTicketSummary, SupportTicketSummarySchema, type SupportTicketUser, SupportTicketUserSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, TelegramLinkCodeCommand, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserRole, UserRoleSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, WHEEL_SLOT_COUNT, type WalletOverview, WalletOverviewSchema, type WheelAmountMode, WheelAmountModeSchema, type WheelPrize, WheelPrizeSchema, WheelSlotSchema, type WheelSpinKind, WheelSpinKindSchema, type WheelSpinResult, WheelSpinResultSchema, type WheelStatus, WheelStatusSchema, type WheelWin, WheelWinSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint, isContentLocale };
|