@maci-protocol/coordinator 0.0.0-ci.38fea56 → 0.0.0-ci.3b89cb8

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 (125) hide show
  1. package/README.md +18 -0
  2. package/build/scripts/generateKeypair.js +2 -2
  3. package/build/scripts/generateKeypair.js.map +1 -1
  4. package/build/tests/e2e.deploy.test.js +53 -34
  5. package/build/tests/e2e.deploy.test.js.map +1 -1
  6. package/build/tests/e2e.redis.test.d.ts +2 -0
  7. package/build/tests/e2e.redis.test.d.ts.map +1 -0
  8. package/build/tests/e2e.redis.test.js +119 -0
  9. package/build/tests/e2e.redis.test.js.map +1 -0
  10. package/build/tests/utils.d.ts.map +1 -1
  11. package/build/tests/utils.js.map +1 -1
  12. package/build/ts/app.module.d.ts.map +1 -1
  13. package/build/ts/app.module.js +4 -0
  14. package/build/ts/app.module.js.map +1 -1
  15. package/build/ts/common/__tests__/common.test.js +6 -16
  16. package/build/ts/common/__tests__/common.test.js.map +1 -1
  17. package/build/ts/common/accountAbstraction.js +2 -2
  18. package/build/ts/common/accountAbstraction.js.map +1 -1
  19. package/build/ts/common/chain.d.ts +3 -3
  20. package/build/ts/common/chain.d.ts.map +1 -1
  21. package/build/ts/common/chain.js +13 -15
  22. package/build/ts/common/chain.js.map +1 -1
  23. package/build/ts/common/coordinatorKeypair.d.ts +7 -0
  24. package/build/ts/common/coordinatorKeypair.d.ts.map +1 -0
  25. package/build/ts/common/coordinatorKeypair.js +14 -0
  26. package/build/ts/common/coordinatorKeypair.js.map +1 -0
  27. package/build/ts/common/errors.d.ts +1 -1
  28. package/build/ts/common/errors.d.ts.map +1 -1
  29. package/build/ts/common/errors.js +1 -1
  30. package/build/ts/common/errors.js.map +1 -1
  31. package/build/ts/deployer/__tests__/deployer.controller.test.js +7 -7
  32. package/build/ts/deployer/__tests__/deployer.controller.test.js.map +1 -1
  33. package/build/ts/deployer/__tests__/deployer.service.test.js +54 -8
  34. package/build/ts/deployer/__tests__/deployer.service.test.js.map +1 -1
  35. package/build/ts/deployer/__tests__/utils.d.ts +2 -6
  36. package/build/ts/deployer/__tests__/utils.d.ts.map +1 -1
  37. package/build/ts/deployer/__tests__/utils.js +4 -9
  38. package/build/ts/deployer/__tests__/utils.js.map +1 -1
  39. package/build/ts/deployer/deployer.service.d.ts +5 -6
  40. package/build/ts/deployer/deployer.service.d.ts.map +1 -1
  41. package/build/ts/deployer/deployer.service.js +181 -53
  42. package/build/ts/deployer/deployer.service.js.map +1 -1
  43. package/build/ts/deployer/types.d.ts +16 -13
  44. package/build/ts/deployer/types.d.ts.map +1 -1
  45. package/build/ts/file/file.service.d.ts +1 -1
  46. package/build/ts/file/file.service.d.ts.map +1 -1
  47. package/build/ts/file/file.service.js +2 -2
  48. package/build/ts/file/file.service.js.map +1 -1
  49. package/build/ts/health/__tests__/health.controller.test.d.ts +2 -0
  50. package/build/ts/health/__tests__/health.controller.test.d.ts.map +1 -0
  51. package/build/ts/health/__tests__/health.controller.test.js +28 -0
  52. package/build/ts/health/__tests__/health.controller.test.js.map +1 -0
  53. package/build/ts/health/__tests__/health.service.test.d.ts +2 -0
  54. package/build/ts/health/__tests__/health.service.test.d.ts.map +1 -0
  55. package/build/ts/health/__tests__/health.service.test.js +88 -0
  56. package/build/ts/health/__tests__/health.service.test.js.map +1 -0
  57. package/build/ts/health/health.controller.d.ts +16 -0
  58. package/build/ts/health/health.controller.d.ts.map +1 -0
  59. package/build/ts/health/health.controller.js +43 -0
  60. package/build/ts/health/health.controller.js.map +1 -0
  61. package/build/ts/health/health.module.d.ts +3 -0
  62. package/build/ts/health/health.module.d.ts.map +1 -0
  63. package/build/ts/health/health.module.js +22 -0
  64. package/build/ts/health/health.module.js.map +1 -0
  65. package/build/ts/health/health.service.d.ts +42 -0
  66. package/build/ts/health/health.service.d.ts.map +1 -0
  67. package/build/ts/health/health.service.js +182 -0
  68. package/build/ts/health/health.service.js.map +1 -0
  69. package/build/ts/health/types.d.ts +83 -0
  70. package/build/ts/health/types.d.ts.map +1 -0
  71. package/build/ts/health/types.js +2 -0
  72. package/build/ts/health/types.js.map +1 -0
  73. package/build/ts/proof/__tests__/proof.controller.test.js +0 -1
  74. package/build/ts/proof/__tests__/proof.controller.test.js.map +1 -1
  75. package/build/ts/proof/__tests__/proof.gateway.test.js +0 -1
  76. package/build/ts/proof/__tests__/proof.gateway.test.js.map +1 -1
  77. package/build/ts/proof/__tests__/proof.service.test.js +31 -72
  78. package/build/ts/proof/__tests__/proof.service.test.js.map +1 -1
  79. package/build/ts/proof/dto.d.ts +0 -4
  80. package/build/ts/proof/dto.d.ts.map +1 -1
  81. package/build/ts/proof/dto.js +1 -16
  82. package/build/ts/proof/dto.js.map +1 -1
  83. package/build/ts/proof/proof.controller.d.ts.map +1 -1
  84. package/build/ts/proof/proof.controller.js +1 -4
  85. package/build/ts/proof/proof.controller.js.map +1 -1
  86. package/build/ts/proof/proof.service.d.ts +2 -4
  87. package/build/ts/proof/proof.service.d.ts.map +1 -1
  88. package/build/ts/proof/proof.service.js +16 -18
  89. package/build/ts/proof/proof.service.js.map +1 -1
  90. package/build/ts/proof/types.d.ts +1 -4
  91. package/build/ts/proof/types.d.ts.map +1 -1
  92. package/build/ts/redis/__tests__/redis.service.test.d.ts +2 -0
  93. package/build/ts/redis/__tests__/redis.service.test.d.ts.map +1 -0
  94. package/build/ts/redis/__tests__/redis.service.test.js +149 -0
  95. package/build/ts/redis/__tests__/redis.service.test.js.map +1 -0
  96. package/build/ts/redis/redis.module.d.ts +3 -0
  97. package/build/ts/redis/redis.module.d.ts.map +1 -0
  98. package/build/ts/redis/redis.module.js +18 -0
  99. package/build/ts/redis/redis.module.js.map +1 -0
  100. package/build/ts/redis/redis.service.d.ts +52 -0
  101. package/build/ts/redis/redis.service.d.ts.map +1 -0
  102. package/build/ts/redis/redis.service.js +97 -0
  103. package/build/ts/redis/redis.service.js.map +1 -0
  104. package/build/ts/redis/types.d.ts +54 -0
  105. package/build/ts/redis/types.d.ts.map +1 -0
  106. package/build/ts/redis/types.js +2 -0
  107. package/build/ts/redis/types.js.map +1 -0
  108. package/build/ts/redis/utils.d.ts +20 -0
  109. package/build/ts/redis/utils.d.ts.map +1 -0
  110. package/build/ts/redis/utils.js +27 -0
  111. package/build/ts/redis/utils.js.map +1 -0
  112. package/build/ts/sessionKeys/__tests__/sessionKeys.controller.test.js +2 -2
  113. package/build/ts/sessionKeys/__tests__/sessionKeys.controller.test.js.map +1 -1
  114. package/build/ts/subgraph/__tests__/subgraph.service.test.js +2 -3
  115. package/build/ts/subgraph/__tests__/subgraph.service.test.js.map +1 -1
  116. package/build/ts/subgraph/subgraph.service.d.ts +4 -0
  117. package/build/ts/subgraph/subgraph.service.d.ts.map +1 -1
  118. package/build/ts/subgraph/subgraph.service.js +16 -5
  119. package/build/ts/subgraph/subgraph.service.js.map +1 -1
  120. package/build/tsconfig.build.tsbuildinfo +1 -1
  121. package/package.json +32 -31
  122. package/build/tests/e2e.aa.test.d.ts +0 -2
  123. package/build/tests/e2e.aa.test.d.ts.map +0 -1
  124. package/build/tests/e2e.aa.test.js +0 -98
  125. package/build/tests/e2e.aa.test.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.