@0xward/proofofalpha-core 1.0.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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +2 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # proofofalpha-core
2
+ On-chain alpha signals processing core metrics.
3
+
4
+ Published by 0xward via Termux.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ function calculateAlpha(score) { return score * 1.618; }
2
+ module.exports = { calculateAlpha };
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@0xward/proofofalpha-core",
3
+ "version": "1.0.0",
4
+ "description": "On-chain alpha signals processing core metrics.",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "0xward",
8
+ "web3",
9
+ "utility"
10
+ ],
11
+ "author": "0xward",
12
+ "license": "MIT",
13
+ "publishConfig": {
14
+ "access": "public"
15
+ }
16
+ }