@betorigami/games 1.4.6 → 1.4.8

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.d.ts DELETED
@@ -1,4309 +0,0 @@
1
- // Generated by dts-bundle-generator v9.5.1
2
-
3
- import { ContextProvider } from '@lit/context';
4
- import Big$1 from 'big.js';
5
- import { CSSResult, LitElement, PropertyValues, TemplateResult } from 'lit';
6
-
7
- declare enum Currency {
8
- USD = "USD",
9
- EUR = "EUR",
10
- ARS = "ARS",
11
- AUD = "AUD",
12
- BRL = "BRL",
13
- CAD = "CAD",
14
- CNY = "CNY",
15
- INR = "INR",
16
- JPY = "JPY",
17
- MXN = "MXN",
18
- NGN = "NGN",
19
- NOK = "NOK",
20
- NZD = "NZD",
21
- RUB = "RUB",
22
- TRY = "TRY",
23
- PHP = "PHP"
24
- }
25
- declare enum OrigamiGame {
26
- DICE = "DICE",
27
- MINES = "MINES",
28
- KENO = "KENO",
29
- LIMBO = "LIMBO"
30
- }
31
- export type EventTypeRequiresDetail<T> = T extends keyof GlobalEventHandlersEventMap ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>> ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>> ? never : Partial<GlobalEventHandlersEventMap[T]["detail"]> extends GlobalEventHandlersEventMap[T]["detail"] ? never : T : never : never;
32
- export type EventTypeDoesNotRequireDetail<T> = T extends keyof GlobalEventHandlersEventMap ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>> ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>> ? T : Partial<GlobalEventHandlersEventMap[T]["detail"]> extends GlobalEventHandlersEventMap[T]["detail"] ? T : never : T : T;
33
- export type EventTypesWithRequiredDetail = {
34
- [EventType in keyof GlobalEventHandlersEventMap as EventTypeRequiresDetail<EventType>]: true;
35
- };
36
- export type EventTypesWithoutRequiredDetail = {
37
- [EventType in keyof GlobalEventHandlersEventMap as EventTypeDoesNotRequireDetail<EventType>]: true;
38
- };
39
- export type WithRequired<T, K extends keyof T> = T & {
40
- [P in K]-?: T[P];
41
- };
42
- export type SlEventInit<T> = T extends keyof GlobalEventHandlersEventMap ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>> ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>> ? CustomEventInit<GlobalEventHandlersEventMap[T]["detail"]> : Partial<GlobalEventHandlersEventMap[T]["detail"]> extends GlobalEventHandlersEventMap[T]["detail"] ? CustomEventInit<GlobalEventHandlersEventMap[T]["detail"]> : WithRequired<CustomEventInit<GlobalEventHandlersEventMap[T]["detail"]>, "detail"> : CustomEventInit : CustomEventInit;
43
- export type GetCustomEventType<T> = T extends keyof GlobalEventHandlersEventMap ? GlobalEventHandlersEventMap[T] extends CustomEvent<unknown> ? GlobalEventHandlersEventMap[T] : CustomEvent<unknown> : CustomEvent<unknown>;
44
- declare class OrigamiElement extends LitElement {
45
- static componentStyles: CSSResult[];
46
- /** Emits a custom event with more convenient defaults. */
47
- emit<T extends string & keyof EventTypesWithoutRequiredDetail>(name: EventTypeDoesNotRequireDetail<T>, options?: SlEventInit<T> | undefined): GetCustomEventType<T>;
48
- emit<T extends string & keyof EventTypesWithRequiredDetail>(name: EventTypeRequiresDetail<T>, options: SlEventInit<T>): GetCustomEventType<T>;
49
- }
50
- export type Language = "ar" | "de" | "en" | "es" | "fi" | "fr" | "hi" | "id" | "ja" | "ko" | "pl" | "pt" | "ru" | "tr" | "vi" | "zh";
51
- export type TranslationKey = keyof typeof enTranslations | `${keyof typeof enTranslations}.${string}` | `${keyof typeof enTranslations}.${string}.${string}`;
52
- export declare const translations: {
53
- readonly ar: {
54
- accessibility: {
55
- sliderValue: string;
56
- };
57
- alerts: {
58
- autobetStarted: string;
59
- autobetStopped: string;
60
- betAmountAboveMaxBet: string;
61
- betAmountBelowMinBet: string;
62
- betLimitReached: string;
63
- errorProcessingBet: string;
64
- failedToLoadBetData: string;
65
- gameError: string;
66
- insufficientBalance: string;
67
- notEnoughBalance: string;
68
- };
69
- autobet: {
70
- configureAutobet: string;
71
- games: string;
72
- games10: string;
73
- games100: string;
74
- games25: string;
75
- games5: string;
76
- games50: string;
77
- increase: string;
78
- infinite: string;
79
- onLoss: string;
80
- onWin: string;
81
- reset: string;
82
- startAutobet: string;
83
- stopAutobet: string;
84
- stopOnLoss: string;
85
- stopOnProfit: string;
86
- };
87
- common: {
88
- auto: string;
89
- back: string;
90
- balance: string;
91
- bet: string;
92
- betAmount: string;
93
- cancel: string;
94
- cashOut: string;
95
- classic: string;
96
- confirm: string;
97
- copied: string;
98
- deposit: string;
99
- disableHotkeys: string;
100
- disableMaxBet: string;
101
- enableHotkeys: string;
102
- enableMaxBet: string;
103
- footerNavigation: string;
104
- gameInfo: string;
105
- high: string;
106
- history: string;
107
- hotkeys: string;
108
- id: string;
109
- instantBet: string;
110
- loading: string;
111
- loadMore: string;
112
- lobby: string;
113
- low: string;
114
- manual: string;
115
- max: string;
116
- medium: string;
117
- multiplier: string;
118
- payout: string;
119
- placeBet: string;
120
- profit: string;
121
- profitOnWin: string;
122
- provablyFair: string;
123
- risk: string;
124
- saveChanges: string;
125
- siteInformation: string;
126
- space: string;
127
- targetMultiplier: string;
128
- thisFieldIsRequired: string;
129
- timestamp: string;
130
- toggleHotkeys: string;
131
- viewFairnessInformation: string;
132
- viewHistory: string;
133
- volume: string;
134
- winChance: string;
135
- };
136
- errors: {
137
- dice: {
138
- multiplierRange: string;
139
- winChanceRange: string;
140
- };
141
- };
142
- fairness: {
143
- activeClientSeed: string;
144
- enterClientSeed: string;
145
- enterProof: string;
146
- enterPublicKey: string;
147
- enterRandomness: string;
148
- enterRequest: string;
149
- info: {
150
- p1: string;
151
- p2: string;
152
- p3: string;
153
- p4: string;
154
- step1Desc: string;
155
- step1Title: string;
156
- step2Title: string;
157
- step3Desc: string;
158
- step3Title: string;
159
- step4Title: string;
160
- step5Title: string;
161
- };
162
- invalidGame: string;
163
- learnMore: string;
164
- newClientSeed: string;
165
- noBettingHistory: string;
166
- outcomeCalculationInfo: string;
167
- outcomeNotVerified: string;
168
- outcomeVerified: string;
169
- proof: string;
170
- publicKey: string;
171
- randomness: string;
172
- request: string;
173
- saveClientSeed: string;
174
- verifyOutcome: string;
175
- };
176
- gameInfo: {
177
- dice: {
178
- how1: string;
179
- how2: string;
180
- how3: string;
181
- how4: string;
182
- how5: string;
183
- how6: string;
184
- overview: string;
185
- provablyFair: string;
186
- strategyTip: string;
187
- };
188
- keno: {
189
- how1: string;
190
- how2: string;
191
- how3: string;
192
- how4: string;
193
- how5: string;
194
- overview: string;
195
- provablyFair: string;
196
- strategyTip: string;
197
- };
198
- limbo: {
199
- how1: string;
200
- how2: string;
201
- how3: string;
202
- how4: string;
203
- how5: string;
204
- overview: string;
205
- provablyFair: string;
206
- strategyTip: string;
207
- };
208
- mines: {
209
- how1: string;
210
- how2: string;
211
- how3: string;
212
- how4: string;
213
- how5: string;
214
- how6: string;
215
- overview: string;
216
- provablyFair: string;
217
- strategyTip: string;
218
- };
219
- rtpTitle: string;
220
- rtpContent: string;
221
- strategyTitle: string;
222
- tutorial: string;
223
- };
224
- games: {
225
- dice: {
226
- rollOver: string;
227
- rollUnder: string;
228
- };
229
- keno: {
230
- autoPick: string;
231
- clearTable: string;
232
- kenoGameGrid: string;
233
- kenoNumber: string;
234
- selectAtLeastOneTile: string;
235
- selectTileToAutobet: string;
236
- };
237
- limbo: {
238
- multiplierError: string;
239
- targetMultiplier: string;
240
- winChanceError: string;
241
- };
242
- mines: {
243
- cashout: string;
244
- gem: string;
245
- gems: string;
246
- mine: string;
247
- mines: string;
248
- nextGem: string;
249
- selectRandomTile: string;
250
- selectTileToAutobet: string;
251
- tile: string;
252
- unrevealed: string;
253
- };
254
- };
255
- hotkeys: {
256
- doubleBet: string;
257
- halveBet: string;
258
- higherTarget: string;
259
- info: string;
260
- lowerTarget: string;
261
- makeBet: string;
262
- toggleWinCondition: string;
263
- zeroBet: string;
264
- };
265
- modals: {
266
- betResult: string;
267
- fairnessAndHistory: string;
268
- gameArea: string;
269
- gameControls: string;
270
- gameInfo: string;
271
- };
272
- };
273
- readonly de: {
274
- accessibility: {
275
- sliderValue: string;
276
- };
277
- alerts: {
278
- autobetStarted: string;
279
- autobetStopped: string;
280
- betAmountAboveMaxBet: string;
281
- betAmountBelowMinBet: string;
282
- betLimitReached: string;
283
- errorProcessingBet: string;
284
- failedToLoadBetData: string;
285
- gameError: string;
286
- insufficientBalance: string;
287
- notEnoughBalance: string;
288
- };
289
- autobet: {
290
- configureAutobet: string;
291
- games: string;
292
- games10: string;
293
- games100: string;
294
- games25: string;
295
- games5: string;
296
- games50: string;
297
- increase: string;
298
- infinite: string;
299
- onLoss: string;
300
- onWin: string;
301
- reset: string;
302
- startAutobet: string;
303
- stopAutobet: string;
304
- stopOnLoss: string;
305
- stopOnProfit: string;
306
- };
307
- common: {
308
- auto: string;
309
- back: string;
310
- balance: string;
311
- bet: string;
312
- betAmount: string;
313
- cancel: string;
314
- cashOut: string;
315
- classic: string;
316
- confirm: string;
317
- copied: string;
318
- deposit: string;
319
- disableHotkeys: string;
320
- disableMaxBet: string;
321
- enableHotkeys: string;
322
- enableMaxBet: string;
323
- footerNavigation: string;
324
- gameInfo: string;
325
- high: string;
326
- history: string;
327
- hotkeys: string;
328
- id: string;
329
- instantBet: string;
330
- loading: string;
331
- loadMore: string;
332
- lobby: string;
333
- low: string;
334
- manual: string;
335
- max: string;
336
- medium: string;
337
- multiplier: string;
338
- payout: string;
339
- placeBet: string;
340
- profit: string;
341
- profitOnWin: string;
342
- provablyFair: string;
343
- risk: string;
344
- saveChanges: string;
345
- siteInformation: string;
346
- space: string;
347
- targetMultiplier: string;
348
- thisFieldIsRequired: string;
349
- timestamp: string;
350
- toggleHotkeys: string;
351
- viewFairnessInformation: string;
352
- viewHistory: string;
353
- volume: string;
354
- winChance: string;
355
- };
356
- errors: {
357
- dice: {
358
- multiplierRange: string;
359
- winChanceRange: string;
360
- };
361
- };
362
- fairness: {
363
- activeClientSeed: string;
364
- enterClientSeed: string;
365
- enterProof: string;
366
- enterPublicKey: string;
367
- enterRandomness: string;
368
- enterRequest: string;
369
- info: {
370
- p1: string;
371
- p2: string;
372
- p3: string;
373
- p4: string;
374
- step1Desc: string;
375
- step1Title: string;
376
- step2Title: string;
377
- step3Desc: string;
378
- step3Title: string;
379
- step4Title: string;
380
- step5Title: string;
381
- };
382
- invalidGame: string;
383
- learnMore: string;
384
- newClientSeed: string;
385
- noBettingHistory: string;
386
- outcomeCalculationInfo: string;
387
- outcomeNotVerified: string;
388
- outcomeVerified: string;
389
- proof: string;
390
- publicKey: string;
391
- randomness: string;
392
- request: string;
393
- saveClientSeed: string;
394
- verifyOutcome: string;
395
- };
396
- gameInfo: {
397
- dice: {
398
- how1: string;
399
- how2: string;
400
- how3: string;
401
- how4: string;
402
- how5: string;
403
- how6: string;
404
- overview: string;
405
- provablyFair: string;
406
- strategyTip: string;
407
- };
408
- keno: {
409
- how1: string;
410
- how2: string;
411
- how3: string;
412
- how4: string;
413
- how5: string;
414
- overview: string;
415
- provablyFair: string;
416
- strategyTip: string;
417
- };
418
- limbo: {
419
- how1: string;
420
- how2: string;
421
- how3: string;
422
- how4: string;
423
- how5: string;
424
- overview: string;
425
- provablyFair: string;
426
- strategyTip: string;
427
- };
428
- mines: {
429
- how1: string;
430
- how2: string;
431
- how3: string;
432
- how4: string;
433
- how5: string;
434
- how6: string;
435
- overview: string;
436
- provablyFair: string;
437
- strategyTip: string;
438
- };
439
- rtpTitle: string;
440
- rtpContent: string;
441
- strategyTitle: string;
442
- tutorial: string;
443
- };
444
- games: {
445
- dice: {
446
- rollOver: string;
447
- rollUnder: string;
448
- };
449
- keno: {
450
- autoPick: string;
451
- clearTable: string;
452
- kenoGameGrid: string;
453
- kenoNumber: string;
454
- selectAtLeastOneTile: string;
455
- selectTileToAutobet: string;
456
- };
457
- limbo: {
458
- multiplierError: string;
459
- targetMultiplier: string;
460
- winChanceError: string;
461
- };
462
- mines: {
463
- cashout: string;
464
- gem: string;
465
- gems: string;
466
- mine: string;
467
- mines: string;
468
- nextGem: string;
469
- selectRandomTile: string;
470
- selectTileToAutobet: string;
471
- tile: string;
472
- unrevealed: string;
473
- };
474
- };
475
- hotkeys: {
476
- doubleBet: string;
477
- halveBet: string;
478
- higherTarget: string;
479
- info: string;
480
- lowerTarget: string;
481
- makeBet: string;
482
- toggleWinCondition: string;
483
- zeroBet: string;
484
- };
485
- modals: {
486
- betResult: string;
487
- fairnessAndHistory: string;
488
- gameArea: string;
489
- gameControls: string;
490
- gameInfo: string;
491
- };
492
- };
493
- readonly en: {
494
- accessibility: {
495
- sliderValue: string;
496
- };
497
- alerts: {
498
- autobetStarted: string;
499
- autobetStopped: string;
500
- betAmountAboveMaxBet: string;
501
- betAmountBelowMinBet: string;
502
- betLimitReached: string;
503
- errorProcessingBet: string;
504
- failedToLoadBetData: string;
505
- gameError: string;
506
- insufficientBalance: string;
507
- notEnoughBalance: string;
508
- };
509
- autobet: {
510
- configureAutobet: string;
511
- games: string;
512
- games10: string;
513
- games100: string;
514
- games25: string;
515
- games5: string;
516
- games50: string;
517
- increase: string;
518
- infinite: string;
519
- onLoss: string;
520
- onWin: string;
521
- reset: string;
522
- startAutobet: string;
523
- stopAutobet: string;
524
- stopOnLoss: string;
525
- stopOnProfit: string;
526
- };
527
- common: {
528
- auto: string;
529
- back: string;
530
- balance: string;
531
- bet: string;
532
- betAmount: string;
533
- cancel: string;
534
- cashOut: string;
535
- classic: string;
536
- confirm: string;
537
- copied: string;
538
- deposit: string;
539
- disableHotkeys: string;
540
- disableMaxBet: string;
541
- enableHotkeys: string;
542
- enableMaxBet: string;
543
- footerNavigation: string;
544
- gameInfo: string;
545
- high: string;
546
- history: string;
547
- hotkeys: string;
548
- id: string;
549
- instantBet: string;
550
- loading: string;
551
- loadMore: string;
552
- lobby: string;
553
- low: string;
554
- manual: string;
555
- max: string;
556
- medium: string;
557
- multiplier: string;
558
- payout: string;
559
- placeBet: string;
560
- profit: string;
561
- profitOnWin: string;
562
- provablyFair: string;
563
- risk: string;
564
- saveChanges: string;
565
- siteInformation: string;
566
- space: string;
567
- targetMultiplier: string;
568
- thisFieldIsRequired: string;
569
- timestamp: string;
570
- toggleHotkeys: string;
571
- viewFairnessInformation: string;
572
- viewHistory: string;
573
- volume: string;
574
- winChance: string;
575
- };
576
- errors: {
577
- dice: {
578
- multiplierRange: string;
579
- winChanceRange: string;
580
- };
581
- };
582
- fairness: {
583
- activeClientSeed: string;
584
- enterClientSeed: string;
585
- enterProof: string;
586
- enterPublicKey: string;
587
- enterRandomness: string;
588
- enterRequest: string;
589
- info: {
590
- p1: string;
591
- p2: string;
592
- p3: string;
593
- p4: string;
594
- step1Desc: string;
595
- step1Title: string;
596
- step2Title: string;
597
- step3Desc: string;
598
- step3Title: string;
599
- step4Title: string;
600
- step5Title: string;
601
- };
602
- invalidGame: string;
603
- learnMore: string;
604
- newClientSeed: string;
605
- noBettingHistory: string;
606
- outcomeCalculationInfo: string;
607
- outcomeNotVerified: string;
608
- outcomeVerified: string;
609
- proof: string;
610
- publicKey: string;
611
- randomness: string;
612
- request: string;
613
- saveClientSeed: string;
614
- verifyOutcome: string;
615
- };
616
- gameInfo: {
617
- dice: {
618
- how1: string;
619
- how2: string;
620
- how3: string;
621
- how4: string;
622
- how5: string;
623
- how6: string;
624
- overview: string;
625
- provablyFair: string;
626
- strategyTip: string;
627
- };
628
- keno: {
629
- how1: string;
630
- how2: string;
631
- how3: string;
632
- how4: string;
633
- how5: string;
634
- overview: string;
635
- provablyFair: string;
636
- strategyTip: string;
637
- };
638
- limbo: {
639
- how1: string;
640
- how2: string;
641
- how3: string;
642
- how4: string;
643
- how5: string;
644
- overview: string;
645
- provablyFair: string;
646
- strategyTip: string;
647
- };
648
- mines: {
649
- how1: string;
650
- how2: string;
651
- how3: string;
652
- how4: string;
653
- how5: string;
654
- how6: string;
655
- overview: string;
656
- provablyFair: string;
657
- strategyTip: string;
658
- };
659
- rtpTitle: string;
660
- rtpContent: string;
661
- strategyTitle: string;
662
- tutorial: string;
663
- };
664
- games: {
665
- dice: {
666
- rollOver: string;
667
- rollUnder: string;
668
- };
669
- keno: {
670
- autoPick: string;
671
- clearTable: string;
672
- kenoGameGrid: string;
673
- kenoNumber: string;
674
- selectAtLeastOneTile: string;
675
- selectTileToAutobet: string;
676
- };
677
- limbo: {
678
- multiplierError: string;
679
- targetMultiplier: string;
680
- winChanceError: string;
681
- };
682
- mines: {
683
- cashout: string;
684
- gem: string;
685
- gems: string;
686
- mine: string;
687
- mines: string;
688
- nextGem: string;
689
- selectRandomTile: string;
690
- selectTileToAutobet: string;
691
- tile: string;
692
- unrevealed: string;
693
- };
694
- };
695
- hotkeys: {
696
- doubleBet: string;
697
- halveBet: string;
698
- higherTarget: string;
699
- info: string;
700
- lowerTarget: string;
701
- makeBet: string;
702
- toggleWinCondition: string;
703
- zeroBet: string;
704
- };
705
- modals: {
706
- betResult: string;
707
- fairnessAndHistory: string;
708
- gameArea: string;
709
- gameControls: string;
710
- gameInfo: string;
711
- };
712
- };
713
- readonly es: {
714
- accessibility: {
715
- sliderValue: string;
716
- };
717
- alerts: {
718
- autobetStarted: string;
719
- autobetStopped: string;
720
- betAmountAboveMaxBet: string;
721
- betAmountBelowMinBet: string;
722
- betLimitReached: string;
723
- errorProcessingBet: string;
724
- failedToLoadBetData: string;
725
- gameError: string;
726
- insufficientBalance: string;
727
- notEnoughBalance: string;
728
- };
729
- autobet: {
730
- configureAutobet: string;
731
- games: string;
732
- games10: string;
733
- games100: string;
734
- games25: string;
735
- games5: string;
736
- games50: string;
737
- increase: string;
738
- infinite: string;
739
- onLoss: string;
740
- onWin: string;
741
- reset: string;
742
- startAutobet: string;
743
- stopAutobet: string;
744
- stopOnLoss: string;
745
- stopOnProfit: string;
746
- };
747
- common: {
748
- auto: string;
749
- back: string;
750
- balance: string;
751
- bet: string;
752
- betAmount: string;
753
- cancel: string;
754
- cashOut: string;
755
- classic: string;
756
- confirm: string;
757
- copied: string;
758
- deposit: string;
759
- disableHotkeys: string;
760
- disableMaxBet: string;
761
- enableHotkeys: string;
762
- enableMaxBet: string;
763
- footerNavigation: string;
764
- gameInfo: string;
765
- high: string;
766
- history: string;
767
- hotkeys: string;
768
- id: string;
769
- instantBet: string;
770
- loading: string;
771
- loadMore: string;
772
- lobby: string;
773
- low: string;
774
- manual: string;
775
- max: string;
776
- medium: string;
777
- multiplier: string;
778
- payout: string;
779
- placeBet: string;
780
- profit: string;
781
- profitOnWin: string;
782
- provablyFair: string;
783
- risk: string;
784
- saveChanges: string;
785
- siteInformation: string;
786
- space: string;
787
- targetMultiplier: string;
788
- thisFieldIsRequired: string;
789
- timestamp: string;
790
- toggleHotkeys: string;
791
- viewFairnessInformation: string;
792
- viewHistory: string;
793
- volume: string;
794
- winChance: string;
795
- };
796
- errors: {
797
- dice: {
798
- multiplierRange: string;
799
- winChanceRange: string;
800
- };
801
- };
802
- fairness: {
803
- activeClientSeed: string;
804
- enterClientSeed: string;
805
- enterProof: string;
806
- enterPublicKey: string;
807
- enterRandomness: string;
808
- enterRequest: string;
809
- info: {
810
- p1: string;
811
- p2: string;
812
- p3: string;
813
- p4: string;
814
- step1Desc: string;
815
- step1Title: string;
816
- step2Title: string;
817
- step3Desc: string;
818
- step3Title: string;
819
- step4Title: string;
820
- step5Title: string;
821
- };
822
- invalidGame: string;
823
- learnMore: string;
824
- newClientSeed: string;
825
- noBettingHistory: string;
826
- outcomeCalculationInfo: string;
827
- outcomeNotVerified: string;
828
- outcomeVerified: string;
829
- proof: string;
830
- publicKey: string;
831
- randomness: string;
832
- request: string;
833
- saveClientSeed: string;
834
- verifyOutcome: string;
835
- };
836
- gameInfo: {
837
- dice: {
838
- how1: string;
839
- how2: string;
840
- how3: string;
841
- how4: string;
842
- how5: string;
843
- how6: string;
844
- overview: string;
845
- provablyFair: string;
846
- strategyTip: string;
847
- };
848
- keno: {
849
- how1: string;
850
- how2: string;
851
- how3: string;
852
- how4: string;
853
- how5: string;
854
- overview: string;
855
- provablyFair: string;
856
- strategyTip: string;
857
- };
858
- limbo: {
859
- how1: string;
860
- how2: string;
861
- how3: string;
862
- how4: string;
863
- how5: string;
864
- overview: string;
865
- provablyFair: string;
866
- strategyTip: string;
867
- };
868
- mines: {
869
- how1: string;
870
- how2: string;
871
- how3: string;
872
- how4: string;
873
- how5: string;
874
- how6: string;
875
- overview: string;
876
- provablyFair: string;
877
- strategyTip: string;
878
- };
879
- rtpTitle: string;
880
- rtpContent: string;
881
- strategyTitle: string;
882
- tutorial: string;
883
- };
884
- games: {
885
- dice: {
886
- rollOver: string;
887
- rollUnder: string;
888
- };
889
- keno: {
890
- autoPick: string;
891
- clearTable: string;
892
- kenoGameGrid: string;
893
- kenoNumber: string;
894
- selectAtLeastOneTile: string;
895
- selectTileToAutobet: string;
896
- };
897
- limbo: {
898
- multiplierError: string;
899
- targetMultiplier: string;
900
- winChanceError: string;
901
- };
902
- mines: {
903
- cashout: string;
904
- gem: string;
905
- gems: string;
906
- mine: string;
907
- mines: string;
908
- nextGem: string;
909
- selectRandomTile: string;
910
- selectTileToAutobet: string;
911
- tile: string;
912
- unrevealed: string;
913
- };
914
- };
915
- hotkeys: {
916
- doubleBet: string;
917
- halveBet: string;
918
- higherTarget: string;
919
- info: string;
920
- lowerTarget: string;
921
- makeBet: string;
922
- toggleWinCondition: string;
923
- zeroBet: string;
924
- };
925
- modals: {
926
- betResult: string;
927
- fairnessAndHistory: string;
928
- gameArea: string;
929
- gameControls: string;
930
- gameInfo: string;
931
- };
932
- };
933
- readonly fi: {
934
- accessibility: {
935
- sliderValue: string;
936
- };
937
- alerts: {
938
- autobetStarted: string;
939
- autobetStopped: string;
940
- betAmountAboveMaxBet: string;
941
- betAmountBelowMinBet: string;
942
- betLimitReached: string;
943
- errorProcessingBet: string;
944
- failedToLoadBetData: string;
945
- gameError: string;
946
- insufficientBalance: string;
947
- notEnoughBalance: string;
948
- };
949
- autobet: {
950
- configureAutobet: string;
951
- games: string;
952
- games10: string;
953
- games100: string;
954
- games25: string;
955
- games5: string;
956
- games50: string;
957
- increase: string;
958
- infinite: string;
959
- onLoss: string;
960
- onWin: string;
961
- reset: string;
962
- startAutobet: string;
963
- stopAutobet: string;
964
- stopOnLoss: string;
965
- stopOnProfit: string;
966
- };
967
- common: {
968
- auto: string;
969
- back: string;
970
- balance: string;
971
- bet: string;
972
- betAmount: string;
973
- cancel: string;
974
- cashOut: string;
975
- classic: string;
976
- confirm: string;
977
- copied: string;
978
- deposit: string;
979
- disableHotkeys: string;
980
- disableMaxBet: string;
981
- enableHotkeys: string;
982
- enableMaxBet: string;
983
- footerNavigation: string;
984
- gameInfo: string;
985
- high: string;
986
- history: string;
987
- hotkeys: string;
988
- id: string;
989
- instantBet: string;
990
- loading: string;
991
- loadMore: string;
992
- lobby: string;
993
- low: string;
994
- manual: string;
995
- max: string;
996
- medium: string;
997
- multiplier: string;
998
- payout: string;
999
- placeBet: string;
1000
- profit: string;
1001
- profitOnWin: string;
1002
- provablyFair: string;
1003
- risk: string;
1004
- saveChanges: string;
1005
- siteInformation: string;
1006
- space: string;
1007
- targetMultiplier: string;
1008
- thisFieldIsRequired: string;
1009
- timestamp: string;
1010
- toggleHotkeys: string;
1011
- viewFairnessInformation: string;
1012
- viewHistory: string;
1013
- volume: string;
1014
- winChance: string;
1015
- };
1016
- errors: {
1017
- dice: {
1018
- multiplierRange: string;
1019
- winChanceRange: string;
1020
- };
1021
- };
1022
- fairness: {
1023
- activeClientSeed: string;
1024
- enterClientSeed: string;
1025
- enterProof: string;
1026
- enterPublicKey: string;
1027
- enterRandomness: string;
1028
- enterRequest: string;
1029
- info: {
1030
- p1: string;
1031
- p2: string;
1032
- p3: string;
1033
- p4: string;
1034
- step1Desc: string;
1035
- step1Title: string;
1036
- step2Title: string;
1037
- step3Desc: string;
1038
- step3Title: string;
1039
- step4Title: string;
1040
- step5Title: string;
1041
- };
1042
- invalidGame: string;
1043
- learnMore: string;
1044
- newClientSeed: string;
1045
- noBettingHistory: string;
1046
- outcomeCalculationInfo: string;
1047
- outcomeNotVerified: string;
1048
- outcomeVerified: string;
1049
- proof: string;
1050
- publicKey: string;
1051
- randomness: string;
1052
- request: string;
1053
- saveClientSeed: string;
1054
- verifyOutcome: string;
1055
- };
1056
- gameInfo: {
1057
- dice: {
1058
- how1: string;
1059
- how2: string;
1060
- how3: string;
1061
- how4: string;
1062
- how5: string;
1063
- how6: string;
1064
- overview: string;
1065
- provablyFair: string;
1066
- strategyTip: string;
1067
- };
1068
- keno: {
1069
- how1: string;
1070
- how2: string;
1071
- how3: string;
1072
- how4: string;
1073
- how5: string;
1074
- overview: string;
1075
- provablyFair: string;
1076
- strategyTip: string;
1077
- };
1078
- limbo: {
1079
- how1: string;
1080
- how2: string;
1081
- how3: string;
1082
- how4: string;
1083
- how5: string;
1084
- overview: string;
1085
- provablyFair: string;
1086
- strategyTip: string;
1087
- };
1088
- mines: {
1089
- how1: string;
1090
- how2: string;
1091
- how3: string;
1092
- how4: string;
1093
- how5: string;
1094
- how6: string;
1095
- overview: string;
1096
- provablyFair: string;
1097
- strategyTip: string;
1098
- };
1099
- rtpTitle: string;
1100
- rtpContent: string;
1101
- strategyTitle: string;
1102
- tutorial: string;
1103
- };
1104
- games: {
1105
- dice: {
1106
- rollOver: string;
1107
- rollUnder: string;
1108
- };
1109
- keno: {
1110
- autoPick: string;
1111
- clearTable: string;
1112
- kenoGameGrid: string;
1113
- kenoNumber: string;
1114
- selectAtLeastOneTile: string;
1115
- selectTileToAutobet: string;
1116
- };
1117
- limbo: {
1118
- multiplierError: string;
1119
- targetMultiplier: string;
1120
- winChanceError: string;
1121
- };
1122
- mines: {
1123
- cashout: string;
1124
- gem: string;
1125
- gems: string;
1126
- mine: string;
1127
- mines: string;
1128
- nextGem: string;
1129
- selectRandomTile: string;
1130
- selectTileToAutobet: string;
1131
- tile: string;
1132
- unrevealed: string;
1133
- };
1134
- };
1135
- hotkeys: {
1136
- doubleBet: string;
1137
- halveBet: string;
1138
- higherTarget: string;
1139
- info: string;
1140
- lowerTarget: string;
1141
- makeBet: string;
1142
- toggleWinCondition: string;
1143
- zeroBet: string;
1144
- };
1145
- modals: {
1146
- betResult: string;
1147
- fairnessAndHistory: string;
1148
- gameArea: string;
1149
- gameControls: string;
1150
- gameInfo: string;
1151
- };
1152
- };
1153
- readonly fr: {
1154
- accessibility: {
1155
- sliderValue: string;
1156
- };
1157
- alerts: {
1158
- autobetStarted: string;
1159
- autobetStopped: string;
1160
- betAmountAboveMaxBet: string;
1161
- betAmountBelowMinBet: string;
1162
- betLimitReached: string;
1163
- errorProcessingBet: string;
1164
- failedToLoadBetData: string;
1165
- gameError: string;
1166
- insufficientBalance: string;
1167
- notEnoughBalance: string;
1168
- };
1169
- autobet: {
1170
- configureAutobet: string;
1171
- games: string;
1172
- games10: string;
1173
- games100: string;
1174
- games25: string;
1175
- games5: string;
1176
- games50: string;
1177
- increase: string;
1178
- infinite: string;
1179
- onLoss: string;
1180
- onWin: string;
1181
- reset: string;
1182
- startAutobet: string;
1183
- stopAutobet: string;
1184
- stopOnLoss: string;
1185
- stopOnProfit: string;
1186
- };
1187
- common: {
1188
- auto: string;
1189
- back: string;
1190
- balance: string;
1191
- bet: string;
1192
- betAmount: string;
1193
- cancel: string;
1194
- cashOut: string;
1195
- classic: string;
1196
- confirm: string;
1197
- copied: string;
1198
- deposit: string;
1199
- disableHotkeys: string;
1200
- disableMaxBet: string;
1201
- enableHotkeys: string;
1202
- enableMaxBet: string;
1203
- footerNavigation: string;
1204
- gameInfo: string;
1205
- high: string;
1206
- history: string;
1207
- hotkeys: string;
1208
- id: string;
1209
- instantBet: string;
1210
- loading: string;
1211
- loadMore: string;
1212
- lobby: string;
1213
- low: string;
1214
- manual: string;
1215
- max: string;
1216
- medium: string;
1217
- multiplier: string;
1218
- payout: string;
1219
- placeBet: string;
1220
- profit: string;
1221
- profitOnWin: string;
1222
- provablyFair: string;
1223
- risk: string;
1224
- saveChanges: string;
1225
- siteInformation: string;
1226
- space: string;
1227
- targetMultiplier: string;
1228
- thisFieldIsRequired: string;
1229
- timestamp: string;
1230
- toggleHotkeys: string;
1231
- viewFairnessInformation: string;
1232
- viewHistory: string;
1233
- volume: string;
1234
- winChance: string;
1235
- };
1236
- errors: {
1237
- dice: {
1238
- multiplierRange: string;
1239
- winChanceRange: string;
1240
- };
1241
- };
1242
- fairness: {
1243
- activeClientSeed: string;
1244
- enterClientSeed: string;
1245
- enterProof: string;
1246
- enterPublicKey: string;
1247
- enterRandomness: string;
1248
- enterRequest: string;
1249
- info: {
1250
- p1: string;
1251
- p2: string;
1252
- p3: string;
1253
- p4: string;
1254
- step1Desc: string;
1255
- step1Title: string;
1256
- step2Title: string;
1257
- step3Desc: string;
1258
- step3Title: string;
1259
- step4Title: string;
1260
- step5Title: string;
1261
- };
1262
- invalidGame: string;
1263
- learnMore: string;
1264
- newClientSeed: string;
1265
- noBettingHistory: string;
1266
- outcomeCalculationInfo: string;
1267
- outcomeNotVerified: string;
1268
- outcomeVerified: string;
1269
- proof: string;
1270
- publicKey: string;
1271
- randomness: string;
1272
- request: string;
1273
- saveClientSeed: string;
1274
- verifyOutcome: string;
1275
- };
1276
- gameInfo: {
1277
- dice: {
1278
- how1: string;
1279
- how2: string;
1280
- how3: string;
1281
- how4: string;
1282
- how5: string;
1283
- how6: string;
1284
- overview: string;
1285
- provablyFair: string;
1286
- strategyTip: string;
1287
- };
1288
- keno: {
1289
- how1: string;
1290
- how2: string;
1291
- how3: string;
1292
- how4: string;
1293
- how5: string;
1294
- overview: string;
1295
- provablyFair: string;
1296
- strategyTip: string;
1297
- };
1298
- limbo: {
1299
- how1: string;
1300
- how2: string;
1301
- how3: string;
1302
- how4: string;
1303
- how5: string;
1304
- overview: string;
1305
- provablyFair: string;
1306
- strategyTip: string;
1307
- };
1308
- mines: {
1309
- how1: string;
1310
- how2: string;
1311
- how3: string;
1312
- how4: string;
1313
- how5: string;
1314
- how6: string;
1315
- overview: string;
1316
- provablyFair: string;
1317
- strategyTip: string;
1318
- };
1319
- rtpTitle: string;
1320
- rtpContent: string;
1321
- strategyTitle: string;
1322
- tutorial: string;
1323
- };
1324
- games: {
1325
- dice: {
1326
- rollOver: string;
1327
- rollUnder: string;
1328
- };
1329
- keno: {
1330
- autoPick: string;
1331
- clearTable: string;
1332
- kenoGameGrid: string;
1333
- kenoNumber: string;
1334
- selectAtLeastOneTile: string;
1335
- selectTileToAutobet: string;
1336
- };
1337
- limbo: {
1338
- multiplierError: string;
1339
- targetMultiplier: string;
1340
- winChanceError: string;
1341
- };
1342
- mines: {
1343
- cashout: string;
1344
- gem: string;
1345
- gems: string;
1346
- mine: string;
1347
- mines: string;
1348
- nextGem: string;
1349
- selectRandomTile: string;
1350
- selectTileToAutobet: string;
1351
- tile: string;
1352
- unrevealed: string;
1353
- };
1354
- };
1355
- hotkeys: {
1356
- doubleBet: string;
1357
- halveBet: string;
1358
- higherTarget: string;
1359
- info: string;
1360
- lowerTarget: string;
1361
- makeBet: string;
1362
- toggleWinCondition: string;
1363
- zeroBet: string;
1364
- };
1365
- modals: {
1366
- betResult: string;
1367
- fairnessAndHistory: string;
1368
- gameArea: string;
1369
- gameControls: string;
1370
- gameInfo: string;
1371
- };
1372
- };
1373
- readonly hi: {
1374
- accessibility: {
1375
- sliderValue: string;
1376
- };
1377
- alerts: {
1378
- autobetStarted: string;
1379
- autobetStopped: string;
1380
- betAmountAboveMaxBet: string;
1381
- betAmountBelowMinBet: string;
1382
- betLimitReached: string;
1383
- errorProcessingBet: string;
1384
- failedToLoadBetData: string;
1385
- gameError: string;
1386
- insufficientBalance: string;
1387
- notEnoughBalance: string;
1388
- };
1389
- autobet: {
1390
- configureAutobet: string;
1391
- games: string;
1392
- games10: string;
1393
- games100: string;
1394
- games25: string;
1395
- games5: string;
1396
- games50: string;
1397
- increase: string;
1398
- infinite: string;
1399
- onLoss: string;
1400
- onWin: string;
1401
- reset: string;
1402
- startAutobet: string;
1403
- stopAutobet: string;
1404
- stopOnLoss: string;
1405
- stopOnProfit: string;
1406
- };
1407
- common: {
1408
- auto: string;
1409
- back: string;
1410
- balance: string;
1411
- bet: string;
1412
- betAmount: string;
1413
- cancel: string;
1414
- cashOut: string;
1415
- classic: string;
1416
- confirm: string;
1417
- copied: string;
1418
- deposit: string;
1419
- disableHotkeys: string;
1420
- disableMaxBet: string;
1421
- enableHotkeys: string;
1422
- enableMaxBet: string;
1423
- footerNavigation: string;
1424
- gameInfo: string;
1425
- high: string;
1426
- history: string;
1427
- hotkeys: string;
1428
- id: string;
1429
- instantBet: string;
1430
- loading: string;
1431
- loadMore: string;
1432
- lobby: string;
1433
- low: string;
1434
- manual: string;
1435
- max: string;
1436
- medium: string;
1437
- multiplier: string;
1438
- payout: string;
1439
- placeBet: string;
1440
- profit: string;
1441
- profitOnWin: string;
1442
- provablyFair: string;
1443
- risk: string;
1444
- saveChanges: string;
1445
- siteInformation: string;
1446
- space: string;
1447
- targetMultiplier: string;
1448
- thisFieldIsRequired: string;
1449
- timestamp: string;
1450
- toggleHotkeys: string;
1451
- viewFairnessInformation: string;
1452
- viewHistory: string;
1453
- volume: string;
1454
- winChance: string;
1455
- };
1456
- errors: {
1457
- dice: {
1458
- multiplierRange: string;
1459
- winChanceRange: string;
1460
- };
1461
- };
1462
- fairness: {
1463
- activeClientSeed: string;
1464
- enterClientSeed: string;
1465
- enterProof: string;
1466
- enterPublicKey: string;
1467
- enterRandomness: string;
1468
- enterRequest: string;
1469
- info: {
1470
- p1: string;
1471
- p2: string;
1472
- p3: string;
1473
- p4: string;
1474
- step1Desc: string;
1475
- step1Title: string;
1476
- step2Title: string;
1477
- step3Desc: string;
1478
- step3Title: string;
1479
- step4Title: string;
1480
- step5Title: string;
1481
- };
1482
- invalidGame: string;
1483
- learnMore: string;
1484
- newClientSeed: string;
1485
- noBettingHistory: string;
1486
- outcomeCalculationInfo: string;
1487
- outcomeNotVerified: string;
1488
- outcomeVerified: string;
1489
- proof: string;
1490
- publicKey: string;
1491
- randomness: string;
1492
- request: string;
1493
- saveClientSeed: string;
1494
- verifyOutcome: string;
1495
- };
1496
- gameInfo: {
1497
- dice: {
1498
- how1: string;
1499
- how2: string;
1500
- how3: string;
1501
- how4: string;
1502
- how5: string;
1503
- how6: string;
1504
- overview: string;
1505
- provablyFair: string;
1506
- strategyTip: string;
1507
- };
1508
- keno: {
1509
- how1: string;
1510
- how2: string;
1511
- how3: string;
1512
- how4: string;
1513
- how5: string;
1514
- overview: string;
1515
- provablyFair: string;
1516
- strategyTip: string;
1517
- };
1518
- limbo: {
1519
- how1: string;
1520
- how2: string;
1521
- how3: string;
1522
- how4: string;
1523
- how5: string;
1524
- overview: string;
1525
- provablyFair: string;
1526
- strategyTip: string;
1527
- };
1528
- mines: {
1529
- how1: string;
1530
- how2: string;
1531
- how3: string;
1532
- how4: string;
1533
- how5: string;
1534
- how6: string;
1535
- overview: string;
1536
- provablyFair: string;
1537
- strategyTip: string;
1538
- };
1539
- rtpTitle: string;
1540
- rtpContent: string;
1541
- strategyTitle: string;
1542
- tutorial: string;
1543
- };
1544
- games: {
1545
- dice: {
1546
- rollOver: string;
1547
- rollUnder: string;
1548
- };
1549
- keno: {
1550
- autoPick: string;
1551
- clearTable: string;
1552
- kenoGameGrid: string;
1553
- kenoNumber: string;
1554
- selectAtLeastOneTile: string;
1555
- selectTileToAutobet: string;
1556
- };
1557
- limbo: {
1558
- multiplierError: string;
1559
- targetMultiplier: string;
1560
- winChanceError: string;
1561
- };
1562
- mines: {
1563
- cashout: string;
1564
- gem: string;
1565
- gems: string;
1566
- mine: string;
1567
- mines: string;
1568
- nextGem: string;
1569
- selectRandomTile: string;
1570
- selectTileToAutobet: string;
1571
- tile: string;
1572
- unrevealed: string;
1573
- };
1574
- };
1575
- hotkeys: {
1576
- doubleBet: string;
1577
- halveBet: string;
1578
- higherTarget: string;
1579
- info: string;
1580
- lowerTarget: string;
1581
- makeBet: string;
1582
- toggleWinCondition: string;
1583
- zeroBet: string;
1584
- };
1585
- modals: {
1586
- betResult: string;
1587
- fairnessAndHistory: string;
1588
- gameArea: string;
1589
- gameControls: string;
1590
- gameInfo: string;
1591
- };
1592
- };
1593
- readonly id: {
1594
- accessibility: {
1595
- sliderValue: string;
1596
- };
1597
- alerts: {
1598
- autobetStarted: string;
1599
- autobetStopped: string;
1600
- betAmountAboveMaxBet: string;
1601
- betAmountBelowMinBet: string;
1602
- betLimitReached: string;
1603
- errorProcessingBet: string;
1604
- failedToLoadBetData: string;
1605
- gameError: string;
1606
- insufficientBalance: string;
1607
- notEnoughBalance: string;
1608
- };
1609
- autobet: {
1610
- configureAutobet: string;
1611
- games: string;
1612
- games10: string;
1613
- games100: string;
1614
- games25: string;
1615
- games5: string;
1616
- games50: string;
1617
- increase: string;
1618
- infinite: string;
1619
- onLoss: string;
1620
- onWin: string;
1621
- reset: string;
1622
- startAutobet: string;
1623
- stopAutobet: string;
1624
- stopOnLoss: string;
1625
- stopOnProfit: string;
1626
- };
1627
- common: {
1628
- auto: string;
1629
- back: string;
1630
- balance: string;
1631
- bet: string;
1632
- betAmount: string;
1633
- cancel: string;
1634
- cashOut: string;
1635
- classic: string;
1636
- confirm: string;
1637
- copied: string;
1638
- deposit: string;
1639
- disableHotkeys: string;
1640
- disableMaxBet: string;
1641
- enableHotkeys: string;
1642
- enableMaxBet: string;
1643
- footerNavigation: string;
1644
- gameInfo: string;
1645
- high: string;
1646
- history: string;
1647
- hotkeys: string;
1648
- id: string;
1649
- instantBet: string;
1650
- loading: string;
1651
- loadMore: string;
1652
- lobby: string;
1653
- low: string;
1654
- manual: string;
1655
- max: string;
1656
- medium: string;
1657
- multiplier: string;
1658
- payout: string;
1659
- placeBet: string;
1660
- profit: string;
1661
- profitOnWin: string;
1662
- provablyFair: string;
1663
- risk: string;
1664
- saveChanges: string;
1665
- siteInformation: string;
1666
- space: string;
1667
- targetMultiplier: string;
1668
- thisFieldIsRequired: string;
1669
- timestamp: string;
1670
- toggleHotkeys: string;
1671
- viewFairnessInformation: string;
1672
- viewHistory: string;
1673
- volume: string;
1674
- winChance: string;
1675
- };
1676
- errors: {
1677
- dice: {
1678
- multiplierRange: string;
1679
- winChanceRange: string;
1680
- };
1681
- };
1682
- fairness: {
1683
- activeClientSeed: string;
1684
- enterClientSeed: string;
1685
- enterProof: string;
1686
- enterPublicKey: string;
1687
- enterRandomness: string;
1688
- enterRequest: string;
1689
- info: {
1690
- p1: string;
1691
- p2: string;
1692
- p3: string;
1693
- p4: string;
1694
- step1Desc: string;
1695
- step1Title: string;
1696
- step2Title: string;
1697
- step3Desc: string;
1698
- step3Title: string;
1699
- step4Title: string;
1700
- step5Title: string;
1701
- };
1702
- invalidGame: string;
1703
- learnMore: string;
1704
- newClientSeed: string;
1705
- noBettingHistory: string;
1706
- outcomeCalculationInfo: string;
1707
- outcomeNotVerified: string;
1708
- outcomeVerified: string;
1709
- proof: string;
1710
- publicKey: string;
1711
- randomness: string;
1712
- request: string;
1713
- saveClientSeed: string;
1714
- verifyOutcome: string;
1715
- };
1716
- gameInfo: {
1717
- dice: {
1718
- how1: string;
1719
- how2: string;
1720
- how3: string;
1721
- how4: string;
1722
- how5: string;
1723
- how6: string;
1724
- overview: string;
1725
- provablyFair: string;
1726
- strategyTip: string;
1727
- };
1728
- keno: {
1729
- how1: string;
1730
- how2: string;
1731
- how3: string;
1732
- how4: string;
1733
- how5: string;
1734
- overview: string;
1735
- provablyFair: string;
1736
- strategyTip: string;
1737
- };
1738
- limbo: {
1739
- how1: string;
1740
- how2: string;
1741
- how3: string;
1742
- how4: string;
1743
- how5: string;
1744
- overview: string;
1745
- provablyFair: string;
1746
- strategyTip: string;
1747
- };
1748
- mines: {
1749
- how1: string;
1750
- how2: string;
1751
- how3: string;
1752
- how4: string;
1753
- how5: string;
1754
- how6: string;
1755
- overview: string;
1756
- provablyFair: string;
1757
- strategyTip: string;
1758
- };
1759
- rtpTitle: string;
1760
- rtpContent: string;
1761
- strategyTitle: string;
1762
- tutorial: string;
1763
- };
1764
- games: {
1765
- dice: {
1766
- rollOver: string;
1767
- rollUnder: string;
1768
- };
1769
- keno: {
1770
- autoPick: string;
1771
- clearTable: string;
1772
- kenoGameGrid: string;
1773
- kenoNumber: string;
1774
- selectAtLeastOneTile: string;
1775
- selectTileToAutobet: string;
1776
- };
1777
- limbo: {
1778
- multiplierError: string;
1779
- targetMultiplier: string;
1780
- winChanceError: string;
1781
- };
1782
- mines: {
1783
- cashout: string;
1784
- gem: string;
1785
- gems: string;
1786
- mine: string;
1787
- mines: string;
1788
- nextGem: string;
1789
- selectRandomTile: string;
1790
- selectTileToAutobet: string;
1791
- tile: string;
1792
- unrevealed: string;
1793
- };
1794
- };
1795
- hotkeys: {
1796
- doubleBet: string;
1797
- halveBet: string;
1798
- higherTarget: string;
1799
- info: string;
1800
- lowerTarget: string;
1801
- makeBet: string;
1802
- toggleWinCondition: string;
1803
- zeroBet: string;
1804
- };
1805
- modals: {
1806
- betResult: string;
1807
- fairnessAndHistory: string;
1808
- gameArea: string;
1809
- gameControls: string;
1810
- gameInfo: string;
1811
- };
1812
- };
1813
- readonly ja: {
1814
- accessibility: {
1815
- sliderValue: string;
1816
- };
1817
- alerts: {
1818
- autobetStarted: string;
1819
- autobetStopped: string;
1820
- betAmountAboveMaxBet: string;
1821
- betAmountBelowMinBet: string;
1822
- betLimitReached: string;
1823
- errorProcessingBet: string;
1824
- failedToLoadBetData: string;
1825
- gameError: string;
1826
- insufficientBalance: string;
1827
- notEnoughBalance: string;
1828
- };
1829
- autobet: {
1830
- configureAutobet: string;
1831
- games: string;
1832
- games10: string;
1833
- games100: string;
1834
- games25: string;
1835
- games5: string;
1836
- games50: string;
1837
- increase: string;
1838
- infinite: string;
1839
- onLoss: string;
1840
- onWin: string;
1841
- reset: string;
1842
- startAutobet: string;
1843
- stopAutobet: string;
1844
- stopOnLoss: string;
1845
- stopOnProfit: string;
1846
- };
1847
- common: {
1848
- auto: string;
1849
- back: string;
1850
- balance: string;
1851
- bet: string;
1852
- betAmount: string;
1853
- cancel: string;
1854
- cashOut: string;
1855
- classic: string;
1856
- confirm: string;
1857
- copied: string;
1858
- deposit: string;
1859
- disableHotkeys: string;
1860
- disableMaxBet: string;
1861
- enableHotkeys: string;
1862
- enableMaxBet: string;
1863
- footerNavigation: string;
1864
- gameInfo: string;
1865
- high: string;
1866
- history: string;
1867
- hotkeys: string;
1868
- id: string;
1869
- instantBet: string;
1870
- loading: string;
1871
- loadMore: string;
1872
- lobby: string;
1873
- low: string;
1874
- manual: string;
1875
- max: string;
1876
- medium: string;
1877
- multiplier: string;
1878
- payout: string;
1879
- placeBet: string;
1880
- profit: string;
1881
- profitOnWin: string;
1882
- provablyFair: string;
1883
- risk: string;
1884
- saveChanges: string;
1885
- siteInformation: string;
1886
- space: string;
1887
- targetMultiplier: string;
1888
- thisFieldIsRequired: string;
1889
- timestamp: string;
1890
- toggleHotkeys: string;
1891
- viewFairnessInformation: string;
1892
- viewHistory: string;
1893
- volume: string;
1894
- winChance: string;
1895
- };
1896
- errors: {
1897
- dice: {
1898
- multiplierRange: string;
1899
- winChanceRange: string;
1900
- };
1901
- };
1902
- fairness: {
1903
- activeClientSeed: string;
1904
- enterClientSeed: string;
1905
- enterProof: string;
1906
- enterPublicKey: string;
1907
- enterRandomness: string;
1908
- enterRequest: string;
1909
- info: {
1910
- p1: string;
1911
- p2: string;
1912
- p3: string;
1913
- p4: string;
1914
- step1Desc: string;
1915
- step1Title: string;
1916
- step2Title: string;
1917
- step3Desc: string;
1918
- step3Title: string;
1919
- step4Title: string;
1920
- step5Title: string;
1921
- };
1922
- invalidGame: string;
1923
- learnMore: string;
1924
- newClientSeed: string;
1925
- noBettingHistory: string;
1926
- outcomeCalculationInfo: string;
1927
- outcomeNotVerified: string;
1928
- outcomeVerified: string;
1929
- proof: string;
1930
- publicKey: string;
1931
- randomness: string;
1932
- request: string;
1933
- saveClientSeed: string;
1934
- verifyOutcome: string;
1935
- };
1936
- gameInfo: {
1937
- dice: {
1938
- how1: string;
1939
- how2: string;
1940
- how3: string;
1941
- how4: string;
1942
- how5: string;
1943
- how6: string;
1944
- overview: string;
1945
- provablyFair: string;
1946
- strategyTip: string;
1947
- };
1948
- keno: {
1949
- how1: string;
1950
- how2: string;
1951
- how3: string;
1952
- how4: string;
1953
- how5: string;
1954
- overview: string;
1955
- provablyFair: string;
1956
- strategyTip: string;
1957
- };
1958
- limbo: {
1959
- how1: string;
1960
- how2: string;
1961
- how3: string;
1962
- how4: string;
1963
- how5: string;
1964
- overview: string;
1965
- provablyFair: string;
1966
- strategyTip: string;
1967
- };
1968
- mines: {
1969
- how1: string;
1970
- how2: string;
1971
- how3: string;
1972
- how4: string;
1973
- how5: string;
1974
- how6: string;
1975
- overview: string;
1976
- provablyFair: string;
1977
- strategyTip: string;
1978
- };
1979
- rtpTitle: string;
1980
- rtpContent: string;
1981
- strategyTitle: string;
1982
- tutorial: string;
1983
- };
1984
- games: {
1985
- dice: {
1986
- rollOver: string;
1987
- rollUnder: string;
1988
- };
1989
- keno: {
1990
- autoPick: string;
1991
- clearTable: string;
1992
- kenoGameGrid: string;
1993
- kenoNumber: string;
1994
- selectAtLeastOneTile: string;
1995
- selectTileToAutobet: string;
1996
- };
1997
- limbo: {
1998
- multiplierError: string;
1999
- targetMultiplier: string;
2000
- winChanceError: string;
2001
- };
2002
- mines: {
2003
- cashout: string;
2004
- gem: string;
2005
- gems: string;
2006
- mine: string;
2007
- mines: string;
2008
- nextGem: string;
2009
- selectRandomTile: string;
2010
- selectTileToAutobet: string;
2011
- tile: string;
2012
- unrevealed: string;
2013
- };
2014
- };
2015
- hotkeys: {
2016
- doubleBet: string;
2017
- halveBet: string;
2018
- higherTarget: string;
2019
- info: string;
2020
- lowerTarget: string;
2021
- makeBet: string;
2022
- toggleWinCondition: string;
2023
- zeroBet: string;
2024
- };
2025
- modals: {
2026
- betResult: string;
2027
- fairnessAndHistory: string;
2028
- gameArea: string;
2029
- gameControls: string;
2030
- gameInfo: string;
2031
- };
2032
- };
2033
- readonly ko: {
2034
- accessibility: {
2035
- sliderValue: string;
2036
- };
2037
- alerts: {
2038
- autobetStarted: string;
2039
- autobetStopped: string;
2040
- betAmountAboveMaxBet: string;
2041
- betAmountBelowMinBet: string;
2042
- betLimitReached: string;
2043
- errorProcessingBet: string;
2044
- failedToLoadBetData: string;
2045
- gameError: string;
2046
- insufficientBalance: string;
2047
- notEnoughBalance: string;
2048
- };
2049
- autobet: {
2050
- configureAutobet: string;
2051
- games: string;
2052
- games10: string;
2053
- games100: string;
2054
- games25: string;
2055
- games5: string;
2056
- games50: string;
2057
- increase: string;
2058
- infinite: string;
2059
- onLoss: string;
2060
- onWin: string;
2061
- reset: string;
2062
- startAutobet: string;
2063
- stopAutobet: string;
2064
- stopOnLoss: string;
2065
- stopOnProfit: string;
2066
- };
2067
- common: {
2068
- auto: string;
2069
- back: string;
2070
- balance: string;
2071
- bet: string;
2072
- betAmount: string;
2073
- cancel: string;
2074
- cashOut: string;
2075
- classic: string;
2076
- confirm: string;
2077
- copied: string;
2078
- deposit: string;
2079
- disableHotkeys: string;
2080
- disableMaxBet: string;
2081
- enableHotkeys: string;
2082
- enableMaxBet: string;
2083
- footerNavigation: string;
2084
- gameInfo: string;
2085
- high: string;
2086
- history: string;
2087
- hotkeys: string;
2088
- id: string;
2089
- instantBet: string;
2090
- loading: string;
2091
- loadMore: string;
2092
- lobby: string;
2093
- low: string;
2094
- manual: string;
2095
- max: string;
2096
- medium: string;
2097
- multiplier: string;
2098
- payout: string;
2099
- placeBet: string;
2100
- profit: string;
2101
- profitOnWin: string;
2102
- provablyFair: string;
2103
- risk: string;
2104
- saveChanges: string;
2105
- siteInformation: string;
2106
- space: string;
2107
- targetMultiplier: string;
2108
- thisFieldIsRequired: string;
2109
- timestamp: string;
2110
- toggleHotkeys: string;
2111
- viewFairnessInformation: string;
2112
- viewHistory: string;
2113
- volume: string;
2114
- winChance: string;
2115
- };
2116
- errors: {
2117
- dice: {
2118
- multiplierRange: string;
2119
- winChanceRange: string;
2120
- };
2121
- };
2122
- fairness: {
2123
- activeClientSeed: string;
2124
- enterClientSeed: string;
2125
- enterProof: string;
2126
- enterPublicKey: string;
2127
- enterRandomness: string;
2128
- enterRequest: string;
2129
- info: {
2130
- p1: string;
2131
- p2: string;
2132
- p3: string;
2133
- p4: string;
2134
- step1Desc: string;
2135
- step1Title: string;
2136
- step2Title: string;
2137
- step3Desc: string;
2138
- step3Title: string;
2139
- step4Title: string;
2140
- step5Title: string;
2141
- };
2142
- invalidGame: string;
2143
- learnMore: string;
2144
- newClientSeed: string;
2145
- noBettingHistory: string;
2146
- outcomeCalculationInfo: string;
2147
- outcomeNotVerified: string;
2148
- outcomeVerified: string;
2149
- proof: string;
2150
- publicKey: string;
2151
- randomness: string;
2152
- request: string;
2153
- saveClientSeed: string;
2154
- verifyOutcome: string;
2155
- };
2156
- gameInfo: {
2157
- dice: {
2158
- how1: string;
2159
- how2: string;
2160
- how3: string;
2161
- how4: string;
2162
- how5: string;
2163
- how6: string;
2164
- overview: string;
2165
- provablyFair: string;
2166
- strategyTip: string;
2167
- };
2168
- keno: {
2169
- how1: string;
2170
- how2: string;
2171
- how3: string;
2172
- how4: string;
2173
- how5: string;
2174
- overview: string;
2175
- provablyFair: string;
2176
- strategyTip: string;
2177
- };
2178
- limbo: {
2179
- how1: string;
2180
- how2: string;
2181
- how3: string;
2182
- how4: string;
2183
- how5: string;
2184
- overview: string;
2185
- provablyFair: string;
2186
- strategyTip: string;
2187
- };
2188
- mines: {
2189
- how1: string;
2190
- how2: string;
2191
- how3: string;
2192
- how4: string;
2193
- how5: string;
2194
- how6: string;
2195
- overview: string;
2196
- provablyFair: string;
2197
- strategyTip: string;
2198
- };
2199
- rtpTitle: string;
2200
- rtpContent: string;
2201
- strategyTitle: string;
2202
- tutorial: string;
2203
- };
2204
- games: {
2205
- dice: {
2206
- rollOver: string;
2207
- rollUnder: string;
2208
- };
2209
- keno: {
2210
- autoPick: string;
2211
- clearTable: string;
2212
- kenoGameGrid: string;
2213
- kenoNumber: string;
2214
- selectAtLeastOneTile: string;
2215
- selectTileToAutobet: string;
2216
- };
2217
- limbo: {
2218
- multiplierError: string;
2219
- targetMultiplier: string;
2220
- winChanceError: string;
2221
- };
2222
- mines: {
2223
- cashout: string;
2224
- gem: string;
2225
- gems: string;
2226
- mine: string;
2227
- mines: string;
2228
- nextGem: string;
2229
- selectRandomTile: string;
2230
- selectTileToAutobet: string;
2231
- tile: string;
2232
- unrevealed: string;
2233
- };
2234
- };
2235
- hotkeys: {
2236
- doubleBet: string;
2237
- halveBet: string;
2238
- higherTarget: string;
2239
- info: string;
2240
- lowerTarget: string;
2241
- makeBet: string;
2242
- toggleWinCondition: string;
2243
- zeroBet: string;
2244
- };
2245
- modals: {
2246
- betResult: string;
2247
- fairnessAndHistory: string;
2248
- gameArea: string;
2249
- gameControls: string;
2250
- gameInfo: string;
2251
- };
2252
- };
2253
- readonly pl: {
2254
- accessibility: {
2255
- sliderValue: string;
2256
- };
2257
- alerts: {
2258
- autobetStarted: string;
2259
- autobetStopped: string;
2260
- betAmountAboveMaxBet: string;
2261
- betAmountBelowMinBet: string;
2262
- betLimitReached: string;
2263
- errorProcessingBet: string;
2264
- failedToLoadBetData: string;
2265
- gameError: string;
2266
- insufficientBalance: string;
2267
- notEnoughBalance: string;
2268
- };
2269
- autobet: {
2270
- configureAutobet: string;
2271
- games: string;
2272
- games10: string;
2273
- games100: string;
2274
- games25: string;
2275
- games5: string;
2276
- games50: string;
2277
- increase: string;
2278
- infinite: string;
2279
- onLoss: string;
2280
- onWin: string;
2281
- reset: string;
2282
- startAutobet: string;
2283
- stopAutobet: string;
2284
- stopOnLoss: string;
2285
- stopOnProfit: string;
2286
- };
2287
- common: {
2288
- auto: string;
2289
- back: string;
2290
- balance: string;
2291
- bet: string;
2292
- betAmount: string;
2293
- cancel: string;
2294
- cashOut: string;
2295
- classic: string;
2296
- confirm: string;
2297
- copied: string;
2298
- deposit: string;
2299
- disableHotkeys: string;
2300
- disableMaxBet: string;
2301
- enableHotkeys: string;
2302
- enableMaxBet: string;
2303
- footerNavigation: string;
2304
- gameInfo: string;
2305
- high: string;
2306
- history: string;
2307
- hotkeys: string;
2308
- id: string;
2309
- instantBet: string;
2310
- loading: string;
2311
- loadMore: string;
2312
- lobby: string;
2313
- low: string;
2314
- manual: string;
2315
- max: string;
2316
- medium: string;
2317
- multiplier: string;
2318
- payout: string;
2319
- placeBet: string;
2320
- profit: string;
2321
- profitOnWin: string;
2322
- provablyFair: string;
2323
- risk: string;
2324
- saveChanges: string;
2325
- siteInformation: string;
2326
- space: string;
2327
- targetMultiplier: string;
2328
- thisFieldIsRequired: string;
2329
- timestamp: string;
2330
- toggleHotkeys: string;
2331
- viewFairnessInformation: string;
2332
- viewHistory: string;
2333
- volume: string;
2334
- winChance: string;
2335
- };
2336
- errors: {
2337
- dice: {
2338
- multiplierRange: string;
2339
- winChanceRange: string;
2340
- };
2341
- };
2342
- fairness: {
2343
- activeClientSeed: string;
2344
- enterClientSeed: string;
2345
- enterProof: string;
2346
- enterPublicKey: string;
2347
- enterRandomness: string;
2348
- enterRequest: string;
2349
- info: {
2350
- p1: string;
2351
- p2: string;
2352
- p3: string;
2353
- p4: string;
2354
- step1Desc: string;
2355
- step1Title: string;
2356
- step2Title: string;
2357
- step3Desc: string;
2358
- step3Title: string;
2359
- step4Title: string;
2360
- step5Title: string;
2361
- };
2362
- invalidGame: string;
2363
- learnMore: string;
2364
- newClientSeed: string;
2365
- noBettingHistory: string;
2366
- outcomeCalculationInfo: string;
2367
- outcomeNotVerified: string;
2368
- outcomeVerified: string;
2369
- proof: string;
2370
- publicKey: string;
2371
- randomness: string;
2372
- request: string;
2373
- saveClientSeed: string;
2374
- verifyOutcome: string;
2375
- };
2376
- gameInfo: {
2377
- dice: {
2378
- how1: string;
2379
- how2: string;
2380
- how3: string;
2381
- how4: string;
2382
- how5: string;
2383
- how6: string;
2384
- overview: string;
2385
- provablyFair: string;
2386
- strategyTip: string;
2387
- };
2388
- keno: {
2389
- how1: string;
2390
- how2: string;
2391
- how3: string;
2392
- how4: string;
2393
- how5: string;
2394
- overview: string;
2395
- provablyFair: string;
2396
- strategyTip: string;
2397
- };
2398
- limbo: {
2399
- how1: string;
2400
- how2: string;
2401
- how3: string;
2402
- how4: string;
2403
- how5: string;
2404
- overview: string;
2405
- provablyFair: string;
2406
- strategyTip: string;
2407
- };
2408
- mines: {
2409
- how1: string;
2410
- how2: string;
2411
- how3: string;
2412
- how4: string;
2413
- how5: string;
2414
- how6: string;
2415
- overview: string;
2416
- provablyFair: string;
2417
- strategyTip: string;
2418
- };
2419
- rtpTitle: string;
2420
- rtpContent: string;
2421
- strategyTitle: string;
2422
- tutorial: string;
2423
- };
2424
- games: {
2425
- dice: {
2426
- rollOver: string;
2427
- rollUnder: string;
2428
- };
2429
- keno: {
2430
- autoPick: string;
2431
- clearTable: string;
2432
- kenoGameGrid: string;
2433
- kenoNumber: string;
2434
- selectAtLeastOneTile: string;
2435
- selectTileToAutobet: string;
2436
- };
2437
- limbo: {
2438
- multiplierError: string;
2439
- targetMultiplier: string;
2440
- winChanceError: string;
2441
- };
2442
- mines: {
2443
- cashout: string;
2444
- gem: string;
2445
- gems: string;
2446
- mine: string;
2447
- mines: string;
2448
- nextGem: string;
2449
- selectRandomTile: string;
2450
- selectTileToAutobet: string;
2451
- tile: string;
2452
- unrevealed: string;
2453
- };
2454
- };
2455
- hotkeys: {
2456
- doubleBet: string;
2457
- halveBet: string;
2458
- higherTarget: string;
2459
- info: string;
2460
- lowerTarget: string;
2461
- makeBet: string;
2462
- toggleWinCondition: string;
2463
- zeroBet: string;
2464
- };
2465
- modals: {
2466
- betResult: string;
2467
- fairnessAndHistory: string;
2468
- gameArea: string;
2469
- gameControls: string;
2470
- gameInfo: string;
2471
- };
2472
- };
2473
- readonly pt: {
2474
- accessibility: {
2475
- sliderValue: string;
2476
- };
2477
- alerts: {
2478
- autobetStarted: string;
2479
- autobetStopped: string;
2480
- betAmountAboveMaxBet: string;
2481
- betAmountBelowMinBet: string;
2482
- betLimitReached: string;
2483
- errorProcessingBet: string;
2484
- failedToLoadBetData: string;
2485
- gameError: string;
2486
- insufficientBalance: string;
2487
- notEnoughBalance: string;
2488
- };
2489
- autobet: {
2490
- configureAutobet: string;
2491
- games: string;
2492
- games10: string;
2493
- games100: string;
2494
- games25: string;
2495
- games5: string;
2496
- games50: string;
2497
- increase: string;
2498
- infinite: string;
2499
- onLoss: string;
2500
- onWin: string;
2501
- reset: string;
2502
- startAutobet: string;
2503
- stopAutobet: string;
2504
- stopOnLoss: string;
2505
- stopOnProfit: string;
2506
- };
2507
- common: {
2508
- auto: string;
2509
- back: string;
2510
- balance: string;
2511
- bet: string;
2512
- betAmount: string;
2513
- cancel: string;
2514
- cashOut: string;
2515
- classic: string;
2516
- confirm: string;
2517
- copied: string;
2518
- deposit: string;
2519
- disableHotkeys: string;
2520
- disableMaxBet: string;
2521
- enableHotkeys: string;
2522
- enableMaxBet: string;
2523
- footerNavigation: string;
2524
- gameInfo: string;
2525
- high: string;
2526
- history: string;
2527
- hotkeys: string;
2528
- id: string;
2529
- instantBet: string;
2530
- loading: string;
2531
- loadMore: string;
2532
- lobby: string;
2533
- low: string;
2534
- manual: string;
2535
- max: string;
2536
- medium: string;
2537
- multiplier: string;
2538
- payout: string;
2539
- placeBet: string;
2540
- profit: string;
2541
- profitOnWin: string;
2542
- provablyFair: string;
2543
- risk: string;
2544
- saveChanges: string;
2545
- siteInformation: string;
2546
- space: string;
2547
- targetMultiplier: string;
2548
- thisFieldIsRequired: string;
2549
- timestamp: string;
2550
- toggleHotkeys: string;
2551
- viewFairnessInformation: string;
2552
- viewHistory: string;
2553
- volume: string;
2554
- winChance: string;
2555
- };
2556
- errors: {
2557
- dice: {
2558
- multiplierRange: string;
2559
- winChanceRange: string;
2560
- };
2561
- };
2562
- fairness: {
2563
- activeClientSeed: string;
2564
- enterClientSeed: string;
2565
- enterProof: string;
2566
- enterPublicKey: string;
2567
- enterRandomness: string;
2568
- enterRequest: string;
2569
- info: {
2570
- p1: string;
2571
- p2: string;
2572
- p3: string;
2573
- p4: string;
2574
- step1Desc: string;
2575
- step1Title: string;
2576
- step2Title: string;
2577
- step3Desc: string;
2578
- step3Title: string;
2579
- step4Title: string;
2580
- step5Title: string;
2581
- };
2582
- invalidGame: string;
2583
- learnMore: string;
2584
- newClientSeed: string;
2585
- noBettingHistory: string;
2586
- outcomeCalculationInfo: string;
2587
- outcomeNotVerified: string;
2588
- outcomeVerified: string;
2589
- proof: string;
2590
- publicKey: string;
2591
- randomness: string;
2592
- request: string;
2593
- saveClientSeed: string;
2594
- verifyOutcome: string;
2595
- };
2596
- gameInfo: {
2597
- dice: {
2598
- how1: string;
2599
- how2: string;
2600
- how3: string;
2601
- how4: string;
2602
- how5: string;
2603
- how6: string;
2604
- overview: string;
2605
- provablyFair: string;
2606
- strategyTip: string;
2607
- };
2608
- keno: {
2609
- how1: string;
2610
- how2: string;
2611
- how3: string;
2612
- how4: string;
2613
- how5: string;
2614
- overview: string;
2615
- provablyFair: string;
2616
- strategyTip: string;
2617
- };
2618
- limbo: {
2619
- how1: string;
2620
- how2: string;
2621
- how3: string;
2622
- how4: string;
2623
- how5: string;
2624
- overview: string;
2625
- provablyFair: string;
2626
- strategyTip: string;
2627
- };
2628
- mines: {
2629
- how1: string;
2630
- how2: string;
2631
- how3: string;
2632
- how4: string;
2633
- how5: string;
2634
- how6: string;
2635
- overview: string;
2636
- provablyFair: string;
2637
- strategyTip: string;
2638
- };
2639
- rtpTitle: string;
2640
- rtpContent: string;
2641
- strategyTitle: string;
2642
- tutorial: string;
2643
- };
2644
- games: {
2645
- dice: {
2646
- rollOver: string;
2647
- rollUnder: string;
2648
- };
2649
- keno: {
2650
- autoPick: string;
2651
- clearTable: string;
2652
- kenoGameGrid: string;
2653
- kenoNumber: string;
2654
- selectAtLeastOneTile: string;
2655
- selectTileToAutobet: string;
2656
- };
2657
- limbo: {
2658
- multiplierError: string;
2659
- targetMultiplier: string;
2660
- winChanceError: string;
2661
- };
2662
- mines: {
2663
- cashout: string;
2664
- gem: string;
2665
- gems: string;
2666
- mine: string;
2667
- mines: string;
2668
- nextGem: string;
2669
- selectRandomTile: string;
2670
- selectTileToAutobet: string;
2671
- tile: string;
2672
- unrevealed: string;
2673
- };
2674
- };
2675
- hotkeys: {
2676
- doubleBet: string;
2677
- halveBet: string;
2678
- higherTarget: string;
2679
- info: string;
2680
- lowerTarget: string;
2681
- makeBet: string;
2682
- toggleWinCondition: string;
2683
- zeroBet: string;
2684
- };
2685
- modals: {
2686
- betResult: string;
2687
- fairnessAndHistory: string;
2688
- gameArea: string;
2689
- gameControls: string;
2690
- gameInfo: string;
2691
- };
2692
- };
2693
- readonly ru: {
2694
- accessibility: {
2695
- sliderValue: string;
2696
- };
2697
- alerts: {
2698
- autobetStarted: string;
2699
- autobetStopped: string;
2700
- betAmountAboveMaxBet: string;
2701
- betAmountBelowMinBet: string;
2702
- betLimitReached: string;
2703
- errorProcessingBet: string;
2704
- failedToLoadBetData: string;
2705
- gameError: string;
2706
- insufficientBalance: string;
2707
- notEnoughBalance: string;
2708
- };
2709
- autobet: {
2710
- configureAutobet: string;
2711
- games: string;
2712
- games10: string;
2713
- games100: string;
2714
- games25: string;
2715
- games5: string;
2716
- games50: string;
2717
- increase: string;
2718
- infinite: string;
2719
- onLoss: string;
2720
- onWin: string;
2721
- reset: string;
2722
- startAutobet: string;
2723
- stopAutobet: string;
2724
- stopOnLoss: string;
2725
- stopOnProfit: string;
2726
- };
2727
- common: {
2728
- auto: string;
2729
- back: string;
2730
- balance: string;
2731
- bet: string;
2732
- betAmount: string;
2733
- cancel: string;
2734
- cashOut: string;
2735
- classic: string;
2736
- confirm: string;
2737
- copied: string;
2738
- deposit: string;
2739
- disableHotkeys: string;
2740
- disableMaxBet: string;
2741
- enableHotkeys: string;
2742
- enableMaxBet: string;
2743
- footerNavigation: string;
2744
- gameInfo: string;
2745
- high: string;
2746
- history: string;
2747
- hotkeys: string;
2748
- id: string;
2749
- instantBet: string;
2750
- loading: string;
2751
- loadMore: string;
2752
- lobby: string;
2753
- low: string;
2754
- manual: string;
2755
- max: string;
2756
- medium: string;
2757
- multiplier: string;
2758
- payout: string;
2759
- placeBet: string;
2760
- profit: string;
2761
- profitOnWin: string;
2762
- provablyFair: string;
2763
- risk: string;
2764
- saveChanges: string;
2765
- siteInformation: string;
2766
- space: string;
2767
- targetMultiplier: string;
2768
- thisFieldIsRequired: string;
2769
- timestamp: string;
2770
- toggleHotkeys: string;
2771
- viewFairnessInformation: string;
2772
- viewHistory: string;
2773
- volume: string;
2774
- winChance: string;
2775
- };
2776
- errors: {
2777
- dice: {
2778
- multiplierRange: string;
2779
- winChanceRange: string;
2780
- };
2781
- };
2782
- fairness: {
2783
- activeClientSeed: string;
2784
- enterClientSeed: string;
2785
- enterProof: string;
2786
- enterPublicKey: string;
2787
- enterRandomness: string;
2788
- enterRequest: string;
2789
- info: {
2790
- p1: string;
2791
- p2: string;
2792
- p3: string;
2793
- p4: string;
2794
- step1Desc: string;
2795
- step1Title: string;
2796
- step2Title: string;
2797
- step3Desc: string;
2798
- step3Title: string;
2799
- step4Title: string;
2800
- step5Title: string;
2801
- };
2802
- invalidGame: string;
2803
- learnMore: string;
2804
- newClientSeed: string;
2805
- noBettingHistory: string;
2806
- outcomeCalculationInfo: string;
2807
- outcomeNotVerified: string;
2808
- outcomeVerified: string;
2809
- proof: string;
2810
- publicKey: string;
2811
- randomness: string;
2812
- request: string;
2813
- saveClientSeed: string;
2814
- verifyOutcome: string;
2815
- };
2816
- gameInfo: {
2817
- dice: {
2818
- how1: string;
2819
- how2: string;
2820
- how3: string;
2821
- how4: string;
2822
- how5: string;
2823
- how6: string;
2824
- overview: string;
2825
- provablyFair: string;
2826
- strategyTip: string;
2827
- };
2828
- keno: {
2829
- how1: string;
2830
- how2: string;
2831
- how3: string;
2832
- how4: string;
2833
- how5: string;
2834
- overview: string;
2835
- provablyFair: string;
2836
- strategyTip: string;
2837
- };
2838
- limbo: {
2839
- how1: string;
2840
- how2: string;
2841
- how3: string;
2842
- how4: string;
2843
- how5: string;
2844
- overview: string;
2845
- provablyFair: string;
2846
- strategyTip: string;
2847
- };
2848
- mines: {
2849
- how1: string;
2850
- how2: string;
2851
- how3: string;
2852
- how4: string;
2853
- how5: string;
2854
- how6: string;
2855
- overview: string;
2856
- provablyFair: string;
2857
- strategyTip: string;
2858
- };
2859
- rtpTitle: string;
2860
- rtpContent: string;
2861
- strategyTitle: string;
2862
- tutorial: string;
2863
- };
2864
- games: {
2865
- dice: {
2866
- rollOver: string;
2867
- rollUnder: string;
2868
- };
2869
- keno: {
2870
- autoPick: string;
2871
- clearTable: string;
2872
- kenoGameGrid: string;
2873
- kenoNumber: string;
2874
- selectAtLeastOneTile: string;
2875
- selectTileToAutobet: string;
2876
- };
2877
- limbo: {
2878
- multiplierError: string;
2879
- targetMultiplier: string;
2880
- winChanceError: string;
2881
- };
2882
- mines: {
2883
- cashout: string;
2884
- gem: string;
2885
- gems: string;
2886
- mine: string;
2887
- mines: string;
2888
- nextGem: string;
2889
- selectRandomTile: string;
2890
- selectTileToAutobet: string;
2891
- tile: string;
2892
- unrevealed: string;
2893
- };
2894
- };
2895
- hotkeys: {
2896
- doubleBet: string;
2897
- halveBet: string;
2898
- higherTarget: string;
2899
- info: string;
2900
- lowerTarget: string;
2901
- makeBet: string;
2902
- toggleWinCondition: string;
2903
- zeroBet: string;
2904
- };
2905
- modals: {
2906
- betResult: string;
2907
- fairnessAndHistory: string;
2908
- gameArea: string;
2909
- gameControls: string;
2910
- gameInfo: string;
2911
- };
2912
- };
2913
- readonly tr: {
2914
- accessibility: {
2915
- sliderValue: string;
2916
- };
2917
- alerts: {
2918
- autobetStarted: string;
2919
- autobetStopped: string;
2920
- betAmountAboveMaxBet: string;
2921
- betAmountBelowMinBet: string;
2922
- betLimitReached: string;
2923
- errorProcessingBet: string;
2924
- failedToLoadBetData: string;
2925
- gameError: string;
2926
- insufficientBalance: string;
2927
- notEnoughBalance: string;
2928
- };
2929
- autobet: {
2930
- configureAutobet: string;
2931
- games: string;
2932
- games10: string;
2933
- games100: string;
2934
- games25: string;
2935
- games5: string;
2936
- games50: string;
2937
- increase: string;
2938
- infinite: string;
2939
- onLoss: string;
2940
- onWin: string;
2941
- reset: string;
2942
- startAutobet: string;
2943
- stopAutobet: string;
2944
- stopOnLoss: string;
2945
- stopOnProfit: string;
2946
- };
2947
- common: {
2948
- auto: string;
2949
- back: string;
2950
- balance: string;
2951
- bet: string;
2952
- betAmount: string;
2953
- cancel: string;
2954
- cashOut: string;
2955
- classic: string;
2956
- confirm: string;
2957
- copied: string;
2958
- deposit: string;
2959
- disableHotkeys: string;
2960
- disableMaxBet: string;
2961
- enableHotkeys: string;
2962
- enableMaxBet: string;
2963
- footerNavigation: string;
2964
- gameInfo: string;
2965
- high: string;
2966
- history: string;
2967
- hotkeys: string;
2968
- id: string;
2969
- instantBet: string;
2970
- loading: string;
2971
- loadMore: string;
2972
- lobby: string;
2973
- low: string;
2974
- manual: string;
2975
- max: string;
2976
- medium: string;
2977
- multiplier: string;
2978
- payout: string;
2979
- placeBet: string;
2980
- profit: string;
2981
- profitOnWin: string;
2982
- provablyFair: string;
2983
- risk: string;
2984
- saveChanges: string;
2985
- siteInformation: string;
2986
- space: string;
2987
- targetMultiplier: string;
2988
- thisFieldIsRequired: string;
2989
- timestamp: string;
2990
- toggleHotkeys: string;
2991
- viewFairnessInformation: string;
2992
- viewHistory: string;
2993
- volume: string;
2994
- winChance: string;
2995
- };
2996
- errors: {
2997
- dice: {
2998
- multiplierRange: string;
2999
- winChanceRange: string;
3000
- };
3001
- };
3002
- fairness: {
3003
- activeClientSeed: string;
3004
- enterClientSeed: string;
3005
- enterProof: string;
3006
- enterPublicKey: string;
3007
- enterRandomness: string;
3008
- enterRequest: string;
3009
- info: {
3010
- p1: string;
3011
- p2: string;
3012
- p3: string;
3013
- p4: string;
3014
- step1Desc: string;
3015
- step1Title: string;
3016
- step2Title: string;
3017
- step3Desc: string;
3018
- step3Title: string;
3019
- step4Title: string;
3020
- step5Title: string;
3021
- };
3022
- invalidGame: string;
3023
- learnMore: string;
3024
- newClientSeed: string;
3025
- noBettingHistory: string;
3026
- outcomeCalculationInfo: string;
3027
- outcomeNotVerified: string;
3028
- outcomeVerified: string;
3029
- proof: string;
3030
- publicKey: string;
3031
- randomness: string;
3032
- request: string;
3033
- saveClientSeed: string;
3034
- verifyOutcome: string;
3035
- };
3036
- gameInfo: {
3037
- dice: {
3038
- how1: string;
3039
- how2: string;
3040
- how3: string;
3041
- how4: string;
3042
- how5: string;
3043
- how6: string;
3044
- overview: string;
3045
- provablyFair: string;
3046
- strategyTip: string;
3047
- };
3048
- keno: {
3049
- how1: string;
3050
- how2: string;
3051
- how3: string;
3052
- how4: string;
3053
- how5: string;
3054
- overview: string;
3055
- provablyFair: string;
3056
- strategyTip: string;
3057
- };
3058
- limbo: {
3059
- how1: string;
3060
- how2: string;
3061
- how3: string;
3062
- how4: string;
3063
- how5: string;
3064
- overview: string;
3065
- provablyFair: string;
3066
- strategyTip: string;
3067
- };
3068
- mines: {
3069
- how1: string;
3070
- how2: string;
3071
- how3: string;
3072
- how4: string;
3073
- how5: string;
3074
- how6: string;
3075
- overview: string;
3076
- provablyFair: string;
3077
- strategyTip: string;
3078
- };
3079
- rtpTitle: string;
3080
- rtpContent: string;
3081
- strategyTitle: string;
3082
- tutorial: string;
3083
- };
3084
- games: {
3085
- dice: {
3086
- rollOver: string;
3087
- rollUnder: string;
3088
- };
3089
- keno: {
3090
- autoPick: string;
3091
- clearTable: string;
3092
- kenoGameGrid: string;
3093
- kenoNumber: string;
3094
- selectAtLeastOneTile: string;
3095
- selectTileToAutobet: string;
3096
- };
3097
- limbo: {
3098
- multiplierError: string;
3099
- targetMultiplier: string;
3100
- winChanceError: string;
3101
- };
3102
- mines: {
3103
- cashout: string;
3104
- gem: string;
3105
- gems: string;
3106
- mine: string;
3107
- mines: string;
3108
- nextGem: string;
3109
- selectRandomTile: string;
3110
- selectTileToAutobet: string;
3111
- tile: string;
3112
- unrevealed: string;
3113
- };
3114
- };
3115
- hotkeys: {
3116
- doubleBet: string;
3117
- halveBet: string;
3118
- higherTarget: string;
3119
- info: string;
3120
- lowerTarget: string;
3121
- makeBet: string;
3122
- toggleWinCondition: string;
3123
- zeroBet: string;
3124
- };
3125
- modals: {
3126
- betResult: string;
3127
- fairnessAndHistory: string;
3128
- gameArea: string;
3129
- gameControls: string;
3130
- gameInfo: string;
3131
- };
3132
- };
3133
- readonly vi: {
3134
- accessibility: {
3135
- sliderValue: string;
3136
- };
3137
- alerts: {
3138
- autobetStarted: string;
3139
- autobetStopped: string;
3140
- betAmountAboveMaxBet: string;
3141
- betAmountBelowMinBet: string;
3142
- betLimitReached: string;
3143
- errorProcessingBet: string;
3144
- failedToLoadBetData: string;
3145
- gameError: string;
3146
- insufficientBalance: string;
3147
- notEnoughBalance: string;
3148
- };
3149
- autobet: {
3150
- configureAutobet: string;
3151
- games: string;
3152
- games10: string;
3153
- games100: string;
3154
- games25: string;
3155
- games5: string;
3156
- games50: string;
3157
- increase: string;
3158
- infinite: string;
3159
- onLoss: string;
3160
- onWin: string;
3161
- reset: string;
3162
- startAutobet: string;
3163
- stopAutobet: string;
3164
- stopOnLoss: string;
3165
- stopOnProfit: string;
3166
- };
3167
- common: {
3168
- auto: string;
3169
- back: string;
3170
- balance: string;
3171
- bet: string;
3172
- betAmount: string;
3173
- cancel: string;
3174
- cashOut: string;
3175
- classic: string;
3176
- confirm: string;
3177
- copied: string;
3178
- deposit: string;
3179
- disableHotkeys: string;
3180
- disableMaxBet: string;
3181
- enableHotkeys: string;
3182
- enableMaxBet: string;
3183
- footerNavigation: string;
3184
- gameInfo: string;
3185
- high: string;
3186
- history: string;
3187
- hotkeys: string;
3188
- id: string;
3189
- instantBet: string;
3190
- loading: string;
3191
- loadMore: string;
3192
- lobby: string;
3193
- low: string;
3194
- manual: string;
3195
- max: string;
3196
- medium: string;
3197
- multiplier: string;
3198
- payout: string;
3199
- placeBet: string;
3200
- profit: string;
3201
- profitOnWin: string;
3202
- provablyFair: string;
3203
- risk: string;
3204
- saveChanges: string;
3205
- siteInformation: string;
3206
- space: string;
3207
- targetMultiplier: string;
3208
- thisFieldIsRequired: string;
3209
- timestamp: string;
3210
- toggleHotkeys: string;
3211
- viewFairnessInformation: string;
3212
- viewHistory: string;
3213
- volume: string;
3214
- winChance: string;
3215
- };
3216
- errors: {
3217
- dice: {
3218
- multiplierRange: string;
3219
- winChanceRange: string;
3220
- };
3221
- };
3222
- fairness: {
3223
- activeClientSeed: string;
3224
- enterClientSeed: string;
3225
- enterProof: string;
3226
- enterPublicKey: string;
3227
- enterRandomness: string;
3228
- enterRequest: string;
3229
- info: {
3230
- p1: string;
3231
- p2: string;
3232
- p3: string;
3233
- p4: string;
3234
- step1Desc: string;
3235
- step1Title: string;
3236
- step2Title: string;
3237
- step3Desc: string;
3238
- step3Title: string;
3239
- step4Title: string;
3240
- step5Title: string;
3241
- };
3242
- invalidGame: string;
3243
- learnMore: string;
3244
- newClientSeed: string;
3245
- noBettingHistory: string;
3246
- outcomeCalculationInfo: string;
3247
- outcomeNotVerified: string;
3248
- outcomeVerified: string;
3249
- proof: string;
3250
- publicKey: string;
3251
- randomness: string;
3252
- request: string;
3253
- saveClientSeed: string;
3254
- verifyOutcome: string;
3255
- };
3256
- gameInfo: {
3257
- dice: {
3258
- how1: string;
3259
- how2: string;
3260
- how3: string;
3261
- how4: string;
3262
- how5: string;
3263
- how6: string;
3264
- overview: string;
3265
- provablyFair: string;
3266
- strategyTip: string;
3267
- };
3268
- keno: {
3269
- how1: string;
3270
- how2: string;
3271
- how3: string;
3272
- how4: string;
3273
- how5: string;
3274
- overview: string;
3275
- provablyFair: string;
3276
- strategyTip: string;
3277
- };
3278
- limbo: {
3279
- how1: string;
3280
- how2: string;
3281
- how3: string;
3282
- how4: string;
3283
- how5: string;
3284
- overview: string;
3285
- provablyFair: string;
3286
- strategyTip: string;
3287
- };
3288
- mines: {
3289
- how1: string;
3290
- how2: string;
3291
- how3: string;
3292
- how4: string;
3293
- how5: string;
3294
- how6: string;
3295
- overview: string;
3296
- provablyFair: string;
3297
- strategyTip: string;
3298
- };
3299
- rtpTitle: string;
3300
- rtpContent: string;
3301
- strategyTitle: string;
3302
- tutorial: string;
3303
- };
3304
- games: {
3305
- dice: {
3306
- rollOver: string;
3307
- rollUnder: string;
3308
- };
3309
- keno: {
3310
- autoPick: string;
3311
- clearTable: string;
3312
- kenoGameGrid: string;
3313
- kenoNumber: string;
3314
- selectAtLeastOneTile: string;
3315
- selectTileToAutobet: string;
3316
- };
3317
- limbo: {
3318
- multiplierError: string;
3319
- targetMultiplier: string;
3320
- winChanceError: string;
3321
- };
3322
- mines: {
3323
- cashout: string;
3324
- gem: string;
3325
- gems: string;
3326
- mine: string;
3327
- mines: string;
3328
- nextGem: string;
3329
- selectRandomTile: string;
3330
- selectTileToAutobet: string;
3331
- tile: string;
3332
- unrevealed: string;
3333
- };
3334
- };
3335
- hotkeys: {
3336
- doubleBet: string;
3337
- halveBet: string;
3338
- higherTarget: string;
3339
- info: string;
3340
- lowerTarget: string;
3341
- makeBet: string;
3342
- toggleWinCondition: string;
3343
- zeroBet: string;
3344
- };
3345
- modals: {
3346
- betResult: string;
3347
- fairnessAndHistory: string;
3348
- gameArea: string;
3349
- gameControls: string;
3350
- gameInfo: string;
3351
- };
3352
- };
3353
- readonly zh: {
3354
- accessibility: {
3355
- sliderValue: string;
3356
- };
3357
- alerts: {
3358
- autobetStarted: string;
3359
- autobetStopped: string;
3360
- betAmountAboveMaxBet: string;
3361
- betAmountBelowMinBet: string;
3362
- betLimitReached: string;
3363
- errorProcessingBet: string;
3364
- failedToLoadBetData: string;
3365
- gameError: string;
3366
- insufficientBalance: string;
3367
- notEnoughBalance: string;
3368
- };
3369
- autobet: {
3370
- configureAutobet: string;
3371
- games: string;
3372
- games10: string;
3373
- games100: string;
3374
- games25: string;
3375
- games5: string;
3376
- games50: string;
3377
- increase: string;
3378
- infinite: string;
3379
- onLoss: string;
3380
- onWin: string;
3381
- reset: string;
3382
- startAutobet: string;
3383
- stopAutobet: string;
3384
- stopOnLoss: string;
3385
- stopOnProfit: string;
3386
- };
3387
- common: {
3388
- auto: string;
3389
- back: string;
3390
- balance: string;
3391
- bet: string;
3392
- betAmount: string;
3393
- cancel: string;
3394
- cashOut: string;
3395
- classic: string;
3396
- confirm: string;
3397
- copied: string;
3398
- deposit: string;
3399
- disableHotkeys: string;
3400
- disableMaxBet: string;
3401
- enableHotkeys: string;
3402
- enableMaxBet: string;
3403
- footerNavigation: string;
3404
- gameInfo: string;
3405
- high: string;
3406
- history: string;
3407
- hotkeys: string;
3408
- id: string;
3409
- instantBet: string;
3410
- loading: string;
3411
- loadMore: string;
3412
- lobby: string;
3413
- low: string;
3414
- manual: string;
3415
- max: string;
3416
- medium: string;
3417
- multiplier: string;
3418
- payout: string;
3419
- placeBet: string;
3420
- profit: string;
3421
- profitOnWin: string;
3422
- provablyFair: string;
3423
- risk: string;
3424
- saveChanges: string;
3425
- siteInformation: string;
3426
- space: string;
3427
- targetMultiplier: string;
3428
- thisFieldIsRequired: string;
3429
- timestamp: string;
3430
- toggleHotkeys: string;
3431
- viewFairnessInformation: string;
3432
- viewHistory: string;
3433
- volume: string;
3434
- winChance: string;
3435
- };
3436
- errors: {
3437
- dice: {
3438
- multiplierRange: string;
3439
- winChanceRange: string;
3440
- };
3441
- };
3442
- fairness: {
3443
- activeClientSeed: string;
3444
- enterClientSeed: string;
3445
- enterProof: string;
3446
- enterPublicKey: string;
3447
- enterRandomness: string;
3448
- enterRequest: string;
3449
- info: {
3450
- p1: string;
3451
- p2: string;
3452
- p3: string;
3453
- p4: string;
3454
- step1Desc: string;
3455
- step1Title: string;
3456
- step2Title: string;
3457
- step3Desc: string;
3458
- step3Title: string;
3459
- step4Title: string;
3460
- step5Title: string;
3461
- };
3462
- invalidGame: string;
3463
- learnMore: string;
3464
- newClientSeed: string;
3465
- noBettingHistory: string;
3466
- outcomeCalculationInfo: string;
3467
- outcomeNotVerified: string;
3468
- outcomeVerified: string;
3469
- proof: string;
3470
- publicKey: string;
3471
- randomness: string;
3472
- request: string;
3473
- saveClientSeed: string;
3474
- verifyOutcome: string;
3475
- };
3476
- gameInfo: {
3477
- dice: {
3478
- how1: string;
3479
- how2: string;
3480
- how3: string;
3481
- how4: string;
3482
- how5: string;
3483
- how6: string;
3484
- overview: string;
3485
- provablyFair: string;
3486
- strategyTip: string;
3487
- };
3488
- keno: {
3489
- how1: string;
3490
- how2: string;
3491
- how3: string;
3492
- how4: string;
3493
- how5: string;
3494
- overview: string;
3495
- provablyFair: string;
3496
- strategyTip: string;
3497
- };
3498
- limbo: {
3499
- how1: string;
3500
- how2: string;
3501
- how3: string;
3502
- how4: string;
3503
- how5: string;
3504
- overview: string;
3505
- provablyFair: string;
3506
- strategyTip: string;
3507
- };
3508
- mines: {
3509
- how1: string;
3510
- how2: string;
3511
- how3: string;
3512
- how4: string;
3513
- how5: string;
3514
- how6: string;
3515
- overview: string;
3516
- provablyFair: string;
3517
- strategyTip: string;
3518
- };
3519
- rtpTitle: string;
3520
- rtpContent: string;
3521
- strategyTitle: string;
3522
- tutorial: string;
3523
- };
3524
- games: {
3525
- dice: {
3526
- rollOver: string;
3527
- rollUnder: string;
3528
- };
3529
- keno: {
3530
- autoPick: string;
3531
- clearTable: string;
3532
- kenoGameGrid: string;
3533
- kenoNumber: string;
3534
- selectAtLeastOneTile: string;
3535
- selectTileToAutobet: string;
3536
- };
3537
- limbo: {
3538
- multiplierError: string;
3539
- targetMultiplier: string;
3540
- winChanceError: string;
3541
- };
3542
- mines: {
3543
- cashout: string;
3544
- gem: string;
3545
- gems: string;
3546
- mine: string;
3547
- mines: string;
3548
- nextGem: string;
3549
- selectRandomTile: string;
3550
- selectTileToAutobet: string;
3551
- tile: string;
3552
- unrevealed: string;
3553
- };
3554
- };
3555
- hotkeys: {
3556
- doubleBet: string;
3557
- halveBet: string;
3558
- higherTarget: string;
3559
- info: string;
3560
- lowerTarget: string;
3561
- makeBet: string;
3562
- toggleWinCondition: string;
3563
- zeroBet: string;
3564
- };
3565
- modals: {
3566
- betResult: string;
3567
- fairnessAndHistory: string;
3568
- gameArea: string;
3569
- gameControls: string;
3570
- gameInfo: string;
3571
- };
3572
- };
3573
- };
3574
- export declare function getTranslation(key: TranslationKey, language?: Language, defaultValue?: string): string;
3575
- export interface GameHost {
3576
- addController(controller: any): void;
3577
- }
3578
- declare class HapticController {
3579
- private canVibrate;
3580
- constructor(host: GameHost);
3581
- trigger(duration?: number | number[]): void;
3582
- click(): void;
3583
- lightClick(): void;
3584
- }
3585
- declare enum DiceDirection {
3586
- ABOVE = "ABOVE",
3587
- BELOW = "BELOW"
3588
- }
3589
- declare enum KenoRiskLevel {
3590
- CLASSIC = "CLASSIC",
3591
- LOW_RISK = "LOW_RISK",
3592
- MEDIUM_RISK = "MEDIUM_RISK",
3593
- HIGH_RISK = "HIGH_RISK"
3594
- }
3595
- declare const VALID_KENO_EDGES: readonly [
3596
- 1,
3597
- 2,
3598
- 3,
3599
- 4
3600
- ];
3601
- export type KenoEdge = (typeof VALID_KENO_EDGES)[number];
3602
- declare enum OrigamiActionType {
3603
- START_BET = "START_BET",// bet started but not yet ended send to the /bet webhook
3604
- END_BET = "END_BET",// bet has been completed. Can be started and ended in 1 webhook or started in 1 and ended in another. send to the /bet webhook
3605
- ROLLBACK = "ROLLBACK",// send to the /rollback webhook
3606
- INTERMEDIATE_BET_ACTION = "INTERMEDIATE_BET_ACTION",// bet amount was increased without game ending, such as doubling down in blackjack
3607
- INTERMEDIATE_NON_BET_ACTION = "INTERMEDIATE_NON_BET_ACTION"
3608
- }
3609
- export type DiceStartAction = {
3610
- direction: DiceDirection;
3611
- selectedValue: number;
3612
- };
3613
- export type KenoStartAction = {
3614
- riskLevel: KenoRiskLevel;
3615
- selectedNumbers: number[];
3616
- };
3617
- export type EndAction = {
3618
- result: number[];
3619
- };
3620
- export type LimboStartAction = {
3621
- targetMultiplier: number;
3622
- };
3623
- export type LimboEndAction = {
3624
- result: number[];
3625
- randomMultiplier: string;
3626
- };
3627
- export type MinesStartAction = {
3628
- minesCount: number;
3629
- selectedTiles: number[];
3630
- hasCashedOut: boolean;
3631
- };
3632
- export interface Action {
3633
- id: string;
3634
- data: {
3635
- DICE?: DiceStartAction | EndAction;
3636
- KENO?: KenoStartAction | EndAction;
3637
- LIMBO?: LimboStartAction | LimboEndAction;
3638
- MINES?: MinesStartAction | EndAction;
3639
- };
3640
- betAmount: string | null;
3641
- payoutAmount: string | null;
3642
- actionIndex: number;
3643
- type: OrigamiActionType;
3644
- }
3645
- export interface BetResult {
3646
- id: string;
3647
- nonce: number;
3648
- amount: string;
3649
- payout: string | null;
3650
- currency: Currency;
3651
- userId: string;
3652
- gameId: string;
3653
- multiplier: string | null;
3654
- tenantId: string;
3655
- clientSeed: string;
3656
- randomValue: string | null;
3657
- proof: string | null;
3658
- afterBalance: string | null;
3659
- tenantUserId: string;
3660
- betActions: Array<Action>;
3661
- }
3662
- export interface HistoryItem {
3663
- id: string;
3664
- fullId: string;
3665
- timestamp: string;
3666
- currency: string;
3667
- bet: number;
3668
- win: number;
3669
- }
3670
- interface GameHost$1 {
3671
- gameData: gameContextType;
3672
- addController(controller: any): void;
3673
- }
3674
- declare class HistoryController extends EventTarget {
3675
- private host;
3676
- private _historyData;
3677
- private _hasData;
3678
- private _isInitialized;
3679
- private _hasNextPage;
3680
- private _initialLoadSize;
3681
- private _hasLoadedMore;
3682
- private _clientSeed;
3683
- private _hasLoadedClientSeed;
3684
- constructor(host: GameHost$1);
3685
- get historyData(): HistoryItem[];
3686
- get hasData(): boolean | null;
3687
- get isInitialized(): boolean;
3688
- get hasNextPage(): boolean;
3689
- get clientSeed(): string | null;
3690
- get hasLoadedClientSeed(): boolean;
3691
- private notifyDataChanged;
3692
- private notifyClientSeedChanged;
3693
- private preloadHistory;
3694
- fetchHistory(beforeId?: string, numberToFetch?: number): Promise<{
3695
- historyData: HistoryItem[];
3696
- hasNextPage: boolean;
3697
- }>;
3698
- refreshHistory(preserveLoadedMore?: boolean): Promise<void>;
3699
- loadMore(): Promise<{
3700
- historyData: HistoryItem[];
3701
- hasNextPage: boolean;
3702
- }>;
3703
- addNewBet(betResult: BetResult): void;
3704
- loadClientSeed(): Promise<void>;
3705
- updateClientSeed(newSeed: string): void;
3706
- }
3707
- export type BaseSound = "bet" | "click" | "dice-roll" | "dice-tick" | "half-double" | "keno-clear" | "keno-gem" | "limbo-tick" | "mines-bomb" | "mines-gem" | "secondary" | "toggle" | "win";
3708
- interface GameHost$2 {
3709
- gameData: gameContextType;
3710
- addController(controller: any): void;
3711
- }
3712
- declare class SoundController {
3713
- private host;
3714
- private muted;
3715
- private audioCtx;
3716
- private buffer;
3717
- private spriteMap;
3718
- constructor(host: GameHost$2);
3719
- play(soundKey: BaseSound, muted?: boolean, pitch?: number, volume?: number, onEndCallback?: () => void): Promise<AudioBufferSourceNode | void>;
3720
- }
3721
- export type gameContextType = {
3722
- betAmount: string;
3723
- updateBetAmount: (newAmount: Big$1) => void;
3724
- updateBalance: (newAmount: Big$1) => void;
3725
- currency: Currency;
3726
- currencyDecimals: number;
3727
- showCurrencyAsText: boolean;
3728
- balance: number;
3729
- baseUrl: string;
3730
- authToken: string;
3731
- publicKey: string;
3732
- hotkeysOpenEnabled: boolean;
3733
- showMaxBetButton: boolean;
3734
- volume: number;
3735
- instantBetEnabled: boolean;
3736
- mainWidth: number;
3737
- updateMainWidth: (width: number) => void;
3738
- updateHotkeysOpenEnabled: (enabled: boolean) => void;
3739
- updateShowMaxBetButton: (enabled: boolean) => void;
3740
- updateVolume: (volume: number) => void;
3741
- updateInstantBetEnabled: (enabled: boolean) => void;
3742
- language: Language;
3743
- autobetNumberOfBets: number;
3744
- updateAutobetNumberOfBets: (numberOfBets: number) => void;
3745
- soundController?: SoundController;
3746
- historyController?: HistoryController;
3747
- hapticController?: HapticController;
3748
- lobbyUrl: string;
3749
- depositUrl?: string;
3750
- hasLoadedBalance: boolean;
3751
- maxPayout: number | null;
3752
- minBet: number | null;
3753
- maxBet: number | null;
3754
- edge: number;
3755
- footerPosition: "ABOVE" | "BELOW";
3756
- logoUrl: string | null;
3757
- };
3758
- declare const gameContext: {
3759
- __context__: gameContextType;
3760
- };
3761
- export declare class GameProviderWrapper extends OrigamiElement {
3762
- currency: Currency;
3763
- showCurrencyAsText: boolean;
3764
- balance: number;
3765
- currencyDecimals: number;
3766
- baseUrl: string;
3767
- authToken: string;
3768
- origamiGame: OrigamiGame;
3769
- lobbyUrl: string;
3770
- depositUrl: string | undefined;
3771
- maxPayout: number | null;
3772
- minBet: number | null;
3773
- maxBet: number | null;
3774
- edge: number;
3775
- footerPosition: "ABOVE" | "BELOW";
3776
- logoUrl: string | null;
3777
- private betAmount;
3778
- private autobetNumberOfBets;
3779
- private hotkeysOpenEnabled;
3780
- private showMaxBetButton;
3781
- private volume;
3782
- private instantBetEnabled;
3783
- private mainWidth;
3784
- private publicKey;
3785
- private scale;
3786
- language: Language;
3787
- private _soundController;
3788
- private _historyController;
3789
- private _hapticController;
3790
- private _resizeObserver;
3791
- private hasLoadedBalance;
3792
- protected _gameProvider: ContextProvider<typeof gameContext>;
3793
- connectedCallback(): void;
3794
- firstUpdated(_changed: PropertyValues): Promise<void>;
3795
- disconnectedCallback(): void;
3796
- updated(changedProperties: PropertyValues): void;
3797
- get gameData(): gameContextType;
3798
- private createGameContextValue;
3799
- private updateProviderValue;
3800
- private fetchBalance;
3801
- private fetchPublicKey;
3802
- updateHotkeysOpenEnabled(enabled: boolean): void;
3803
- updateShowMaxBetButton(enabled: boolean): void;
3804
- updateVolume(volume: number): void;
3805
- updateInstantBetEnabled(enabled: boolean): void;
3806
- updateAutobetNumberOfBets(numberOfBets: number): void;
3807
- updateMainWidth(width: number): void;
3808
- updateBetAmount(newAmount: Big$1): void;
3809
- updateBalance(newAmount: Big$1): void;
3810
- private _boundCalculateScale;
3811
- private setupResizeObserver;
3812
- private cleanupResizeObserver;
3813
- private calculateScale;
3814
- render(): import("lit-html").TemplateResult<1>;
3815
- }
3816
- export declare class BetDetailsComponent extends OrigamiElement {
3817
- static styles: import("lit").CSSResult;
3818
- baseUrl: string;
3819
- betId: string;
3820
- private _betDetails;
3821
- private get _gameName();
3822
- private get _roundId();
3823
- private get _timestamp();
3824
- private get _currency();
3825
- private get _betAmount();
3826
- private get _multiplier();
3827
- private get _payout();
3828
- render(): TemplateResult<1>;
3829
- connectedCallback(): Promise<void>;
3830
- private handleShare;
3831
- private fetchBetDetails;
3832
- }
3833
- declare enum MinesGameOutcome {
3834
- WIN = "WIN",
3835
- LOSS = "LOSS"
3836
- }
3837
- declare enum MinesFlowState {
3838
- NO_GAME_ACTIVE = "NO_GAME_ACTIVE",
3839
- GAME_IN_PROGRESS = "GAME_IN_PROGRESS",
3840
- VIEWING_RESULTS = "VIEWING_RESULTS"
3841
- }
3842
- export interface MinesState {
3843
- currency?: Currency;
3844
- selectedTiles: number[];
3845
- mineLocations: number[];
3846
- outcome: MinesGameOutcome | null;
3847
- minesCount: number;
3848
- numMinesRemaining: number;
3849
- numGemsFound: number;
3850
- numGemsRemaining: number;
3851
- state: MinesFlowState;
3852
- betAmount: Big$1;
3853
- }
3854
- export type AfterBetEffect = "Reset" | "Increase";
3855
- declare const defaultAutobetValues: {
3856
- onWinPercentage: string;
3857
- onLossPercentage: string;
3858
- stopOnProfit: string;
3859
- stopOnLoss: string;
3860
- onLossStrategy: AfterBetEffect;
3861
- onWinStrategy: AfterBetEffect;
3862
- };
3863
- export type AutobetValues = typeof defaultAutobetValues;
3864
- export type BetMode = "Manual" | "Auto";
3865
- export type AutobetToggleEvent = CustomEvent<AutobetValues & {
3866
- numberOfBets: string;
3867
- }>;
3868
- export type LimboMultiplierChangeEvent = CustomEvent<{
3869
- multiplier: string;
3870
- }>;
3871
- export type LimboWinChanceChangeEvent = CustomEvent<{
3872
- winChance: string;
3873
- }>;
3874
- export type LimboMultiplierAnimationEndEvent = CustomEvent<{
3875
- resultMultiplier: number;
3876
- isWin: boolean;
3877
- betId: string;
3878
- }>;
3879
- export type KenoRiskChangeEvent = CustomEvent<{
3880
- value: KenoRiskLevel;
3881
- }>;
3882
- export type KenoTileClickEvent = CustomEvent<{
3883
- tile: number;
3884
- }>;
3885
- export interface AutobetSettings {
3886
- onWinStrategy: AfterBetEffect;
3887
- onLossStrategy: AfterBetEffect;
3888
- onWinPercentage: string | number;
3889
- onLossPercentage: string | number;
3890
- stopOnLoss: string;
3891
- stopOnProfit: string;
3892
- numberOfBets?: number;
3893
- autobetBets?: number;
3894
- }
3895
- export interface GameBetResult {
3896
- pnl: Big$1;
3897
- gameOutcome: "Win" | "Loss" | "Draw";
3898
- hasError: boolean;
3899
- errorMessage?: string;
3900
- }
3901
- declare abstract class GameComponent extends OrigamiElement {
3902
- protected manualOrAuto: BetMode;
3903
- protected hasPendingBet: boolean;
3904
- protected autobetInProgress: boolean;
3905
- protected autobetStopping: boolean;
3906
- static soundsToPreload: string[];
3907
- static styles: import("lit").CSSResult[];
3908
- private gameConsumer;
3909
- get gameData(): gameContextType;
3910
- get isDemoMode(): boolean;
3911
- get isToggleDisabled(): boolean;
3912
- get areInputsDisabled(): boolean;
3913
- protected getDelay(normalDelay: number): number;
3914
- protected getAutobetDelay(): number;
3915
- protected forceUIUpdate(): Promise<void>;
3916
- protected executeInstantOrAnimated<T>(instantOperation: () => Promise<T> | T, animatedOperation: () => Promise<T> | T): Promise<T>;
3917
- protected ensureMinimumDisplayTime(hasWin?: boolean, winDisplayTime?: number, lossDisplayTime?: number): Promise<void>;
3918
- disconnectedCallback(): void;
3919
- toggleAutobet(event: AutobetToggleEvent): Promise<void>;
3920
- protected abstract executeAutobet(_autobetSettings: AutobetSettings, _currentBetAmount: string): Promise<GameBetResult>;
3921
- protected adjustBetAmount(autobetSettings: AutobetSettings, gameOutcome: "Win" | "Loss" | "Draw", originalBetAmount: string, currentBetAmount: string): string;
3922
- protected isPnLWithinLimits(autobetSettings: AutobetSettings, totalPnL: Big$1): boolean;
3923
- protected updateHistoryWithBet(betResult: BetResult): void;
3924
- protected showError(message: string): void;
3925
- }
3926
- export type DiceStartArgs = {
3927
- language: Language;
3928
- currency: Currency;
3929
- amount: string;
3930
- windowId?: string;
3931
- usdAmount?: number;
3932
- direction: DiceDirection;
3933
- selectedValue: number;
3934
- };
3935
- declare class DiceApi {
3936
- private authToken;
3937
- private baseUrl;
3938
- static totalDiceValue: number;
3939
- static minWinChance: number;
3940
- static inputValuePrecision: number;
3941
- static getMaxWinChance(edge: number): number;
3942
- constructor(authToken: string, baseUrl: string);
3943
- startBet(data: DiceStartArgs): Promise<{
3944
- success: true;
3945
- data: any;
3946
- error?: undefined;
3947
- } | {
3948
- success: false;
3949
- error: string;
3950
- data?: undefined;
3951
- }>;
3952
- static getMultiplier(edge: number, selectedValue: number, diceDirection: DiceDirection): string;
3953
- static getWinChance(selectedValue: number, diceDirection: DiceDirection): string;
3954
- static getSelectedValueFromMultiplier(edge: number, multiplier: string, diceDirection: DiceDirection): number;
3955
- static getSelectedValueFromWinChance(winChancePercentage: string, diceDirection: DiceDirection): number;
3956
- static getSelectedValueFromRollOver(selectedValue: number): number;
3957
- static getWinChanceFromSelectedValue(selectedValue: number, diceDirection: DiceDirection): string;
3958
- static getMinMultiplier(edge: number): string;
3959
- static getMaxMultiplier(edge: number): string;
3960
- static isValidMultiplier(edge: number, multiplier: string): boolean;
3961
- static isValidWinChance(winChance: string, edge: number): boolean;
3962
- }
3963
- declare class MockDiceApi {
3964
- private readonly edge;
3965
- constructor(edge: number);
3966
- startBet(data: DiceStartArgs): Promise<{
3967
- success: true;
3968
- data: BetResult;
3969
- }>;
3970
- private static getRandomValueInRange;
3971
- }
3972
- export declare class DiceGame extends GameComponent {
3973
- static styles: import("lit").CSSResult[];
3974
- private diceDirection;
3975
- private selectedValue;
3976
- private isManualPlaying;
3977
- private showDice;
3978
- private isWin;
3979
- private resultValue;
3980
- private history;
3981
- private _multiplierInputValid;
3982
- private _winChanceInputValid;
3983
- private _diceManualEl?;
3984
- private _diceAutoEl?;
3985
- get isToggleDisabled(): boolean;
3986
- get areInputsDisabled(): boolean;
3987
- private isSpacebarDisabled;
3988
- private handleSpacebar;
3989
- diceRollOverToggle: () => void;
3990
- constructor();
3991
- private decreaseSlider;
3992
- private increaseSlider;
3993
- get diceApi(): DiceApi | MockDiceApi;
3994
- dicePlay(): Promise<void>;
3995
- private handleBetExecution;
3996
- addToHistory(multiplier: number, won: boolean, id: string): void;
3997
- protected executeAutobet(_autobetSettings: AutobetSettings, currentBetAmount: string): Promise<GameBetResult>;
3998
- render(): import("lit-html").TemplateResult<1>;
3999
- }
4000
- export type KenoStartArgs = {
4001
- language: Language;
4002
- currency: Currency;
4003
- amount: string;
4004
- windowId?: string;
4005
- usdAmount?: number;
4006
- riskLevel: KenoRiskLevel;
4007
- selectedNumbers: number[];
4008
- };
4009
- declare class KenoApi {
4010
- private authToken;
4011
- private baseUrl;
4012
- constructor(authToken: string, baseUrl: string);
4013
- startBet(data: KenoStartArgs): Promise<{
4014
- success: true;
4015
- data: any;
4016
- error?: undefined;
4017
- } | {
4018
- success: false;
4019
- error: string;
4020
- data?: undefined;
4021
- }>;
4022
- }
4023
- declare class MockKenoApi {
4024
- private readonly edge;
4025
- constructor(edge: KenoEdge);
4026
- startBet(data: KenoStartArgs): Promise<{
4027
- success: true;
4028
- data: BetResult;
4029
- }>;
4030
- private static generateRandomTiles;
4031
- private calculateMultiplier;
4032
- }
4033
- export declare class KenoGame extends GameComponent {
4034
- private isManualPlaying;
4035
- private history;
4036
- private selectedTiles;
4037
- private resultTiles;
4038
- gameWinPopupShowing: boolean;
4039
- static styles: import("lit").CSSResult[];
4040
- private gameOver;
4041
- private payout;
4042
- private kenoRisk;
4043
- private autoselectRunning;
4044
- private multiplier;
4045
- private hadTilesBeforeAutopick;
4046
- private betId;
4047
- private showResetAnimation;
4048
- private _kenoManualEl?;
4049
- private _kenoAutoEl?;
4050
- private getDisplayMultiplier;
4051
- get isToggleDisabled(): boolean;
4052
- get areInputsDisabled(): boolean;
4053
- get kenoApi(): KenoApi | MockKenoApi;
4054
- kenoPlay(): Promise<void>;
4055
- private handleBetExecution;
4056
- addToHistory(multiplier: number, won: boolean, id: string): void;
4057
- protected executeAutobet(_autobetSettings: AutobetSettings, currentBetAmount: string): Promise<GameBetResult>;
4058
- handleTileClick: (e: KenoTileClickEvent) => void;
4059
- handleRiskChange: (e: KenoRiskChangeEvent) => void;
4060
- autoPick: () => Promise<void>;
4061
- clearTable: () => void;
4062
- newGame: () => void;
4063
- render(): import("lit-html").TemplateResult<1>;
4064
- private getButton;
4065
- private isButtonDisabled;
4066
- private handleSpacebar;
4067
- private handleAutoPick;
4068
- private handleClearTable;
4069
- constructor();
4070
- firstUpdated(changedProperties: Map<string | number | symbol, unknown>): Promise<void>;
4071
- }
4072
- export type LimboStartArgs = {
4073
- language: Language;
4074
- currency: Currency;
4075
- amount: string;
4076
- windowId?: string;
4077
- usdAmount?: number;
4078
- targetMultiplier: number;
4079
- };
4080
- declare class LimboApi {
4081
- private authToken;
4082
- private baseUrl;
4083
- static winChancePrecision: number;
4084
- static multiplierPrecision: number;
4085
- static minMultiplier: number;
4086
- static maxMultiplier: number;
4087
- static getMinWinChance(edge: number): string;
4088
- static getMaxWinChance(edge: number): string;
4089
- constructor(authToken: string, baseUrl: string);
4090
- startBet: (data: LimboStartArgs) => Promise<{
4091
- success: true;
4092
- data: any;
4093
- error?: undefined;
4094
- } | {
4095
- success: false;
4096
- error: string;
4097
- data?: undefined;
4098
- }>;
4099
- static calculateMultiplier(winChance: number, edge: number): string;
4100
- static calculateWinChance(targetMultiplier: number, edge: number): string;
4101
- static isValidMultiplier(multiplier: string): boolean;
4102
- static isValidWinChance(winChance: string, edge: number): boolean;
4103
- }
4104
- declare class MockLimboApi {
4105
- private readonly edge;
4106
- constructor(edge: number);
4107
- startBet(data: LimboStartArgs): Promise<{
4108
- success: true;
4109
- data: BetResult;
4110
- }>;
4111
- private getRandomMultiplier;
4112
- }
4113
- export declare class LimboGame extends GameComponent {
4114
- static styles: import("lit").CSSResult[];
4115
- private targetMultiplier;
4116
- private resultMultiplier;
4117
- private isManualPlaying;
4118
- private isWin;
4119
- private history;
4120
- private betTargetMultiplier;
4121
- private betId;
4122
- private _multiplierInputValid;
4123
- private _winChanceInputValid;
4124
- private _limboManualEl?;
4125
- private _limboAutoEl?;
4126
- get isToggleDisabled(): boolean;
4127
- get areInputsDisabled(): boolean;
4128
- get limboApi(): LimboApi | MockLimboApi;
4129
- limboPlay(): Promise<void>;
4130
- private handleBetExecution;
4131
- private isSpacebarDisabled;
4132
- private handleSpacebar;
4133
- constructor();
4134
- disconnectedCallback(): void;
4135
- protected executeAutobet(_autobetSettings: AutobetSettings, currentBetAmount: string): Promise<GameBetResult>;
4136
- multiplierChange: (e: LimboMultiplierChangeEvent) => void;
4137
- calculateProfitOnWin(): string;
4138
- winChanceChange: (e: LimboWinChanceChangeEvent) => void;
4139
- addToHistory(multiplier: number, won: boolean, id: string): void;
4140
- multiplierAnimationEnd: (e: LimboMultiplierAnimationEndEvent) => void;
4141
- render(): import("lit-html").TemplateResult<1>;
4142
- }
4143
- export type MinesManualStartArgs = {
4144
- language: Language;
4145
- currency: Currency;
4146
- amount: string;
4147
- minesCount: number;
4148
- };
4149
- export type MinesNextArgs = {
4150
- betId?: string;
4151
- selectedTiles: number[];
4152
- };
4153
- export type MinesAutoArgs = {
4154
- language: Language;
4155
- currency: Currency;
4156
- amount: string;
4157
- windowId?: string;
4158
- usdAmount?: number;
4159
- minesCount?: number;
4160
- selectedTiles: number[];
4161
- };
4162
- declare class MinesApi {
4163
- private authToken;
4164
- private baseUrl;
4165
- constructor(authToken: string, baseUrl: string);
4166
- startManualBet(data: MinesManualStartArgs): Promise<{
4167
- success: true;
4168
- data: any;
4169
- error?: undefined;
4170
- } | {
4171
- success: false;
4172
- error: string;
4173
- data?: undefined;
4174
- }>;
4175
- getActiveBet(): Promise<{
4176
- success: false;
4177
- error: string;
4178
- data?: undefined;
4179
- } | {
4180
- success: true;
4181
- data: BetResult;
4182
- error?: undefined;
4183
- }>;
4184
- selectTile(minesNextArgs: MinesNextArgs): Promise<{
4185
- success: true;
4186
- data: BetResult;
4187
- error?: undefined;
4188
- } | {
4189
- success: false;
4190
- error: string;
4191
- data?: undefined;
4192
- }>;
4193
- cashout(): Promise<{
4194
- success: true;
4195
- data: BetResult;
4196
- error?: undefined;
4197
- } | {
4198
- success: false;
4199
- error: string;
4200
- data?: undefined;
4201
- }>;
4202
- autobetPlay(data: MinesAutoArgs): Promise<{
4203
- success: true;
4204
- data: any;
4205
- error?: undefined;
4206
- } | {
4207
- success: false;
4208
- error: string;
4209
- data?: undefined;
4210
- }>;
4211
- static getInitialState: () => MinesState;
4212
- static deriveSelectedTiles: (betActions?: Action[] | null) => number[];
4213
- static deriveMineLocations: (betActions?: Action[] | null) => number[];
4214
- static getMinesBetInfo: (betActions: Action[]) => {
4215
- selected: number[];
4216
- mines: number[];
4217
- };
4218
- static deriveOutcome: (bet?: BetResult) => MinesGameOutcome | null;
4219
- static deriveAutoOutcome: (bet?: BetResult | null) => MinesGameOutcome | null;
4220
- static calculateMinesMultiplier: (gemsFound: number, mines: number, edge: number) => Big$1;
4221
- static getState: (bet: BetResult) => MinesState;
4222
- }
4223
- declare class MockMinesApi {
4224
- private readonly edge;
4225
- private static activeBet;
4226
- private static minePositions;
4227
- constructor(edge: number);
4228
- startManualBet(data: MinesManualStartArgs): Promise<{
4229
- success: true;
4230
- data: BetResult;
4231
- }>;
4232
- getActiveBet(): Promise<{
4233
- success: false;
4234
- error: string;
4235
- data?: undefined;
4236
- } | {
4237
- success: true;
4238
- data: BetResult;
4239
- error?: undefined;
4240
- }>;
4241
- selectTile(data: MinesNextArgs): Promise<{
4242
- success: false;
4243
- error: string;
4244
- data?: undefined;
4245
- } | {
4246
- success: true;
4247
- data: BetResult;
4248
- error?: undefined;
4249
- }>;
4250
- cashout(): Promise<{
4251
- success: false;
4252
- error: string;
4253
- data?: undefined;
4254
- } | {
4255
- success: true;
4256
- data: BetResult;
4257
- error?: undefined;
4258
- }>;
4259
- autobetPlay(data: MinesAutoArgs): Promise<{
4260
- success: true;
4261
- data: BetResult;
4262
- }>;
4263
- private static getRandomValueInRange;
4264
- private static generateMinePositions;
4265
- private static createBetAction;
4266
- private createMockBetResult;
4267
- }
4268
- export declare class MinesGame extends GameComponent {
4269
- private minesCount;
4270
- private autobetSelectedTiles;
4271
- private minesData;
4272
- private isLoading;
4273
- private isSelectingRandomTile;
4274
- private history;
4275
- private isCheckingForSession;
4276
- private loadingTiles;
4277
- static styles: import("lit").CSSResult[];
4278
- private _minesManualEl?;
4279
- private _minesAutoEl?;
4280
- private _playSound;
4281
- private authTokenWatcher;
4282
- get isToggleDisabled(): boolean;
4283
- get areInputsDisabled(): boolean;
4284
- get isGameActive(): boolean;
4285
- get minesApi(): MinesApi | MockMinesApi;
4286
- addToHistory(multiplier: number, won: boolean, id: string): void;
4287
- getMinesActiveBet(): Promise<void>;
4288
- firstUpdated(changedProperties: Map<string | number | symbol, unknown>): Promise<void>;
4289
- protected updated(changedProperties: Map<string | number | symbol, unknown>): void;
4290
- get getMinesState(): MinesState | null;
4291
- protected executeAutobet(_autobetSettings: AutobetSettings, currentBetAmount: string): Promise<GameBetResult>;
4292
- toggleAutobet(event: AutobetToggleEvent): Promise<void>;
4293
- private minesClickHandler;
4294
- minesManualStart(): Promise<void>;
4295
- minesChooseRandomTile(): Promise<void>;
4296
- minesNext(selectedTile: number): Promise<void>;
4297
- minesCashout(): Promise<void>;
4298
- onManualOrAutoChange(): void;
4299
- onMinesCountChange(): void;
4300
- onAutobetChange(): void;
4301
- private isSpacebarDisabled;
4302
- private handleSpacebar;
4303
- private pickRandomTile;
4304
- private waitForAnimationsComplete;
4305
- constructor();
4306
- render(): import("lit-html").TemplateResult<1>;
4307
- }
4308
-
4309
- export {};