-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
33 lines (33 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "wax-orng",
"version": "2.0.0",
"description": "- Is open source and is a blockchain-native service that developers can easily integrate into their dApps. - Is based on the [Signidice algorithm](https://github.com/gluk256/misc/blob/master/rng4ethereum/signidice.md) and RSA verification. Signidice was chosen for its excellent randomization and non-gameablity characteristics, in addition to yielding a cleaner workflow for dApp developers and being provably fair. RSA verification ensures uniqueness of the signature and removes the ability for the results to be manipulated (if any other type of signing algorithm were used, it would allow many valid signatures for the same signing_value which could result in manipulation). - Can easily be established as provably fair. The self-verifying WAX RNG Native Blockchain Service confirms that the RSA signature that comes back from the WAX RNG oracle is valid and authentic before being utilized by the dApp. When dApp customers can easily establish fairness, they have a higher degree of confidence in using the dApp.",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"crypto": "^1.0.1",
"jest": "^25.1.0",
"node-rsa": "^1.1.1",
"int64-buffer": "^1.0.1"
},
"devDependencies": {
"prettier": "^2.7.1",
"qtest-js": "1.0.0"
},
"scripts": {
"test": "jest",
"prettier": "prettier --single-quote --trailing-comma es5 --write **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worldwide-asset-exchange/wax-orng.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/worldwide-asset-exchange/wax-orng/issues"
},
"homepage": "https://github.com/worldwide-asset-exchange/wax-orng#readme"
}