@witnet/sdk 1.2.2 → 1.2.3

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 (53) hide show
  1. package/.env_witnet +2 -1
  2. package/dist/package.json +4 -3
  3. package/dist/src/bin/helpers.js +1 -1
  4. package/dist/src/index.js +1 -1
  5. package/dist/src/lib/crypto/account.js +1 -1
  6. package/dist/src/lib/crypto/coinbase.js +1 -1
  7. package/dist/src/lib/crypto/index.js +1 -1
  8. package/dist/src/lib/crypto/interfaces.js +1 -1
  9. package/dist/src/lib/crypto/payloads/DataRequestPayload.js +1 -1
  10. package/dist/src/lib/crypto/payloads/StakePayload.js +1 -1
  11. package/dist/src/lib/crypto/payloads/UnstakePayload.js +1 -1
  12. package/dist/src/lib/crypto/payloads/ValueTransferPayload.js +1 -1
  13. package/dist/src/lib/crypto/payloads.js +1 -1
  14. package/dist/src/lib/crypto/signer.js +1 -1
  15. package/dist/src/lib/crypto/transmitters/DataRequests.js +1 -1
  16. package/dist/src/lib/crypto/transmitters/StakeDeposits.js +1 -1
  17. package/dist/src/lib/crypto/transmitters/StakeWithdrawals.js +1 -1
  18. package/dist/src/lib/crypto/transmitters/ValueTransfers.js +1 -1
  19. package/dist/src/lib/crypto/transmitters.js +1 -1
  20. package/dist/src/lib/crypto/types.js +1 -1
  21. package/dist/src/lib/crypto/utils.js +1 -1
  22. package/dist/src/lib/crypto/wallet.js +1 -1
  23. package/dist/src/lib/index.js +1 -1
  24. package/dist/src/lib/radon/ccdr/eth.js +1 -1
  25. package/dist/src/lib/radon/ccdr/index.js +1 -1
  26. package/dist/src/lib/radon/ccdr/wit.js +1 -1
  27. package/dist/src/lib/radon/filters.js +1 -1
  28. package/dist/src/lib/radon/index.js +1 -1
  29. package/dist/src/lib/radon/reducers.js +1 -1
  30. package/dist/src/lib/radon/types.js +1 -1
  31. package/dist/src/lib/radon/utils.d.ts.map +1 -1
  32. package/dist/src/lib/radon/utils.js +1 -1
  33. package/dist/src/lib/rest/kermit.d.ts.map +1 -1
  34. package/dist/src/lib/rest/kermit.js +2 -4
  35. package/dist/src/lib/rest/types.js +1 -1
  36. package/dist/src/lib/rpc/index.js +1 -1
  37. package/dist/src/lib/rpc/nodes.js +1 -1
  38. package/dist/src/lib/rpc/provider.js +1 -1
  39. package/dist/src/lib/rpc/types.js +1 -1
  40. package/dist/src/lib/types.js +1 -1
  41. package/dist/src/lib/utils.js +1 -1
  42. package/package.json +4 -3
  43. package/scripts/clean.cjs +21 -21
  44. package/scripts/postinstall.cjs +9 -9
  45. package/src/bin/bots/watcher.cjs +365 -354
  46. package/src/bin/cli/history.cjs +31 -31
  47. package/src/bin/cli/inspect.js +581 -581
  48. package/src/bin/cli/network.js +695 -695
  49. package/src/bin/cli/nodes.js +424 -424
  50. package/src/bin/cli/radon.js +1124 -1122
  51. package/src/bin/cli/wallet.js +1362 -1362
  52. package/src/bin/helpers.js +974 -974
  53. package/src/bin/index.js +328 -328
@@ -1,31 +1,31 @@
1
- /// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2
- /// CLI SUBMODULE CONSTANTS ===========================================================================================
3
-
4
- module.exports = {
5
- flags: {
6
- start: {
7
- hint: "Epoch from which search starts (default: -2048).",
8
- param: ":epoch",
9
- },
10
- end: {
11
- hint: "Epoch on which search ends (default: -1).",
12
- param: ":epoch",
13
- },
14
- limit: { hint: "Limit output records (default: 100).", param: ":number" },
15
- },
16
- router: {
17
- miners: {
18
- hint: "Report most successful miners.",
19
- },
20
- requests: {
21
- hint: "Report most successful data requests.",
22
- },
23
- witnesses: {
24
- hint: "Report most successful witnesses.",
25
- },
26
- },
27
- subcommands: {},
28
- };
29
-
30
- /// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
31
- /// CLI SUBMODULE COMMANDS ============================================================================================
1
+ /// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2
+ /// CLI SUBMODULE CONSTANTS ===========================================================================================
3
+
4
+ module.exports = {
5
+ flags: {
6
+ start: {
7
+ hint: "Epoch from which search starts (default: -2048).",
8
+ param: ":epoch",
9
+ },
10
+ end: {
11
+ hint: "Epoch on which search ends (default: -1).",
12
+ param: ":epoch",
13
+ },
14
+ limit: { hint: "Limit output records (default: 100).", param: ":number" },
15
+ },
16
+ router: {
17
+ miners: {
18
+ hint: "Report most successful miners.",
19
+ },
20
+ requests: {
21
+ hint: "Report most successful data requests.",
22
+ },
23
+ witnesses: {
24
+ hint: "Report most successful witnesses.",
25
+ },
26
+ },
27
+ subcommands: {},
28
+ };
29
+
30
+ /// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
31
+ /// CLI SUBMODULE COMMANDS ============================================================================================