@rolly-dev/wasm-signer 1.20.0 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/rolly_wasm_signer.d.ts +26 -0
- package/dist/node/rolly_wasm_signer.js +58 -0
- package/dist/node/rolly_wasm_signer_bg.wasm +0 -0
- package/dist/node/rolly_wasm_signer_bg.wasm.d.ts +3 -0
- package/dist/node-inline/rolly_wasm_signer.d.ts +26 -0
- package/dist/node-inline/rolly_wasm_signer.js +59 -1
- package/dist/node-inline/rolly_wasm_signer.mjs +57 -2
- package/dist/node-inline/rolly_wasm_signer_bg.wasm.d.ts +3 -0
- package/dist/web/rolly_wasm_signer.d.ts +29 -0
- package/dist/web/rolly_wasm_signer.js +55 -0
- package/dist/web/rolly_wasm_signer_bg.wasm +0 -0
- package/dist/web/rolly_wasm_signer_bg.wasm.d.ts +3 -0
- package/js/browser.mjs +3 -0
- package/js/index.d.ts +3 -0
- package/js/node-inline.cjs +3 -0
- package/js/node-inline.mjs +3 -0
- package/js/node.cjs +3 -0
- package/js/node.mjs +3 -0
- package/js/react.mjs +6 -0
- package/package.json +1 -1
|
@@ -5,9 +5,11 @@ export const amount_split: (a: number, b: bigint) => void;
|
|
|
5
5
|
export const coinflip_multiplier_x10000: () => number;
|
|
6
6
|
export const coinflip_rtp_percent: () => number;
|
|
7
7
|
export const compute_address_hash: (a: number, b: number, c: number) => void;
|
|
8
|
+
export const compute_crash_point: (a: number, b: number) => number;
|
|
8
9
|
export const compute_drawn_keno: (a: number, b: number, c: number) => void;
|
|
9
10
|
export const compute_multi_dice: (a: number) => bigint;
|
|
10
11
|
export const compute_payout_coinflip: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
12
|
+
export const compute_payout_crash: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
11
13
|
export const compute_payout_dice: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number) => void;
|
|
12
14
|
export const compute_payout_keno: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number) => void;
|
|
13
15
|
export const compute_payout_limbo: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
@@ -48,6 +50,7 @@ export const seed_hash_truncated: (a: number, b: number, c: number) => void;
|
|
|
48
50
|
export const session_public_key: (a: number, b: number, c: number, d: bigint) => void;
|
|
49
51
|
export const string_to_user_seed: (a: number, b: number, c: number) => void;
|
|
50
52
|
export const string_to_user_seed_hex: (a: number, b: number, c: number) => void;
|
|
53
|
+
export const crash_rtp_percent: () => number;
|
|
51
54
|
export const dice_rtp_percent: () => number;
|
|
52
55
|
export const keno_max_picks: () => number;
|
|
53
56
|
export const limbo_rtp_percent: () => number;
|
|
@@ -28,6 +28,14 @@ export function coinflip_rtp_percent(): number;
|
|
|
28
28
|
*/
|
|
29
29
|
export function compute_address_hash(address_hex: string): BigUint64Array;
|
|
30
30
|
|
|
31
|
+
/**
|
|
32
|
+
* Extract crash point (×100) from Poseidon2 random output.
|
|
33
|
+
*
|
|
34
|
+
* `random` must be exactly 4 elements.
|
|
35
|
+
* Returns the clamped crash multiplier ×100 (100..=1_000_000, i.e. 1.00x..10000.00x).
|
|
36
|
+
*/
|
|
37
|
+
export function compute_crash_point(random: BigUint64Array): number;
|
|
38
|
+
|
|
31
39
|
/**
|
|
32
40
|
* Extract the 10 drawn numbers from Poseidon2 random output using
|
|
33
41
|
* the combinatorial number system: `combo_index = random[0] % C(40,10)`.
|
|
@@ -56,6 +64,19 @@ export function compute_multi_dice(win_numbers: number): bigint;
|
|
|
56
64
|
*/
|
|
57
65
|
export function compute_payout_coinflip(random: BigUint64Array, bet_atomic: bigint, prediction: number): BigUint64Array;
|
|
58
66
|
|
|
67
|
+
/**
|
|
68
|
+
* Full crash payout computation — pure integer arithmetic, zero floats.
|
|
69
|
+
*
|
|
70
|
+
* `random`: 4 Goldilocks field elements (Poseidon2 output of server_seed).
|
|
71
|
+
* `bet_atomic`: bet in atomic units (1 USDT = 1_000_000).
|
|
72
|
+
* `cashout_x100`: multiplier at which the user cashed out (×100).
|
|
73
|
+
* - 0 = user did NOT cash out (loss).
|
|
74
|
+
* - 100..=1_000_000 = user stopped at this multiplier.
|
|
75
|
+
*
|
|
76
|
+
* Returns `BigUint64Array[4]`: `[win_amount, crash_x100, is_win (0|1), multiplier×10000]`.
|
|
77
|
+
*/
|
|
78
|
+
export function compute_payout_crash(random: BigUint64Array, bet_atomic: bigint, cashout_x100: number): BigUint64Array;
|
|
79
|
+
|
|
59
80
|
/**
|
|
60
81
|
* Full dice payout computation — pure integer arithmetic, zero floats.
|
|
61
82
|
*
|
|
@@ -185,6 +206,11 @@ export function compute_server_seed_hash(server_seed: BigUint64Array): BigUint64
|
|
|
185
206
|
*/
|
|
186
207
|
export function compute_user_seed_binding(game_id: number, bet: bigint, pred_hash: BigUint64Array, secret: BigUint64Array): BigUint64Array;
|
|
187
208
|
|
|
209
|
+
/**
|
|
210
|
+
* Crash RTP percent (99). Canonical source for backend/frontend.
|
|
211
|
+
*/
|
|
212
|
+
export function crash_rtp_percent(): number;
|
|
213
|
+
|
|
188
214
|
/**
|
|
189
215
|
* Derive a session key from 32 bytes of entropy (e.g. MetaMask signature).
|
|
190
216
|
*
|
|
@@ -458,9 +484,11 @@ export interface InitOutput {
|
|
|
458
484
|
readonly coinflip_multiplier_x10000: () => number;
|
|
459
485
|
readonly coinflip_rtp_percent: () => number;
|
|
460
486
|
readonly compute_address_hash: (a: number, b: number, c: number) => void;
|
|
487
|
+
readonly compute_crash_point: (a: number, b: number) => number;
|
|
461
488
|
readonly compute_drawn_keno: (a: number, b: number, c: number) => void;
|
|
462
489
|
readonly compute_multi_dice: (a: number) => bigint;
|
|
463
490
|
readonly compute_payout_coinflip: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
491
|
+
readonly compute_payout_crash: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
464
492
|
readonly compute_payout_dice: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number) => void;
|
|
465
493
|
readonly compute_payout_keno: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number) => void;
|
|
466
494
|
readonly compute_payout_limbo: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
@@ -501,6 +529,7 @@ export interface InitOutput {
|
|
|
501
529
|
readonly session_public_key: (a: number, b: number, c: number, d: bigint) => void;
|
|
502
530
|
readonly string_to_user_seed: (a: number, b: number, c: number) => void;
|
|
503
531
|
readonly string_to_user_seed_hex: (a: number, b: number, c: number) => void;
|
|
532
|
+
readonly crash_rtp_percent: () => number;
|
|
504
533
|
readonly dice_rtp_percent: () => number;
|
|
505
534
|
readonly keno_max_picks: () => number;
|
|
506
535
|
readonly limbo_rtp_percent: () => number;
|
|
@@ -65,6 +65,21 @@ export function compute_address_hash(address_hex) {
|
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
+
/**
|
|
69
|
+
* Extract crash point (×100) from Poseidon2 random output.
|
|
70
|
+
*
|
|
71
|
+
* `random` must be exactly 4 elements.
|
|
72
|
+
* Returns the clamped crash multiplier ×100 (100..=1_000_000, i.e. 1.00x..10000.00x).
|
|
73
|
+
* @param {BigUint64Array} random
|
|
74
|
+
* @returns {number}
|
|
75
|
+
*/
|
|
76
|
+
export function compute_crash_point(random) {
|
|
77
|
+
const ptr0 = passArray64ToWasm0(random, wasm.__wbindgen_export3);
|
|
78
|
+
const len0 = WASM_VECTOR_LEN;
|
|
79
|
+
const ret = wasm.compute_crash_point(ptr0, len0);
|
|
80
|
+
return ret >>> 0;
|
|
81
|
+
}
|
|
82
|
+
|
|
68
83
|
/**
|
|
69
84
|
* Extract the 10 drawn numbers from Poseidon2 random output using
|
|
70
85
|
* the combinatorial number system: `combo_index = random[0] % C(40,10)`.
|
|
@@ -132,6 +147,37 @@ export function compute_payout_coinflip(random, bet_atomic, prediction) {
|
|
|
132
147
|
}
|
|
133
148
|
}
|
|
134
149
|
|
|
150
|
+
/**
|
|
151
|
+
* Full crash payout computation — pure integer arithmetic, zero floats.
|
|
152
|
+
*
|
|
153
|
+
* `random`: 4 Goldilocks field elements (Poseidon2 output of server_seed).
|
|
154
|
+
* `bet_atomic`: bet in atomic units (1 USDT = 1_000_000).
|
|
155
|
+
* `cashout_x100`: multiplier at which the user cashed out (×100).
|
|
156
|
+
* - 0 = user did NOT cash out (loss).
|
|
157
|
+
* - 100..=1_000_000 = user stopped at this multiplier.
|
|
158
|
+
*
|
|
159
|
+
* Returns `BigUint64Array[4]`: `[win_amount, crash_x100, is_win (0|1), multiplier×10000]`.
|
|
160
|
+
* @param {BigUint64Array} random
|
|
161
|
+
* @param {bigint} bet_atomic
|
|
162
|
+
* @param {number} cashout_x100
|
|
163
|
+
* @returns {BigUint64Array}
|
|
164
|
+
*/
|
|
165
|
+
export function compute_payout_crash(random, bet_atomic, cashout_x100) {
|
|
166
|
+
try {
|
|
167
|
+
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
168
|
+
const ptr0 = passArray64ToWasm0(random, wasm.__wbindgen_export3);
|
|
169
|
+
const len0 = WASM_VECTOR_LEN;
|
|
170
|
+
wasm.compute_payout_crash(retptr, ptr0, len0, bet_atomic, cashout_x100);
|
|
171
|
+
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
172
|
+
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
173
|
+
var v2 = getArrayU64FromWasm0(r0, r1).slice();
|
|
174
|
+
wasm.__wbindgen_export2(r0, r1 * 8, 8);
|
|
175
|
+
return v2;
|
|
176
|
+
} finally {
|
|
177
|
+
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
135
181
|
/**
|
|
136
182
|
* Full dice payout computation — pure integer arithmetic, zero floats.
|
|
137
183
|
*
|
|
@@ -442,6 +488,15 @@ export function compute_user_seed_binding(game_id, bet, pred_hash, secret) {
|
|
|
442
488
|
}
|
|
443
489
|
}
|
|
444
490
|
|
|
491
|
+
/**
|
|
492
|
+
* Crash RTP percent (99). Canonical source for backend/frontend.
|
|
493
|
+
* @returns {number}
|
|
494
|
+
*/
|
|
495
|
+
export function crash_rtp_percent() {
|
|
496
|
+
const ret = wasm.coinflip_rtp_percent();
|
|
497
|
+
return ret >>> 0;
|
|
498
|
+
}
|
|
499
|
+
|
|
445
500
|
/**
|
|
446
501
|
* Derive a session key from 32 bytes of entropy (e.g. MetaMask signature).
|
|
447
502
|
*
|
|
Binary file
|
|
@@ -5,9 +5,11 @@ export const amount_split: (a: number, b: bigint) => void;
|
|
|
5
5
|
export const coinflip_multiplier_x10000: () => number;
|
|
6
6
|
export const coinflip_rtp_percent: () => number;
|
|
7
7
|
export const compute_address_hash: (a: number, b: number, c: number) => void;
|
|
8
|
+
export const compute_crash_point: (a: number, b: number) => number;
|
|
8
9
|
export const compute_drawn_keno: (a: number, b: number, c: number) => void;
|
|
9
10
|
export const compute_multi_dice: (a: number) => bigint;
|
|
10
11
|
export const compute_payout_coinflip: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
12
|
+
export const compute_payout_crash: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
11
13
|
export const compute_payout_dice: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number) => void;
|
|
12
14
|
export const compute_payout_keno: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number) => void;
|
|
13
15
|
export const compute_payout_limbo: (a: number, b: number, c: number, d: bigint, e: number) => void;
|
|
@@ -48,6 +50,7 @@ export const seed_hash_truncated: (a: number, b: number, c: number) => void;
|
|
|
48
50
|
export const session_public_key: (a: number, b: number, c: number, d: bigint) => void;
|
|
49
51
|
export const string_to_user_seed: (a: number, b: number, c: number) => void;
|
|
50
52
|
export const string_to_user_seed_hex: (a: number, b: number, c: number) => void;
|
|
53
|
+
export const crash_rtp_percent: () => number;
|
|
51
54
|
export const dice_rtp_percent: () => number;
|
|
52
55
|
export const keno_max_picks: () => number;
|
|
53
56
|
export const limbo_rtp_percent: () => number;
|
package/js/browser.mjs
CHANGED
|
@@ -5,9 +5,11 @@ export {
|
|
|
5
5
|
coinflip_multiplier_x10000,
|
|
6
6
|
coinflip_rtp_percent,
|
|
7
7
|
compute_address_hash,
|
|
8
|
+
compute_crash_point,
|
|
8
9
|
compute_drawn_keno,
|
|
9
10
|
compute_multi_dice,
|
|
10
11
|
compute_payout_coinflip,
|
|
12
|
+
compute_payout_crash,
|
|
11
13
|
compute_payout_dice,
|
|
12
14
|
compute_payout_keno,
|
|
13
15
|
compute_payout_limbo,
|
|
@@ -20,6 +22,7 @@ export {
|
|
|
20
22
|
compute_roll_plinko,
|
|
21
23
|
compute_server_seed_hash,
|
|
22
24
|
compute_user_seed_binding,
|
|
25
|
+
crash_rtp_percent,
|
|
23
26
|
derive_session_key,
|
|
24
27
|
dice_rtp_percent,
|
|
25
28
|
encode_keno_selected,
|
package/js/index.d.ts
CHANGED
|
@@ -3,9 +3,11 @@ export {
|
|
|
3
3
|
coinflip_multiplier_x10000,
|
|
4
4
|
coinflip_rtp_percent,
|
|
5
5
|
compute_address_hash,
|
|
6
|
+
compute_crash_point,
|
|
6
7
|
compute_drawn_keno,
|
|
7
8
|
compute_multi_dice,
|
|
8
9
|
compute_payout_coinflip,
|
|
10
|
+
compute_payout_crash,
|
|
9
11
|
compute_payout_dice,
|
|
10
12
|
compute_payout_keno,
|
|
11
13
|
compute_payout_limbo,
|
|
@@ -18,6 +20,7 @@ export {
|
|
|
18
20
|
compute_roll_plinko,
|
|
19
21
|
compute_server_seed_hash,
|
|
20
22
|
compute_user_seed_binding,
|
|
23
|
+
crash_rtp_percent,
|
|
21
24
|
derive_session_key,
|
|
22
25
|
dice_rtp_percent,
|
|
23
26
|
encode_keno_selected,
|
package/js/node-inline.cjs
CHANGED
|
@@ -7,9 +7,11 @@ module.exports = {
|
|
|
7
7
|
coinflip_multiplier_x10000: wasm.coinflip_multiplier_x10000,
|
|
8
8
|
coinflip_rtp_percent: wasm.coinflip_rtp_percent,
|
|
9
9
|
compute_address_hash: wasm.compute_address_hash,
|
|
10
|
+
compute_crash_point: wasm.compute_crash_point,
|
|
10
11
|
compute_drawn_keno: wasm.compute_drawn_keno,
|
|
11
12
|
compute_multi_dice: wasm.compute_multi_dice,
|
|
12
13
|
compute_payout_coinflip: wasm.compute_payout_coinflip,
|
|
14
|
+
compute_payout_crash: wasm.compute_payout_crash,
|
|
13
15
|
compute_payout_dice: wasm.compute_payout_dice,
|
|
14
16
|
compute_payout_keno: wasm.compute_payout_keno,
|
|
15
17
|
compute_payout_limbo: wasm.compute_payout_limbo,
|
|
@@ -22,6 +24,7 @@ module.exports = {
|
|
|
22
24
|
compute_roll_plinko: wasm.compute_roll_plinko,
|
|
23
25
|
compute_server_seed_hash: wasm.compute_server_seed_hash,
|
|
24
26
|
compute_user_seed_binding: wasm.compute_user_seed_binding,
|
|
27
|
+
crash_rtp_percent: wasm.crash_rtp_percent,
|
|
25
28
|
derive_session_key: wasm.derive_session_key,
|
|
26
29
|
dice_rtp_percent: wasm.dice_rtp_percent,
|
|
27
30
|
encode_keno_selected: wasm.encode_keno_selected,
|
package/js/node-inline.mjs
CHANGED
|
@@ -3,9 +3,11 @@ export {
|
|
|
3
3
|
coinflip_multiplier_x10000,
|
|
4
4
|
coinflip_rtp_percent,
|
|
5
5
|
compute_address_hash,
|
|
6
|
+
compute_crash_point,
|
|
6
7
|
compute_drawn_keno,
|
|
7
8
|
compute_multi_dice,
|
|
8
9
|
compute_payout_coinflip,
|
|
10
|
+
compute_payout_crash,
|
|
9
11
|
compute_payout_dice,
|
|
10
12
|
compute_payout_keno,
|
|
11
13
|
compute_payout_limbo,
|
|
@@ -18,6 +20,7 @@ export {
|
|
|
18
20
|
compute_roll_plinko,
|
|
19
21
|
compute_server_seed_hash,
|
|
20
22
|
compute_user_seed_binding,
|
|
23
|
+
crash_rtp_percent,
|
|
21
24
|
derive_session_key,
|
|
22
25
|
dice_rtp_percent,
|
|
23
26
|
encode_keno_selected,
|
package/js/node.cjs
CHANGED
|
@@ -7,9 +7,11 @@ module.exports = {
|
|
|
7
7
|
coinflip_multiplier_x10000: wasm.coinflip_multiplier_x10000,
|
|
8
8
|
coinflip_rtp_percent: wasm.coinflip_rtp_percent,
|
|
9
9
|
compute_address_hash: wasm.compute_address_hash,
|
|
10
|
+
compute_crash_point: wasm.compute_crash_point,
|
|
10
11
|
compute_drawn_keno: wasm.compute_drawn_keno,
|
|
11
12
|
compute_multi_dice: wasm.compute_multi_dice,
|
|
12
13
|
compute_payout_coinflip: wasm.compute_payout_coinflip,
|
|
14
|
+
compute_payout_crash: wasm.compute_payout_crash,
|
|
13
15
|
compute_payout_dice: wasm.compute_payout_dice,
|
|
14
16
|
compute_payout_keno: wasm.compute_payout_keno,
|
|
15
17
|
compute_payout_limbo: wasm.compute_payout_limbo,
|
|
@@ -22,6 +24,7 @@ module.exports = {
|
|
|
22
24
|
compute_roll_plinko: wasm.compute_roll_plinko,
|
|
23
25
|
compute_server_seed_hash: wasm.compute_server_seed_hash,
|
|
24
26
|
compute_user_seed_binding: wasm.compute_user_seed_binding,
|
|
27
|
+
crash_rtp_percent: wasm.crash_rtp_percent,
|
|
25
28
|
derive_session_key: wasm.derive_session_key,
|
|
26
29
|
dice_rtp_percent: wasm.dice_rtp_percent,
|
|
27
30
|
encode_keno_selected: wasm.encode_keno_selected,
|
package/js/node.mjs
CHANGED
|
@@ -8,9 +8,11 @@ export const {
|
|
|
8
8
|
coinflip_multiplier_x10000,
|
|
9
9
|
coinflip_rtp_percent,
|
|
10
10
|
compute_address_hash,
|
|
11
|
+
compute_crash_point,
|
|
11
12
|
compute_drawn_keno,
|
|
12
13
|
compute_multi_dice,
|
|
13
14
|
compute_payout_coinflip,
|
|
15
|
+
compute_payout_crash,
|
|
14
16
|
compute_payout_dice,
|
|
15
17
|
compute_payout_keno,
|
|
16
18
|
compute_payout_limbo,
|
|
@@ -23,6 +25,7 @@ export const {
|
|
|
23
25
|
compute_roll_plinko,
|
|
24
26
|
compute_server_seed_hash,
|
|
25
27
|
compute_user_seed_binding,
|
|
28
|
+
crash_rtp_percent,
|
|
26
29
|
derive_session_key,
|
|
27
30
|
dice_rtp_percent,
|
|
28
31
|
encode_keno_selected,
|
package/js/react.mjs
CHANGED
|
@@ -4,9 +4,11 @@ import init, {
|
|
|
4
4
|
coinflip_multiplier_x10000,
|
|
5
5
|
coinflip_rtp_percent,
|
|
6
6
|
compute_address_hash,
|
|
7
|
+
compute_crash_point,
|
|
7
8
|
compute_drawn_keno,
|
|
8
9
|
compute_multi_dice,
|
|
9
10
|
compute_payout_coinflip,
|
|
11
|
+
compute_payout_crash,
|
|
10
12
|
compute_payout_dice,
|
|
11
13
|
compute_payout_keno,
|
|
12
14
|
compute_payout_limbo,
|
|
@@ -19,6 +21,7 @@ import init, {
|
|
|
19
21
|
compute_roll_plinko,
|
|
20
22
|
compute_server_seed_hash,
|
|
21
23
|
compute_user_seed_binding,
|
|
24
|
+
crash_rtp_percent,
|
|
22
25
|
derive_session_key,
|
|
23
26
|
dice_rtp_percent,
|
|
24
27
|
encode_keno_selected,
|
|
@@ -68,9 +71,11 @@ const fns = {
|
|
|
68
71
|
coinflip_multiplier_x10000: guard(coinflip_multiplier_x10000),
|
|
69
72
|
coinflip_rtp_percent: guard(coinflip_rtp_percent),
|
|
70
73
|
compute_address_hash: guard(compute_address_hash),
|
|
74
|
+
compute_crash_point: guard(compute_crash_point),
|
|
71
75
|
compute_drawn_keno: guard(compute_drawn_keno),
|
|
72
76
|
compute_multi_dice: guard(compute_multi_dice),
|
|
73
77
|
compute_payout_coinflip: guard(compute_payout_coinflip),
|
|
78
|
+
compute_payout_crash: guard(compute_payout_crash),
|
|
74
79
|
compute_payout_dice: guard(compute_payout_dice),
|
|
75
80
|
compute_payout_keno: guard(compute_payout_keno),
|
|
76
81
|
compute_payout_limbo: guard(compute_payout_limbo),
|
|
@@ -83,6 +88,7 @@ const fns = {
|
|
|
83
88
|
compute_roll_plinko: guard(compute_roll_plinko),
|
|
84
89
|
compute_server_seed_hash: guard(compute_server_seed_hash),
|
|
85
90
|
compute_user_seed_binding: guard(compute_user_seed_binding),
|
|
91
|
+
crash_rtp_percent: guard(crash_rtp_percent),
|
|
86
92
|
derive_session_key: guard(derive_session_key),
|
|
87
93
|
dice_rtp_percent: guard(dice_rtp_percent),
|
|
88
94
|
encode_keno_selected: guard(encode_keno_selected),
|