Third party script used to verify games on crash game.
We made the decision to update Crash using a salted hash as requested by our players in order to provide the most randomized and fair results possible after Bet # 2561902. For further details, please visit https://bitcointalk.org/index.php?topic=5256606
+
We made the decision to update Crash using a salted hash as requested by our players in order to provide the most randomized and fair results possible after Bet # 5282960. For further details, please visit https://bitcointalk.org/index.php?topic=5416694
@@ -100,7 +101,7 @@
Third party script used to verify games on crash game.
-
+
@@ -216,8 +217,12 @@
Third party script used to verify games on crash game.
}
};
var hash_url = window.location.search
- if ((/nosalt/).test(hash_url)) {
+ const query = new URLSearchParams(location.search);
+ const version = query.get('v');
+ if (version === 'v1') {
$('#game_salt_input').val('');
+ } else if (version === 'v2') {
+ $('#game_salt_input').val('0000000000000000000301e2801a9a9598bfb114e574a91a887f2132f33047e6');
}
if ((/hash=/).test(hash_url)) {
var hash = hash_url.match(/hash=[0-9a-zA-z]+/)[0].replace(/hash=/, '');
@@ -236,4 +241,4 @@
Third party script used to verify games on crash game.