quantum-coin-js-sdk 1.0.12 → 1.0.13
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/example/README.md +4 -0
- package/example/package-lock.json +9 -9
- package/package.json +2 -2
package/example/README.md
CHANGED
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Example for using Quantum Coin SDK
|
|
4
4
|
|
|
5
|
+
Requires Node.js version v20.18.1 or higher
|
|
6
|
+
|
|
5
7
|
To run the project:
|
|
6
8
|
|
|
7
9
|
npm install
|
|
8
10
|
|
|
9
11
|
|
|
10
12
|
node example.js
|
|
13
|
+
|
|
14
|
+
The example contains many async API calls, hence you might notice that the log output will be skewed.
|
|
@@ -80,19 +80,19 @@
|
|
|
80
80
|
"node": ">=14.0.0"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"node_modules/pqc-js-sdk": {
|
|
84
|
-
"version": "1.0.0",
|
|
85
|
-
"resolved": "https://registry.npmjs.org/pqc-js-sdk/-/pqc-js-sdk-1.0.0.tgz",
|
|
86
|
-
"integrity": "sha512-7Q5YlFvaXoP+MK+yn4KH4MYvJDkyGoGUU/zKYsRxR1mVqddqGUsGvz2JTsfH5B/Gkk97gMMh3PQ7MmkM8iJA5Q=="
|
|
87
|
-
},
|
|
88
83
|
"node_modules/quantum-coin-js-sdk": {
|
|
89
|
-
"version": "1.0.
|
|
90
|
-
"resolved": "https://registry.npmjs.org/quantum-coin-js-sdk/-/quantum-coin-js-sdk-1.0.
|
|
91
|
-
"integrity": "sha512-
|
|
84
|
+
"version": "1.0.12",
|
|
85
|
+
"resolved": "https://registry.npmjs.org/quantum-coin-js-sdk/-/quantum-coin-js-sdk-1.0.12.tgz",
|
|
86
|
+
"integrity": "sha512-6tL2h49j4Lqb4+80/V28pdulj9/fC9LNeolzxw3AujvZUClj3b5XUF9i2cWOmxTsHF3IGN4qSDghITXoKbhTag==",
|
|
92
87
|
"dependencies": {
|
|
93
|
-
"pqc-js-sdk": "^1.0.0"
|
|
88
|
+
"quantum-coin-pqc-js-sdk": "^1.0.0"
|
|
94
89
|
}
|
|
95
90
|
},
|
|
91
|
+
"node_modules/quantum-coin-pqc-js-sdk": {
|
|
92
|
+
"version": "1.0.0",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/quantum-coin-pqc-js-sdk/-/quantum-coin-pqc-js-sdk-1.0.0.tgz",
|
|
94
|
+
"integrity": "sha512-SPRDhX6JHV0VJmIWB20S9YTH3oCQww7YoMjgt/4Ftt0U8yNVmUQOL79b/cknMPDd/zMZLAedmd3z8hs+Z8shig=="
|
|
95
|
+
},
|
|
96
96
|
"node_modules/tslib": {
|
|
97
97
|
"version": "2.7.0",
|
|
98
98
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantum-coin-js-sdk",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Quantum Coin SDK in JavaScript",
|
|
3
|
+
"version": "1.0.13",
|
|
4
|
+
"description": "Quantum Coin - Q SDK in JavaScript",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|