@maci-protocol/coordinator 0.0.0-ci.e0aedb2 → 0.0.0-ci.e15f6a5

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