@agoric/zoe 0.27.0-u19.2 → 0.27.0-u20.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 (159) hide show
  1. package/bundles/bundle-contractFacet-js-meta.json +322 -327
  2. package/bundles/bundle-contractFacet.js +1 -1
  3. package/package.json +29 -29
  4. package/src/cleanProposal.d.ts +2 -0
  5. package/src/cleanProposal.d.ts.map +1 -1
  6. package/src/cleanProposal.js +4 -2
  7. package/src/contractFacet/exit.d.ts +1 -1
  8. package/src/contractFacet/exit.d.ts.map +1 -1
  9. package/src/contractFacet/offerHandlerStorage.d.ts +1 -1
  10. package/src/contractFacet/rightsConservation.d.ts.map +1 -1
  11. package/src/contractFacet/rightsConservation.js +0 -1
  12. package/src/contractFacet/types.d.ts +184 -0
  13. package/src/contractFacet/types.d.ts.map +1 -0
  14. package/src/contractFacet/{types-ambient.d.ts → types.ts} +66 -29
  15. package/src/contractFacet/vatRoot.d.ts +8 -2
  16. package/src/contractFacet/vatRoot.d.ts.map +1 -1
  17. package/src/contractFacet/vatRoot.js +5 -4
  18. package/src/contractFacet/zcfMint.d.ts +3 -2
  19. package/src/contractFacet/zcfMint.d.ts.map +1 -1
  20. package/src/contractFacet/zcfMint.js +7 -7
  21. package/src/contractFacet/zcfSeat.js +2 -2
  22. package/src/contractFacet/zcfZygote.d.ts +9 -1
  23. package/src/contractFacet/zcfZygote.d.ts.map +1 -1
  24. package/src/contractFacet/zcfZygote.js +17 -5
  25. package/src/contractSupport/atomicTransfer.d.ts +6 -0
  26. package/src/contractSupport/atomicTransfer.d.ts.map +1 -1
  27. package/src/contractSupport/atomicTransfer.js +4 -0
  28. package/src/contractSupport/bondingCurves.js +1 -1
  29. package/src/contractSupport/index.d.ts +2 -2
  30. package/src/contractSupport/index.js +2 -19
  31. package/src/contractSupport/priceAuthorityInitial.d.ts +2 -0
  32. package/src/contractSupport/priceAuthorityInitial.d.ts.map +1 -1
  33. package/src/contractSupport/priceAuthorityInitial.js +3 -1
  34. package/src/contractSupport/types-ambient.d.ts.map +1 -1
  35. package/src/contractSupport/types-ambient.js +1 -0
  36. package/src/contractSupport/zoeHelpers.d.ts +6 -1
  37. package/src/contractSupport/zoeHelpers.d.ts.map +1 -1
  38. package/src/contractSupport/zoeHelpers.js +1 -0
  39. package/src/contracts/atomicSwap.d.ts +1 -1
  40. package/src/contracts/auction/index.d.ts +3 -3
  41. package/src/contracts/automaticRefund.d.ts +3 -3
  42. package/src/contracts/autoswap.d.ts +4 -0
  43. package/src/contracts/autoswap.d.ts.map +1 -1
  44. package/src/contracts/autoswap.js +4 -0
  45. package/src/contracts/barterExchange.d.ts +2 -2
  46. package/src/contracts/callSpread/fundedCallSpread.d.ts +1 -1
  47. package/src/contracts/callSpread/pricedCallSpread.d.ts +4 -4
  48. package/src/contracts/coveredCall-durable.d.ts +1 -1
  49. package/src/contracts/coveredCall.d.ts +1 -1
  50. package/src/contracts/loan/index.d.ts +1 -1
  51. package/src/contracts/loan/types-ambient.d.ts +13 -13
  52. package/src/contracts/loan/types-ambient.d.ts.map +1 -1
  53. package/src/contracts/loan/types-ambient.js +17 -17
  54. package/src/contracts/mintPayments.d.ts +2 -2
  55. package/src/contracts/oracle.d.ts +3 -0
  56. package/src/contracts/oracle.d.ts.map +1 -1
  57. package/src/contracts/oracle.js +1 -0
  58. package/src/contracts/priceAggregator.d.ts +2 -0
  59. package/src/contracts/priceAggregator.d.ts.map +1 -1
  60. package/src/contracts/priceAggregator.js +10 -8
  61. package/src/contracts/scaledPriceAuthority.d.ts +1 -0
  62. package/src/contracts/scaledPriceAuthority.d.ts.map +1 -1
  63. package/src/contracts/scaledPriceAuthority.js +1 -0
  64. package/src/contracts/sellItems.d.ts +1 -1
  65. package/src/contracts/simpleExchange.d.ts +5 -0
  66. package/src/contracts/simpleExchange.d.ts.map +1 -1
  67. package/src/contracts/simpleExchange.js +4 -0
  68. package/src/contracts/types-ambient.d.ts +7 -7
  69. package/src/contracts/types-ambient.d.ts.map +1 -1
  70. package/src/contracts/types-ambient.js +7 -7
  71. package/src/contracts/valueVow.contract.d.ts +5 -2
  72. package/src/contracts/valueVow.contract.d.ts.map +1 -1
  73. package/src/contracts/valueVow.contract.js +1 -0
  74. package/src/instanceRecordStorage.d.ts.map +1 -1
  75. package/src/instanceRecordStorage.js +3 -1
  76. package/src/internal-types.d.ts +15 -5
  77. package/src/internal-types.d.ts.map +1 -1
  78. package/src/internal-types.js +9 -4
  79. package/src/issuerRecord.d.ts +3 -2
  80. package/src/issuerRecord.d.ts.map +1 -1
  81. package/src/issuerRecord.js +6 -2
  82. package/src/issuerStorage.d.ts +3 -2
  83. package/src/issuerStorage.d.ts.map +1 -1
  84. package/src/issuerStorage.js +6 -5
  85. package/src/typeGuards.d.ts +10 -6
  86. package/src/typeGuards.d.ts.map +1 -1
  87. package/src/typeGuards.js +7 -5
  88. package/src/types-ambient.d.ts +0 -40
  89. package/src/types-ambient.d.ts.map +1 -1
  90. package/src/types-ambient.js +4 -42
  91. package/src/types-index.d.ts +4 -0
  92. package/src/types-index.js +2 -0
  93. package/src/types.d.ts +29 -0
  94. package/src/types.d.ts.map +1 -0
  95. package/src/types.ts +44 -0
  96. package/src/zoeService/feeMint.d.ts +1 -0
  97. package/src/zoeService/feeMint.d.ts.map +1 -1
  98. package/src/zoeService/feeMint.js +4 -0
  99. package/src/zoeService/installationStorage.d.ts +3 -2
  100. package/src/zoeService/installationStorage.d.ts.map +1 -1
  101. package/src/zoeService/installationStorage.js +2 -5
  102. package/src/zoeService/internal-types.d.ts +11 -3
  103. package/src/zoeService/internal-types.d.ts.map +1 -1
  104. package/src/zoeService/internal-types.js +9 -3
  105. package/src/zoeService/invitationQueries.d.ts +3 -3
  106. package/src/zoeService/invitationQueries.js +3 -3
  107. package/src/zoeService/makeInvitation.d.ts +1 -0
  108. package/src/zoeService/makeInvitation.d.ts.map +1 -1
  109. package/src/zoeService/makeInvitation.js +3 -0
  110. package/src/zoeService/offer/offer.d.ts +1 -0
  111. package/src/zoeService/offer/offer.d.ts.map +1 -1
  112. package/src/zoeService/offer/offer.js +3 -1
  113. package/src/zoeService/originalZoeSeat.d.ts.map +1 -1
  114. package/src/zoeService/originalZoeSeat.js +0 -1
  115. package/src/zoeService/startInstance.d.ts.map +1 -1
  116. package/src/zoeService/startInstance.js +0 -2
  117. package/src/zoeService/types-ambient.d.ts +0 -226
  118. package/src/zoeService/types-ambient.d.ts.map +1 -1
  119. package/src/zoeService/types-ambient.js +4 -327
  120. package/src/zoeService/types.d.ts +238 -0
  121. package/src/zoeService/types.d.ts.map +1 -0
  122. package/src/zoeService/types.ts +307 -0
  123. package/src/zoeService/utils.d.ts +13 -5
  124. package/src/zoeService/utils.test-d.ts +1 -0
  125. package/src/zoeService/zoe.d.ts +11 -1
  126. package/src/zoeService/zoe.d.ts.map +1 -1
  127. package/src/zoeService/zoe.js +8 -1
  128. package/src/zoeService/zoeSeat.d.ts.map +1 -1
  129. package/src/zoeService/zoeSeat.js +1 -2
  130. package/src/zoeService/zoeStorageManager.d.ts +5 -5
  131. package/src/zoeService/zoeStorageManager.d.ts.map +1 -1
  132. package/src/zoeService/zoeStorageManager.js +4 -3
  133. package/tools/fakeVatAdmin.d.ts +9 -2
  134. package/tools/fakeVatAdmin.d.ts.map +1 -1
  135. package/tools/fakeVatAdmin.js +18 -10
  136. package/tools/manualPriceAuthority.d.ts +4 -1
  137. package/tools/manualPriceAuthority.d.ts.map +1 -1
  138. package/tools/manualPriceAuthority.js +1 -0
  139. package/tools/scriptedOracle.d.ts +6 -2
  140. package/tools/scriptedOracle.d.ts.map +1 -1
  141. package/tools/scriptedOracle.js +4 -0
  142. package/tools/setup-zoe.d.ts +12 -6
  143. package/tools/setup-zoe.d.ts.map +1 -1
  144. package/tools/setup-zoe.js +38 -5
  145. package/tools/test-utils.d.ts +1 -1
  146. package/tools/test-utils.js +1 -1
  147. package/tools/types.d.ts +1 -0
  148. package/tools/types.d.ts.map +1 -1
  149. package/tools/types.js +1 -0
  150. package/src/contractFacet/internal-types.d.ts +0 -8
  151. package/src/contractFacet/internal-types.d.ts.map +0 -1
  152. package/src/contractFacet/internal-types.js +0 -15
  153. package/src/contractFacet/types-ambient.js +0 -1
  154. package/src/contractSupport/ratio.d.ts +0 -37
  155. package/src/contractSupport/ratio.d.ts.map +0 -1
  156. package/src/contractSupport/ratio.js +0 -419
  157. package/src/contractSupport/safeMath.d.ts +0 -11
  158. package/src/contractSupport/safeMath.d.ts.map +0 -1
  159. package/src/contractSupport/safeMath.js +0 -49
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "bundleFileName": "bundle-contractFacet.js",
3
- "bundleTime": "2025-03-13T15:09:13.917Z",
4
- "bundleSize": 1061569,
3
+ "bundleTime": "2025-04-17T08:26:55.736Z",
4
+ "bundleSize": 1213677,
5
5
  "moduleSource": {
6
6
  "relative": "../../src/contractFacet/vatRoot.js",
7
7
  "absolute": "/workspace/release/agoric-sdk/packages/zoe/src/contractFacet/vatRoot.js"
@@ -9,477 +9,462 @@
9
9
  "contents": [
10
10
  {
11
11
  "relativePath": "",
12
- "mtime": "2025-03-13T03:55:55.709Z",
13
- "size": 2908
12
+ "mtime": "2025-04-16T13:41:46.366Z",
13
+ "size": 2914
14
14
  },
15
15
  {
16
- "relativePath": "../../internal-types.js",
17
- "mtime": "2025-03-13T03:55:55.718Z",
18
- "size": 8948
16
+ "relativePath": "../../../../../node_modules/@endo/errors/index.js",
17
+ "mtime": "2025-04-16T14:08:44.000Z",
18
+ "size": 2711
19
19
  },
20
20
  {
21
21
  "relativePath": "../zcfZygote.js",
22
- "mtime": "2025-03-13T03:55:55.711Z",
23
- "size": 17366
24
- },
25
- {
26
- "relativePath": "../../../../../node_modules/@endo/errors/index.js",
27
- "mtime": "2025-02-24T10:58:06.000Z",
28
- "size": 2711
22
+ "mtime": "2025-04-16T13:41:46.367Z",
23
+ "size": 17814
29
24
  },
30
25
  {
31
26
  "relativePath": "../../../../../node_modules/@endo/marshal/index.js",
32
- "mtime": "2025-02-24T10:58:08.000Z",
27
+ "mtime": "2025-04-16T14:08:44.000Z",
33
28
  "size": 1071
34
29
  },
35
30
  {
36
31
  "relativePath": "../../../../../node_modules/@endo/far/src/index.js",
37
- "mtime": "2025-02-24T10:58:07.000Z",
32
+ "mtime": "2025-04-16T14:08:44.000Z",
38
33
  "size": 183
39
34
  },
40
35
  {
41
36
  "relativePath": "../../cleanProposal.js",
42
- "mtime": "2025-03-13T03:55:55.707Z",
43
- "size": 5719
37
+ "mtime": "2025-04-16T13:41:46.362Z",
38
+ "size": 5765
44
39
  },
45
40
  {
46
41
  "relativePath": "../../handleWarning.js",
47
- "mtime": "2025-03-13T03:55:24.520Z",
42
+ "mtime": "2025-04-16T13:41:46.386Z",
48
43
  "size": 531
49
44
  },
50
- {
51
- "relativePath": "../../instanceRecordStorage.js",
52
- "mtime": "2025-03-13T03:55:55.718Z",
53
- "size": 3683
54
- },
55
- {
56
- "relativePath": "../../issuerStorage.js",
57
- "mtime": "2025-03-13T03:55:55.719Z",
58
- "size": 6935
59
- },
60
45
  {
61
46
  "relativePath": "../../makeHandle.js",
62
- "mtime": "2025-03-13T03:55:24.522Z",
47
+ "mtime": "2025-04-16T13:41:46.388Z",
63
48
  "size": 1323
64
49
  },
50
+ {
51
+ "relativePath": "../../instanceRecordStorage.js",
52
+ "mtime": "2025-04-16T13:41:46.387Z",
53
+ "size": 3830
54
+ },
65
55
  {
66
56
  "relativePath": "../evalContractCode.js",
67
- "mtime": "2025-03-13T03:55:24.495Z",
57
+ "mtime": "2025-04-16T13:41:46.363Z",
68
58
  "size": 1010
69
59
  },
70
60
  {
71
- "relativePath": "../exit.js",
72
- "mtime": "2025-03-13T03:55:24.495Z",
73
- "size": 3655
61
+ "relativePath": "../../issuerStorage.js",
62
+ "mtime": "2025-04-16T13:41:46.388Z",
63
+ "size": 7002
74
64
  },
75
65
  {
76
66
  "relativePath": "../offerHandlerStorage.js",
77
- "mtime": "2025-03-13T03:55:24.495Z",
67
+ "mtime": "2025-04-16T13:41:46.364Z",
78
68
  "size": 2982
79
69
  },
80
70
  {
81
- "relativePath": "../zcfSeat.js",
82
- "mtime": "2025-03-13T03:55:55.710Z",
83
- "size": 12037
71
+ "relativePath": "../exit.js",
72
+ "mtime": "2025-04-16T13:41:46.363Z",
73
+ "size": 3655
84
74
  },
85
75
  {
86
76
  "relativePath": "../../typeGuards.js",
87
- "mtime": "2025-03-13T03:55:55.720Z",
88
- "size": 12948
89
- },
90
- {
91
- "relativePath": "../zcfMint.js",
92
- "mtime": "2025-03-13T03:55:55.710Z",
93
- "size": 5341
77
+ "mtime": "2025-04-16T13:41:46.389Z",
78
+ "size": 13091
94
79
  },
95
80
  {
96
- "relativePath": "../typeGuards.js",
97
- "mtime": "2025-03-13T03:55:24.497Z",
98
- "size": 720
81
+ "relativePath": "../zcfSeat.js",
82
+ "mtime": "2025-04-16T13:41:46.367Z",
83
+ "size": 12020
99
84
  },
100
85
  {
101
86
  "relativePath": "../../../../../node_modules/@endo/eventual-send/src/no-shim.js",
102
- "mtime": "2025-02-24T10:58:09.000Z",
103
- "size": 474
87
+ "mtime": "2025-04-16T14:08:45.000Z",
88
+ "size": 1051
104
89
  },
105
90
  {
106
91
  "relativePath": "../../../../../node_modules/@endo/pass-style/index.js",
107
- "mtime": "2025-02-24T10:58:09.000Z",
92
+ "mtime": "2025-04-16T14:08:45.000Z",
108
93
  "size": 1119
109
94
  },
95
+ {
96
+ "relativePath": "../zcfMint.js",
97
+ "mtime": "2025-04-16T13:41:46.366Z",
98
+ "size": 5318
99
+ },
100
+ {
101
+ "relativePath": "../typeGuards.js",
102
+ "mtime": "2025-04-16T13:41:46.365Z",
103
+ "size": 720
104
+ },
110
105
  {
111
106
  "relativePath": "../../../../../node_modules/@endo/promise-kit/index.js",
112
- "mtime": "2025-02-24T10:58:08.000Z",
107
+ "mtime": "2025-04-16T14:08:45.000Z",
113
108
  "size": 1607
114
109
  },
115
110
  {
116
111
  "relativePath": "../../../../ERTP/src/index.js",
117
- "mtime": "2025-03-13T03:55:22.968Z",
112
+ "mtime": "2025-04-16T13:41:44.966Z",
118
113
  "size": 245
119
114
  },
120
115
  {
121
116
  "relativePath": "../../../../store/src/index.js",
122
- "mtime": "2025-03-13T03:55:24.171Z",
117
+ "mtime": "2025-04-16T13:41:46.074Z",
123
118
  "size": 1880
124
119
  },
125
120
  {
126
121
  "relativePath": "../../../../vat-data/src/index.js",
127
- "mtime": "2025-03-13T03:55:24.367Z",
122
+ "mtime": "2025-04-16T13:41:46.224Z",
128
123
  "size": 1536
129
124
  },
130
125
  {
131
126
  "relativePath": "../../../../internal/src/index.js",
132
- "mtime": "2025-03-13T03:55:55.600Z",
133
- "size": 635
127
+ "mtime": "2025-04-16T13:41:45.922Z",
128
+ "size": 499
134
129
  },
135
130
  {
136
131
  "relativePath": "../../../../../node_modules/@endo/marshal/src/encodeToCapData.js",
137
- "mtime": "2025-02-24T10:58:08.000Z",
132
+ "mtime": "2025-04-16T14:08:44.000Z",
138
133
  "size": 16039
139
134
  },
140
135
  {
141
136
  "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal.js",
142
- "mtime": "2025-02-24T10:58:08.000Z",
137
+ "mtime": "2025-04-16T14:08:44.000Z",
143
138
  "size": 14674
144
139
  },
145
140
  {
146
141
  "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal-stringify.js",
147
- "mtime": "2025-02-24T10:58:08.000Z",
142
+ "mtime": "2025-04-16T14:08:44.000Z",
148
143
  "size": 1880
149
144
  },
150
145
  {
151
146
  "relativePath": "../../../../../node_modules/@endo/marshal/src/marshal-justin.js",
152
- "mtime": "2025-02-24T10:58:08.000Z",
147
+ "mtime": "2025-04-16T14:08:44.000Z",
153
148
  "size": 13298
154
149
  },
155
150
  {
156
151
  "relativePath": "../../../../../node_modules/@endo/marshal/src/encodePassable.js",
157
- "mtime": "2025-02-24T10:58:08.000Z",
152
+ "mtime": "2025-04-16T14:08:44.000Z",
158
153
  "size": 29163
159
154
  },
160
155
  {
161
156
  "relativePath": "../../../../../node_modules/@endo/marshal/src/rankOrder.js",
162
- "mtime": "2025-02-24T10:58:08.000Z",
157
+ "mtime": "2025-04-16T14:08:44.000Z",
163
158
  "size": 15858
164
159
  },
165
160
  {
166
161
  "relativePath": "../../../../../node_modules/@endo/marshal/src/types.js",
167
- "mtime": "2025-02-24T10:58:08.000Z",
162
+ "mtime": "2025-04-16T14:08:44.000Z",
168
163
  "size": 8177
169
164
  },
170
165
  {
171
166
  "relativePath": "../../../../../node_modules/@endo/far/src/exports.js",
172
- "mtime": "2025-02-24T10:58:07.000Z",
167
+ "mtime": "2025-04-16T14:08:44.000Z",
173
168
  "size": 76
174
169
  },
175
170
  {
176
- "relativePath": "../../issuerRecord.js",
177
- "mtime": "2025-03-13T03:55:55.719Z",
178
- "size": 742
171
+ "relativePath": "../../../../../node_modules/@endo/import-bundle/src/index.js",
172
+ "mtime": "2025-04-17T08:25:01.338Z",
173
+ "size": 9035
179
174
  },
180
175
  {
181
- "relativePath": "../../../../../node_modules/@endo/import-bundle/src/index.js",
182
- "mtime": "2025-02-24T10:58:11.000Z",
183
- "size": 5466
176
+ "relativePath": "../../issuerRecord.js",
177
+ "mtime": "2025-04-16T13:41:46.387Z",
178
+ "size": 806
184
179
  },
185
180
  {
186
181
  "relativePath": "../../../../time/index.js",
187
- "mtime": "2025-03-13T03:55:24.362Z",
182
+ "mtime": "2025-04-16T13:41:46.218Z",
188
183
  "size": 166
189
184
  },
190
- {
191
- "relativePath": "../offerSafety.js",
192
- "mtime": "2025-03-13T03:55:24.496Z",
193
- "size": 3720
194
- },
195
- {
196
- "relativePath": "../rightsConservation.js",
197
- "mtime": "2025-03-13T03:55:55.708Z",
198
- "size": 3288
199
- },
200
- {
201
- "relativePath": "../reallocate.js",
202
- "mtime": "2025-03-13T03:55:24.496Z",
203
- "size": 3142
204
- },
205
- {
206
- "relativePath": "../../contractSupport/atomicTransfer.js",
207
- "mtime": "2025-03-13T03:55:55.711Z",
208
- "size": 3885
209
- },
210
185
  {
211
186
  "relativePath": "../../../../notifier/src/index.js",
212
- "mtime": "2025-03-13T03:55:24.020Z",
187
+ "mtime": "2025-04-16T13:41:45.952Z",
213
188
  "size": 920
214
189
  },
215
190
  {
216
- "relativePath": "../allocationMath.js",
217
- "mtime": "2025-03-13T03:55:24.494Z",
218
- "size": 3058
191
+ "relativePath": "../offerSafety.js",
192
+ "mtime": "2025-04-16T13:41:46.364Z",
193
+ "size": 3720
219
194
  },
220
195
  {
221
- "relativePath": "../internal-types.js",
222
- "mtime": "2025-03-13T03:55:55.708Z",
223
- "size": 411
196
+ "relativePath": "../../contractSupport/atomicTransfer.js",
197
+ "mtime": "2025-04-16T13:41:46.368Z",
198
+ "size": 3954
224
199
  },
225
200
  {
226
- "relativePath": "../types-ambient.js",
227
- "mtime": "2025-03-13T03:55:55.709Z",
228
- "size": 49
201
+ "relativePath": "../rightsConservation.js",
202
+ "mtime": "2025-04-16T13:41:46.365Z",
203
+ "size": 3257
229
204
  },
230
205
  {
231
- "relativePath": "../../../../../node_modules/@endo/patterns/index.js",
232
- "mtime": "2025-02-24T10:58:08.000Z",
233
- "size": 1898
206
+ "relativePath": "../reallocate.js",
207
+ "mtime": "2025-04-16T13:41:46.364Z",
208
+ "size": 3142
234
209
  },
235
210
  {
236
211
  "relativePath": "../../../../../node_modules/@endo/eventual-send/src/E.js",
237
- "mtime": "2025-02-24T10:58:09.000Z",
238
- "size": 15401
212
+ "mtime": "2025-04-16T14:08:45.000Z",
213
+ "size": 15661
239
214
  },
240
215
  {
241
216
  "relativePath": "../../../../../node_modules/@endo/eventual-send/src/exports.js",
242
- "mtime": "2025-02-24T10:58:09.000Z",
217
+ "mtime": "2025-04-16T14:08:45.000Z",
243
218
  "size": 76
244
219
  },
245
220
  {
246
221
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/iter-helpers.js",
247
- "mtime": "2025-02-24T10:58:09.000Z",
222
+ "mtime": "2025-04-16T14:08:45.000Z",
248
223
  "size": 1810
249
224
  },
250
225
  {
251
226
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyle-helpers.js",
252
- "mtime": "2025-02-24T10:58:09.000Z",
227
+ "mtime": "2025-04-16T14:08:45.000Z",
253
228
  "size": 6320
254
229
  },
255
230
  {
256
231
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/error.js",
257
- "mtime": "2025-02-24T10:58:09.000Z",
258
- "size": 6248
232
+ "mtime": "2025-04-16T14:08:45.000Z",
233
+ "size": 6252
259
234
  },
260
235
  {
261
236
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/remotable.js",
262
- "mtime": "2025-02-24T10:58:09.000Z",
263
- "size": 8535
237
+ "mtime": "2025-04-16T14:08:45.000Z",
238
+ "size": 8539
264
239
  },
265
240
  {
266
241
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/symbol.js",
267
- "mtime": "2025-02-24T10:58:09.000Z",
242
+ "mtime": "2025-04-16T14:08:45.000Z",
268
243
  "size": 3971
269
244
  },
270
245
  {
271
246
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/string.js",
272
- "mtime": "2025-02-24T10:58:09.000Z",
247
+ "mtime": "2025-04-16T14:08:45.000Z",
273
248
  "size": 3121
274
249
  },
275
250
  {
276
251
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyleOf.js",
277
- "mtime": "2025-02-24T10:58:09.000Z",
278
- "size": 12909
252
+ "mtime": "2025-04-16T14:08:45.000Z",
253
+ "size": 13461
279
254
  },
280
255
  {
281
256
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/makeTagged.js",
282
- "mtime": "2025-02-24T10:58:09.000Z",
283
- "size": 792
257
+ "mtime": "2025-04-16T14:08:45.000Z",
258
+ "size": 810
284
259
  },
285
260
  {
286
261
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/make-far.js",
287
- "mtime": "2025-02-24T10:58:09.000Z",
262
+ "mtime": "2025-04-16T14:08:45.000Z",
288
263
  "size": 8349
289
264
  },
290
265
  {
291
266
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/typeGuards.js",
292
- "mtime": "2025-02-24T10:58:09.000Z",
267
+ "mtime": "2025-04-16T14:08:45.000Z",
293
268
  "size": 2210
294
269
  },
295
270
  {
296
271
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/deeplyFulfilled.js",
297
- "mtime": "2025-02-24T10:58:09.000Z",
272
+ "mtime": "2025-04-16T14:08:45.000Z",
298
273
  "size": 4741
299
274
  },
300
275
  {
301
276
  "relativePath": "../../../../../node_modules/@endo/pass-style/src/types.js",
302
- "mtime": "2025-02-24T10:58:09.000Z",
277
+ "mtime": "2025-04-16T14:08:45.000Z",
303
278
  "size": 47
304
279
  },
280
+ {
281
+ "relativePath": "../allocationMath.js",
282
+ "mtime": "2025-04-16T13:41:46.363Z",
283
+ "size": 3058
284
+ },
285
+ {
286
+ "relativePath": "../../../../../node_modules/@endo/patterns/index.js",
287
+ "mtime": "2025-04-16T14:08:45.000Z",
288
+ "size": 1919
289
+ },
305
290
  {
306
291
  "relativePath": "../../../../../node_modules/@endo/promise-kit/src/promise-executor-kit.js",
307
- "mtime": "2025-02-24T10:58:08.000Z",
292
+ "mtime": "2025-04-16T14:08:45.000Z",
308
293
  "size": 1535
309
294
  },
310
295
  {
311
296
  "relativePath": "../../../../../node_modules/@endo/promise-kit/src/memo-race.js",
312
- "mtime": "2025-02-24T10:58:08.000Z",
297
+ "mtime": "2025-04-16T14:08:45.000Z",
313
298
  "size": 4808
314
299
  },
315
300
  {
316
301
  "relativePath": "../../../../../node_modules/@endo/promise-kit/src/is-promise.js",
317
- "mtime": "2025-02-24T10:58:08.000Z",
302
+ "mtime": "2025-04-16T14:08:45.000Z",
318
303
  "size": 290
319
304
  },
320
305
  {
321
306
  "relativePath": "../../../../../node_modules/@endo/promise-kit/src/types.js",
322
- "mtime": "2025-02-24T10:58:08.000Z",
307
+ "mtime": "2025-04-16T14:08:45.000Z",
323
308
  "size": 681
324
309
  },
325
310
  {
326
311
  "relativePath": "../../../../ERTP/src/amountMath.js",
327
- "mtime": "2025-03-13T03:55:55.496Z",
328
- "size": 13784
312
+ "mtime": "2025-04-16T13:41:44.965Z",
313
+ "size": 13868
329
314
  },
330
315
  {
331
316
  "relativePath": "../../../../ERTP/src/issuerKit.js",
332
- "mtime": "2025-03-13T03:55:55.496Z",
333
- "size": 13727
317
+ "mtime": "2025-04-16T13:41:44.966Z",
318
+ "size": 13873
334
319
  },
335
320
  {
336
321
  "relativePath": "../../../../ERTP/src/typeGuards.js",
337
- "mtime": "2025-03-13T03:55:55.498Z",
338
- "size": 8907
322
+ "mtime": "2025-04-16T13:41:44.972Z",
323
+ "size": 8969
339
324
  },
340
325
  {
341
326
  "relativePath": "../../../../ERTP/src/types-index.js",
342
- "mtime": "2025-03-13T03:55:22.974Z",
327
+ "mtime": "2025-04-16T13:41:44.973Z",
343
328
  "size": 62
344
329
  },
345
330
  {
346
331
  "relativePath": "../../../../store/src/stores/scalarWeakSetStore.js",
347
- "mtime": "2025-03-13T03:55:24.173Z",
332
+ "mtime": "2025-04-16T13:41:46.077Z",
348
333
  "size": 3300
349
334
  },
350
335
  {
351
336
  "relativePath": "../../../../store/src/stores/scalarSetStore.js",
352
- "mtime": "2025-03-13T03:55:24.172Z",
337
+ "mtime": "2025-04-16T13:41:46.076Z",
353
338
  "size": 3085
354
339
  },
355
340
  {
356
341
  "relativePath": "../../../../store/src/stores/scalarWeakMapStore.js",
357
- "mtime": "2025-03-13T03:55:24.173Z",
342
+ "mtime": "2025-04-16T13:41:46.077Z",
358
343
  "size": 4581
359
344
  },
360
345
  {
361
346
  "relativePath": "../../../../store/src/stores/scalarMapStore.js",
362
- "mtime": "2025-03-13T03:55:24.172Z",
347
+ "mtime": "2025-04-16T13:41:46.076Z",
363
348
  "size": 4960
364
349
  },
365
350
  {
366
351
  "relativePath": "../../../../store/src/stores/store-utils.js",
367
- "mtime": "2025-03-13T03:55:55.665Z",
368
- "size": 6341
352
+ "mtime": "2025-04-16T13:41:46.077Z",
353
+ "size": 5521
369
354
  },
370
355
  {
371
356
  "relativePath": "../../../../store/src/legacy/legacyMap.js",
372
- "mtime": "2025-03-13T03:55:24.171Z",
357
+ "mtime": "2025-04-16T13:41:46.075Z",
373
358
  "size": 2578
374
359
  },
375
360
  {
376
361
  "relativePath": "../../../../store/src/legacy/legacyWeakMap.js",
377
- "mtime": "2025-03-13T03:55:24.172Z",
362
+ "mtime": "2025-04-16T13:41:46.075Z",
378
363
  "size": 1408
379
364
  },
380
365
  {
381
366
  "relativePath": "../../../../store/src/types.js",
382
- "mtime": "2025-03-13T03:55:24.174Z",
367
+ "mtime": "2025-04-16T13:41:46.078Z",
383
368
  "size": 7815
384
369
  },
385
370
  {
386
371
  "relativePath": "../../../../../node_modules/@endo/exo/index.js",
387
- "mtime": "2025-02-24T10:58:09.000Z",
372
+ "mtime": "2025-04-16T14:08:46.000Z",
388
373
  "size": 225
389
374
  },
390
375
  {
391
376
  "relativePath": "../../../../vat-data/src/vat-data-bindings.js",
392
- "mtime": "2025-03-13T03:55:24.368Z",
377
+ "mtime": "2025-04-16T13:41:46.225Z",
393
378
  "size": 6123
394
379
  },
395
380
  {
396
381
  "relativePath": "../../../../vat-data/src/exo-utils.js",
397
- "mtime": "2025-03-13T03:55:24.367Z",
382
+ "mtime": "2025-04-16T13:41:46.224Z",
398
383
  "size": 9344
399
384
  },
400
385
  {
401
386
  "relativePath": "../../../../internal/src/config.js",
402
- "mtime": "2025-03-13T03:55:55.600Z",
403
- "size": 1354
387
+ "mtime": "2025-04-16T13:41:45.920Z",
388
+ "size": 1418
404
389
  },
405
390
  {
406
391
  "relativePath": "../../../../internal/src/debug.js",
407
- "mtime": "2025-03-13T03:55:23.986Z",
392
+ "mtime": "2025-04-16T13:41:45.921Z",
408
393
  "size": 1029
409
394
  },
410
395
  {
411
396
  "relativePath": "../../../../internal/src/errors.js",
412
- "mtime": "2025-03-13T03:55:23.986Z",
397
+ "mtime": "2025-04-16T13:41:45.921Z",
413
398
  "size": 389
414
399
  },
415
400
  {
416
401
  "relativePath": "../../../../internal/src/js-utils.js",
417
- "mtime": "2025-03-13T03:55:55.601Z",
418
- "size": 3443
402
+ "mtime": "2025-04-16T13:41:45.922Z",
403
+ "size": 7299
419
404
  },
420
405
  {
421
406
  "relativePath": "../../../../internal/src/marshal.js",
422
- "mtime": "2025-03-13T03:55:23.991Z",
407
+ "mtime": "2025-04-16T13:41:45.926Z",
423
408
  "size": 4417
424
409
  },
425
410
  {
426
411
  "relativePath": "../../../../internal/src/method-tools.js",
427
- "mtime": "2025-03-13T03:55:23.991Z",
412
+ "mtime": "2025-04-16T13:41:45.926Z",
428
413
  "size": 3837
429
414
  },
415
+ {
416
+ "relativePath": "../../../../internal/src/metrics.js",
417
+ "mtime": "2025-04-16T13:41:45.926Z",
418
+ "size": 15594
419
+ },
430
420
  {
431
421
  "relativePath": "../../../../internal/src/ses-utils.js",
432
- "mtime": "2025-03-13T03:55:55.601Z",
433
- "size": 10269
422
+ "mtime": "2025-04-16T13:41:45.930Z",
423
+ "size": 12786
424
+ },
425
+ {
426
+ "relativePath": "../../../../internal/src/tmpDir.js",
427
+ "mtime": "2025-04-16T13:41:45.931Z",
428
+ "size": 511
434
429
  },
435
430
  {
436
431
  "relativePath": "../../../../internal/src/typeCheck.js",
437
- "mtime": "2025-03-13T03:55:23.997Z",
432
+ "mtime": "2025-04-16T13:41:45.932Z",
438
433
  "size": 661
439
434
  },
440
435
  {
441
436
  "relativePath": "../../../../internal/src/typeGuards.js",
442
- "mtime": "2025-03-13T03:55:23.997Z",
437
+ "mtime": "2025-04-16T13:41:45.932Z",
443
438
  "size": 675
444
439
  },
445
440
  {
446
441
  "relativePath": "../../../../internal/src/types-index.js",
447
- "mtime": "2025-03-13T03:55:23.998Z",
442
+ "mtime": "2025-04-16T13:41:45.933Z",
448
443
  "size": 62
449
444
  },
450
- {
451
- "relativePath": "../../../../../node_modules/@endo/common/object-map.js",
452
- "mtime": "2025-02-24T10:58:09.000Z",
453
- "size": 2213
454
- },
455
- {
456
- "relativePath": "../../../../../node_modules/@endo/common/object-meta-map.js",
457
- "mtime": "2025-02-24T10:58:09.000Z",
458
- "size": 1884
459
- },
460
- {
461
- "relativePath": "../../../../../node_modules/@endo/common/from-unique-entries.js",
462
- "mtime": "2025-02-24T10:58:09.000Z",
463
- "size": 943
464
- },
465
445
  {
466
446
  "relativePath": "../../../../../node_modules/@endo/marshal/src/encodeToSmallcaps.js",
467
- "mtime": "2025-02-24T10:58:08.000Z",
447
+ "mtime": "2025-04-16T14:08:44.000Z",
468
448
  "size": 16566
469
449
  },
470
450
  {
471
451
  "relativePath": "../../../../../node_modules/@endo/nat/src/index.js",
472
- "mtime": "2025-02-24T10:58:08.000Z",
473
- "size": 2525
452
+ "mtime": "2025-04-16T14:08:45.000Z",
453
+ "size": 2526
454
+ },
455
+ {
456
+ "relativePath": "../../../../../node_modules/@endo/common/object-map.js",
457
+ "mtime": "2025-04-16T14:08:45.000Z",
458
+ "size": 2213
474
459
  },
475
460
  {
476
461
  "relativePath": "../../../../../node_modules/@endo/import-bundle/src/compartment-wrapper.js",
477
- "mtime": "2025-02-24T10:58:11.000Z",
462
+ "mtime": "2025-04-16T14:08:46.000Z",
478
463
  "size": 5530
479
464
  },
480
465
  {
481
466
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/import-archive.js",
482
- "mtime": "2025-02-24T10:58:07.000Z",
467
+ "mtime": "2025-04-16T14:08:44.000Z",
483
468
  "size": 189
484
469
  },
485
470
  {
@@ -489,212 +474,222 @@
489
474
  },
490
475
  {
491
476
  "relativePath": "../../../../time/src/timeMath.js",
492
- "mtime": "2025-03-13T03:55:24.363Z",
477
+ "mtime": "2025-04-16T13:41:46.219Z",
493
478
  "size": 8440
494
479
  },
495
480
  {
496
481
  "relativePath": "../../../../time/src/typeGuards.js",
497
- "mtime": "2025-03-13T03:55:24.363Z",
482
+ "mtime": "2025-04-16T13:41:46.220Z",
498
483
  "size": 1196
499
484
  },
500
485
  {
501
486
  "relativePath": "../../../../time/src/types-index.js",
502
- "mtime": "2025-03-13T03:55:24.364Z",
487
+ "mtime": "2025-04-16T13:41:46.220Z",
503
488
  "size": 58
504
489
  },
505
490
  {
506
491
  "relativePath": "../../../../notifier/src/publish-kit.js",
507
- "mtime": "2025-03-13T03:55:24.021Z",
492
+ "mtime": "2025-04-16T13:41:45.953Z",
508
493
  "size": 14483
509
494
  },
510
495
  {
511
496
  "relativePath": "../../../../notifier/src/subscribe.js",
512
- "mtime": "2025-03-13T03:55:24.022Z",
497
+ "mtime": "2025-04-16T13:41:45.954Z",
513
498
  "size": 9406
514
499
  },
515
500
  {
516
501
  "relativePath": "../../../../notifier/src/notifier.js",
517
- "mtime": "2025-03-13T03:55:24.021Z",
502
+ "mtime": "2025-04-16T13:41:45.952Z",
518
503
  "size": 5839
519
504
  },
520
505
  {
521
506
  "relativePath": "../../../../notifier/src/subscriber.js",
522
- "mtime": "2025-03-13T03:55:24.023Z",
507
+ "mtime": "2025-04-16T13:41:45.954Z",
523
508
  "size": 2525
524
509
  },
525
510
  {
526
511
  "relativePath": "../../../../notifier/src/topic.js",
527
- "mtime": "2025-03-13T03:55:24.023Z",
512
+ "mtime": "2025-04-16T13:41:45.954Z",
528
513
  "size": 1142
529
514
  },
530
515
  {
531
516
  "relativePath": "../../../../notifier/src/asyncIterableAdaptor.js",
532
- "mtime": "2025-03-13T03:55:24.020Z",
517
+ "mtime": "2025-04-16T13:41:45.951Z",
533
518
  "size": 4148
534
519
  },
535
520
  {
536
521
  "relativePath": "../../../../notifier/src/storesub.js",
537
- "mtime": "2025-03-13T03:55:24.022Z",
522
+ "mtime": "2025-04-16T13:41:45.953Z",
538
523
  "size": 7802
539
524
  },
540
525
  {
541
526
  "relativePath": "../../../../notifier/src/stored-notifier.js",
542
- "mtime": "2025-03-13T03:55:24.022Z",
527
+ "mtime": "2025-04-16T13:41:45.953Z",
543
528
  "size": 2295
544
529
  },
545
530
  {
546
531
  "relativePath": "../../../../notifier/src/types-index.js",
547
- "mtime": "2025-03-13T03:55:24.024Z",
532
+ "mtime": "2025-04-16T13:41:45.955Z",
548
533
  "size": 62
549
534
  },
535
+ {
536
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/track-turns.js",
537
+ "mtime": "2025-04-16T14:08:45.000Z",
538
+ "size": 3945
539
+ },
540
+ {
541
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/message-breakpoints.js",
542
+ "mtime": "2025-04-16T14:08:45.000Z",
543
+ "size": 5618
544
+ },
545
+ {
546
+ "relativePath": "../../../../../node_modules/@endo/env-options/index.js",
547
+ "mtime": "2025-02-24T10:58:07.000Z",
548
+ "size": 38
549
+ },
550
+ {
551
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyArray.js",
552
+ "mtime": "2025-04-16T14:08:45.000Z",
553
+ "size": 1411
554
+ },
555
+ {
556
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyRecord.js",
557
+ "mtime": "2025-04-16T14:08:45.000Z",
558
+ "size": 2182
559
+ },
560
+ {
561
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/tagged.js",
562
+ "mtime": "2025-04-16T14:08:45.000Z",
563
+ "size": 1596
564
+ },
565
+ {
566
+ "relativePath": "../../../../../node_modules/@endo/pass-style/src/safe-promise.js",
567
+ "mtime": "2025-04-16T14:08:45.000Z",
568
+ "size": 4921
569
+ },
570
+ {
571
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/utils.js",
572
+ "mtime": "2025-04-16T14:08:45.000Z",
573
+ "size": 125
574
+ },
550
575
  {
551
576
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/checkKey.js",
552
- "mtime": "2025-02-24T10:58:08.000Z",
577
+ "mtime": "2025-04-16T14:08:45.000Z",
553
578
  "size": 14735
554
579
  },
555
580
  {
556
581
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/copySet.js",
557
- "mtime": "2025-02-24T10:58:08.000Z",
582
+ "mtime": "2025-04-16T14:08:45.000Z",
558
583
  "size": 3011
559
584
  },
560
585
  {
561
586
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/copyBag.js",
562
- "mtime": "2025-02-24T10:58:08.000Z",
587
+ "mtime": "2025-04-16T14:08:45.000Z",
563
588
  "size": 3991
564
589
  },
565
590
  {
566
591
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/compareKeys.js",
567
- "mtime": "2025-02-24T10:58:08.000Z",
592
+ "mtime": "2025-04-16T14:08:45.000Z",
568
593
  "size": 8303
569
594
  },
570
595
  {
571
596
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/merge-set-operators.js",
572
- "mtime": "2025-02-24T10:58:08.000Z",
597
+ "mtime": "2025-04-16T14:08:45.000Z",
573
598
  "size": 9558
574
599
  },
575
600
  {
576
601
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/merge-bag-operators.js",
577
- "mtime": "2025-02-24T10:58:08.000Z",
578
- "size": 8748
602
+ "mtime": "2025-04-16T14:08:45.000Z",
603
+ "size": 8701
579
604
  },
580
605
  {
581
606
  "relativePath": "../../../../../node_modules/@endo/patterns/src/patterns/patternMatchers.js",
582
- "mtime": "2025-02-24T10:58:08.000Z",
583
- "size": 63335
607
+ "mtime": "2025-04-16T14:08:45.000Z",
608
+ "size": 69968
584
609
  },
585
610
  {
586
611
  "relativePath": "../../../../../node_modules/@endo/patterns/src/patterns/getGuardPayloads.js",
587
- "mtime": "2025-02-24T10:58:08.000Z",
612
+ "mtime": "2025-04-16T14:08:45.000Z",
588
613
  "size": 9710
589
614
  },
590
615
  {
591
616
  "relativePath": "../../../../../node_modules/@endo/patterns/src/types.js",
592
- "mtime": "2025-02-24T10:58:08.000Z",
593
- "size": 26130
617
+ "mtime": "2025-04-16T14:08:45.000Z",
618
+ "size": 26412
594
619
  },
595
620
  {
596
621
  "relativePath": "../../../../../node_modules/@endo/common/list-difference.js",
597
- "mtime": "2025-02-24T10:58:09.000Z",
622
+ "mtime": "2025-04-16T14:08:45.000Z",
598
623
  "size": 755
599
624
  },
600
- {
601
- "relativePath": "../../../../../node_modules/@endo/eventual-send/src/track-turns.js",
602
- "mtime": "2025-02-24T10:58:09.000Z",
603
- "size": 3945
604
- },
605
- {
606
- "relativePath": "../../../../../node_modules/@endo/eventual-send/src/message-breakpoints.js",
607
- "mtime": "2025-02-24T10:58:09.000Z",
608
- "size": 5618
609
- },
610
- {
611
- "relativePath": "../../../../../node_modules/@endo/env-options/index.js",
612
- "mtime": "2025-02-24T10:58:07.000Z",
613
- "size": 38
614
- },
615
- {
616
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyArray.js",
617
- "mtime": "2025-02-24T10:58:09.000Z",
618
- "size": 1574
619
- },
620
- {
621
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/copyRecord.js",
622
- "mtime": "2025-02-24T10:58:09.000Z",
623
- "size": 2256
624
- },
625
- {
626
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/tagged.js",
627
- "mtime": "2025-02-24T10:58:09.000Z",
628
- "size": 1557
629
- },
630
- {
631
- "relativePath": "../../../../../node_modules/@endo/pass-style/src/safe-promise.js",
632
- "mtime": "2025-02-24T10:58:09.000Z",
633
- "size": 4921
634
- },
635
- {
636
- "relativePath": "../../../../../node_modules/@endo/eventual-send/utils.js",
637
- "mtime": "2025-02-24T10:58:09.000Z",
638
- "size": 125
639
- },
640
625
  {
641
626
  "relativePath": "../../../../ERTP/src/mathHelpers/natMathHelpers.js",
642
- "mtime": "2025-03-13T03:55:22.970Z",
627
+ "mtime": "2025-04-16T13:41:44.968Z",
643
628
  "size": 1159
644
629
  },
645
630
  {
646
631
  "relativePath": "../../../../ERTP/src/mathHelpers/setMathHelpers.js",
647
- "mtime": "2025-03-13T03:55:22.971Z",
632
+ "mtime": "2025-04-16T13:41:44.969Z",
648
633
  "size": 1131
649
634
  },
650
635
  {
651
636
  "relativePath": "../../../../ERTP/src/mathHelpers/copySetMathHelpers.js",
652
- "mtime": "2025-03-13T03:55:22.970Z",
637
+ "mtime": "2025-04-16T13:41:44.968Z",
653
638
  "size": 684
654
639
  },
655
640
  {
656
641
  "relativePath": "../../../../ERTP/src/mathHelpers/copyBagMathHelpers.js",
657
- "mtime": "2025-03-13T03:55:22.969Z",
642
+ "mtime": "2025-04-16T13:41:44.967Z",
658
643
  "size": 677
659
644
  },
660
645
  {
661
646
  "relativePath": "../../../../ERTP/src/displayInfo.js",
662
- "mtime": "2025-03-13T03:55:22.967Z",
647
+ "mtime": "2025-04-16T13:41:44.966Z",
663
648
  "size": 1014
664
649
  },
665
650
  {
666
651
  "relativePath": "../../../../ERTP/src/paymentLedger.js",
667
- "mtime": "2025-03-13T03:55:55.497Z",
668
- "size": 12485
652
+ "mtime": "2025-04-16T13:41:44.969Z",
653
+ "size": 12534
669
654
  },
670
655
  {
671
656
  "relativePath": "../../../../zone/durable.js",
672
- "mtime": "2025-03-13T03:55:24.597Z",
657
+ "mtime": "2025-04-16T13:41:46.451Z",
673
658
  "size": 52
674
659
  },
675
660
  {
676
661
  "relativePath": "../../../../../node_modules/@endo/exo/src/exo-makers.js",
677
- "mtime": "2025-02-24T10:58:09.000Z",
662
+ "mtime": "2025-04-16T14:08:46.000Z",
678
663
  "size": 6918
679
664
  },
680
665
  {
681
666
  "relativePath": "../../../../../node_modules/@endo/exo/src/types.js",
682
- "mtime": "2025-02-24T10:58:09.000Z",
667
+ "mtime": "2025-04-16T14:08:46.000Z",
683
668
  "size": 47
684
669
  },
685
670
  {
686
671
  "relativePath": "../../../../../node_modules/@endo/exo/src/get-interface.js",
687
- "mtime": "2025-02-24T10:58:09.000Z",
672
+ "mtime": "2025-04-16T14:08:46.000Z",
688
673
  "size": 826
689
674
  },
690
675
  {
691
676
  "relativePath": "../../../../internal/src/lib-chainStorage.js",
692
- "mtime": "2025-03-13T03:55:23.988Z",
677
+ "mtime": "2025-04-16T13:41:45.923Z",
693
678
  "size": 9968
694
679
  },
680
+ {
681
+ "relativePath": "../../../../../node_modules/@endo/common/object-meta-map.js",
682
+ "mtime": "2025-04-16T14:08:45.000Z",
683
+ "size": 1884
684
+ },
685
+ {
686
+ "relativePath": "../../../../../node_modules/@endo/common/from-unique-entries.js",
687
+ "mtime": "2025-04-16T14:08:45.000Z",
688
+ "size": 943
689
+ },
695
690
  {
696
691
  "relativePath": "../../../../../node_modules/@endo/stream/index.js",
697
- "mtime": "2025-02-24T10:58:09.000Z",
692
+ "mtime": "2025-04-16T14:08:46.000Z",
698
693
  "size": 6689
699
694
  },
700
695
  {
@@ -704,12 +699,12 @@
704
699
  },
705
700
  {
706
701
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/types-external.js",
707
- "mtime": "2025-02-24T10:58:07.000Z",
702
+ "mtime": "2025-04-16T14:08:44.000Z",
708
703
  "size": 62
709
704
  },
710
705
  {
711
706
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-archive.js",
712
- "mtime": "2025-02-24T10:58:07.000Z",
707
+ "mtime": "2025-04-16T14:08:44.000Z",
713
708
  "size": 3415
714
709
  },
715
710
  {
@@ -734,62 +729,62 @@
734
729
  },
735
730
  {
736
731
  "relativePath": "../../../../internal/src/upgrade-api.js",
737
- "mtime": "2025-03-13T03:55:23.998Z",
732
+ "mtime": "2025-04-16T13:41:45.933Z",
738
733
  "size": 2173
739
734
  },
735
+ {
736
+ "relativePath": "../../../../../node_modules/@endo/env-options/src/env-options.js",
737
+ "mtime": "2025-02-24T10:58:07.000Z",
738
+ "size": 4330
739
+ },
740
+ {
741
+ "relativePath": "../../../../../node_modules/@endo/eventual-send/src/local.js",
742
+ "mtime": "2025-04-16T14:08:45.000Z",
743
+ "size": 4000
744
+ },
740
745
  {
741
746
  "relativePath": "../../../../../node_modules/@endo/common/ident-checker.js",
742
- "mtime": "2025-02-24T10:58:09.000Z",
747
+ "mtime": "2025-04-16T14:08:45.000Z",
743
748
  "size": 1613
744
749
  },
745
750
  {
746
751
  "relativePath": "../../../../../node_modules/@endo/patterns/src/keys/keycollection-operators.js",
747
- "mtime": "2025-02-24T10:58:08.000Z",
752
+ "mtime": "2025-04-16T14:08:45.000Z",
748
753
  "size": 7647
749
754
  },
750
755
  {
751
756
  "relativePath": "../../../../../node_modules/@endo/common/apply-labeling-error.js",
752
- "mtime": "2025-02-24T10:58:09.000Z",
757
+ "mtime": "2025-04-16T14:08:45.000Z",
753
758
  "size": 2206
754
759
  },
755
- {
756
- "relativePath": "../../../../../node_modules/@endo/env-options/src/env-options.js",
757
- "mtime": "2025-02-24T10:58:07.000Z",
758
- "size": 4330
759
- },
760
- {
761
- "relativePath": "../../../../../node_modules/@endo/eventual-send/src/local.js",
762
- "mtime": "2025-02-24T10:58:09.000Z",
763
- "size": 4000
764
- },
765
760
  {
766
761
  "relativePath": "../../../../ERTP/src/payment.js",
767
- "mtime": "2025-03-13T03:55:22.971Z",
762
+ "mtime": "2025-04-16T13:41:44.969Z",
768
763
  "size": 788
769
764
  },
770
765
  {
771
766
  "relativePath": "../../../../ERTP/src/purse.js",
772
- "mtime": "2025-03-13T03:55:22.972Z",
767
+ "mtime": "2025-04-16T13:41:44.970Z",
773
768
  "size": 6202
774
769
  },
775
770
  {
776
771
  "relativePath": "../../../../zone/src/durable.js",
777
- "mtime": "2025-03-13T03:55:55.745Z",
778
- "size": 3722
772
+ "mtime": "2025-04-16T13:41:46.452Z",
773
+ "size": 3678
779
774
  },
780
775
  {
781
776
  "relativePath": "../../../../../node_modules/@endo/exo/src/exo-tools.js",
782
- "mtime": "2025-02-24T10:58:09.000Z",
777
+ "mtime": "2025-04-16T14:08:46.000Z",
783
778
  "size": 15822
784
779
  },
785
780
  {
786
781
  "relativePath": "../../../../internal/src/callback.js",
787
- "mtime": "2025-03-13T03:55:23.985Z",
782
+ "mtime": "2025-04-16T13:41:45.920Z",
788
783
  "size": 9468
789
784
  },
790
785
  {
791
786
  "relativePath": "../../../../base-zone/heap.js",
792
- "mtime": "2025-03-13T03:55:23.298Z",
787
+ "mtime": "2025-04-16T13:41:45.259Z",
793
788
  "size": 49
794
789
  },
795
790
  {
@@ -804,12 +799,12 @@
804
799
  },
805
800
  {
806
801
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-archive-parsers.js",
807
- "mtime": "2025-02-24T10:58:07.000Z",
802
+ "mtime": "2025-04-16T14:08:44.000Z",
808
803
  "size": 816
809
804
  },
810
805
  {
811
806
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-archive-lite.js",
812
- "mtime": "2025-02-24T10:58:07.000Z",
807
+ "mtime": "2025-04-16T14:08:44.000Z",
813
808
  "size": 13742
814
809
  },
815
810
  {
@@ -829,37 +824,37 @@
829
824
  },
830
825
  {
831
826
  "relativePath": "../../../../../node_modules/@endo/common/make-iterator.js",
832
- "mtime": "2025-02-24T10:58:09.000Z",
827
+ "mtime": "2025-04-16T14:08:45.000Z",
833
828
  "size": 335
834
829
  },
835
830
  {
836
831
  "relativePath": "../../../../../node_modules/@endo/common/make-array-iterator.js",
837
- "mtime": "2025-02-24T10:58:09.000Z",
832
+ "mtime": "2025-04-16T14:08:45.000Z",
838
833
  "size": 600
839
834
  },
840
835
  {
841
836
  "relativePath": "../../../../../node_modules/@endo/common/throw-labeled.js",
842
- "mtime": "2025-02-24T10:58:09.000Z",
837
+ "mtime": "2025-04-16T14:08:45.000Z",
843
838
  "size": 833
844
839
  },
845
840
  {
846
841
  "relativePath": "../../../../ERTP/src/transientNotifier.js",
847
- "mtime": "2025-03-13T03:55:22.973Z",
842
+ "mtime": "2025-04-16T13:41:44.971Z",
848
843
  "size": 1037
849
844
  },
850
845
  {
851
846
  "relativePath": "../../../../ERTP/src/amountStore.js",
852
- "mtime": "2025-03-13T03:55:22.967Z",
847
+ "mtime": "2025-04-16T13:41:44.965Z",
853
848
  "size": 867
854
849
  },
855
850
  {
856
851
  "relativePath": "../../../../base-zone/src/index.js",
857
- "mtime": "2025-03-13T03:55:23.300Z",
852
+ "mtime": "2025-04-16T13:41:45.260Z",
858
853
  "size": 306
859
854
  },
860
855
  {
861
856
  "relativePath": "../../../../base-zone/src/heap.js",
862
- "mtime": "2025-03-13T03:55:23.300Z",
857
+ "mtime": "2025-04-16T13:41:45.260Z",
863
858
  "size": 1843
864
859
  },
865
860
  {
@@ -884,63 +879,63 @@
884
879
  },
885
880
  {
886
881
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-pre-cjs.js",
887
- "mtime": "2025-02-24T10:58:07.000Z",
882
+ "mtime": "2025-04-16T14:08:44.000Z",
888
883
  "size": 1801
889
884
  },
890
885
  {
891
886
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-json.js",
892
- "mtime": "2025-02-24T10:58:07.000Z",
887
+ "mtime": "2025-04-16T14:08:44.000Z",
893
888
  "size": 1086
894
889
  },
895
890
  {
896
891
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-text.js",
897
- "mtime": "2025-02-24T10:58:07.000Z",
892
+ "mtime": "2025-04-16T14:08:44.000Z",
898
893
  "size": 1095
899
894
  },
900
895
  {
901
896
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-bytes.js",
902
- "mtime": "2025-02-24T10:58:07.000Z",
897
+ "mtime": "2025-04-16T14:08:44.000Z",
903
898
  "size": 1136
904
899
  },
905
900
  {
906
901
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-pre-mjs.js",
907
- "mtime": "2025-02-24T10:58:07.000Z",
902
+ "mtime": "2025-04-16T14:08:44.000Z",
908
903
  "size": 1172
909
904
  },
910
905
  {
911
906
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/link.js",
912
- "mtime": "2025-02-24T10:58:07.000Z",
907
+ "mtime": "2025-04-16T14:08:44.000Z",
913
908
  "size": 13053
914
909
  },
915
910
  {
916
911
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/json.js",
917
- "mtime": "2025-02-24T10:58:07.000Z",
912
+ "mtime": "2025-04-16T14:08:44.000Z",
918
913
  "size": 508
919
914
  },
920
915
  {
921
916
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/powers.js",
922
- "mtime": "2025-02-24T10:58:07.000Z",
917
+ "mtime": "2025-04-16T14:08:44.000Z",
923
918
  "size": 2681
924
919
  },
925
920
  {
926
921
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/node-module-specifier.js",
927
- "mtime": "2025-02-24T10:58:07.000Z",
922
+ "mtime": "2025-04-16T14:08:44.000Z",
928
923
  "size": 5152
929
924
  },
930
925
  {
931
926
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/compartment-map.js",
932
- "mtime": "2025-02-24T10:58:07.000Z",
927
+ "mtime": "2025-04-16T14:08:44.000Z",
933
928
  "size": 12804
934
929
  },
935
930
  {
936
931
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/import-hook.js",
937
- "mtime": "2025-02-24T10:58:07.000Z",
938
- "size": 24548
932
+ "mtime": "2025-04-16T14:08:44.000Z",
933
+ "size": 24002
939
934
  },
940
935
  {
941
936
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/policy.js",
942
- "mtime": "2025-02-24T10:58:07.000Z",
943
- "size": 14953
937
+ "mtime": "2025-04-16T14:08:44.000Z",
938
+ "size": 14937
944
939
  },
945
940
  {
946
941
  "relativePath": "../../../../../node_modules/@endo/zip/index.js",
@@ -949,42 +944,42 @@
949
944
  },
950
945
  {
951
946
  "relativePath": "../../../../base-zone/src/exports.js",
952
- "mtime": "2025-03-13T03:55:23.299Z",
947
+ "mtime": "2025-04-16T13:41:45.260Z",
953
948
  "size": 76
954
949
  },
955
950
  {
956
951
  "relativePath": "../../../../base-zone/src/make-once.js",
957
- "mtime": "2025-03-13T03:55:23.301Z",
952
+ "mtime": "2025-04-16T13:41:45.262Z",
958
953
  "size": 3282
959
954
  },
960
955
  {
961
956
  "relativePath": "../../../../base-zone/src/keys.js",
962
- "mtime": "2025-03-13T03:55:23.300Z",
957
+ "mtime": "2025-04-16T13:41:45.261Z",
963
958
  "size": 552
964
959
  },
965
960
  {
966
961
  "relativePath": "../../../../base-zone/src/is-passable.js",
967
- "mtime": "2025-03-13T03:55:55.511Z",
968
- "size": 266
962
+ "mtime": "2025-04-16T13:41:45.261Z",
963
+ "size": 322
969
964
  },
970
965
  {
971
966
  "relativePath": "../../../../base-zone/src/watch-promise.js",
972
- "mtime": "2025-03-13T03:55:23.302Z",
967
+ "mtime": "2025-04-16T13:41:45.263Z",
973
968
  "size": 2371
974
969
  },
975
970
  {
976
971
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/parse-cjs-shared-export-wrapper.js",
977
- "mtime": "2025-02-24T10:58:07.000Z",
978
- "size": 7008
972
+ "mtime": "2025-04-16T14:08:44.000Z",
973
+ "size": 6955
979
974
  },
980
975
  {
981
976
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/map-parser.js",
982
- "mtime": "2025-02-24T10:58:07.000Z",
977
+ "mtime": "2025-04-16T14:08:44.000Z",
983
978
  "size": 10479
984
979
  },
985
980
  {
986
981
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/policy-format.js",
987
- "mtime": "2025-02-24T10:58:07.000Z",
982
+ "mtime": "2025-04-16T14:08:44.000Z",
988
983
  "size": 6954
989
984
  },
990
985
  {
@@ -998,18 +993,18 @@
998
993
  "size": 1349
999
994
  },
1000
995
  {
1001
- "relativePath": "../../../../../node_modules/@endo/zip/src/reader.js",
996
+ "relativePath": "../../../../../node_modules/@endo/zip/src/writer.js",
1002
997
  "mtime": "2025-02-24T10:58:08.000Z",
1003
- "size": 1384
998
+ "size": 1434
1004
999
  },
1005
1000
  {
1006
- "relativePath": "../../../../../node_modules/@endo/zip/src/writer.js",
1001
+ "relativePath": "../../../../../node_modules/@endo/zip/src/reader.js",
1007
1002
  "mtime": "2025-02-24T10:58:08.000Z",
1008
- "size": 1434
1003
+ "size": 1384
1009
1004
  },
1010
1005
  {
1011
1006
  "relativePath": "../../../../../node_modules/@endo/compartment-mapper/src/extension.js",
1012
- "mtime": "2025-02-24T10:58:07.000Z",
1007
+ "mtime": "2025-04-16T14:08:44.000Z",
1013
1008
  "size": 558
1014
1009
  },
1015
1010
  {
@@ -1018,24 +1013,24 @@
1018
1013
  "size": 2066
1019
1014
  },
1020
1015
  {
1021
- "relativePath": "../../../../../node_modules/@endo/zip/src/buffer-reader.js",
1016
+ "relativePath": "../../../../../node_modules/@endo/zip/src/buffer-writer.js",
1022
1017
  "mtime": "2025-02-24T10:58:08.000Z",
1023
- "size": 6160
1018
+ "size": 4177
1024
1019
  },
1025
1020
  {
1026
- "relativePath": "../../../../../node_modules/@endo/zip/src/format-reader.js",
1021
+ "relativePath": "../../../../../node_modules/@endo/zip/src/format-writer.js",
1027
1022
  "mtime": "2025-02-24T10:58:08.000Z",
1028
- "size": 14620
1023
+ "size": 7377
1029
1024
  },
1030
1025
  {
1031
- "relativePath": "../../../../../node_modules/@endo/zip/src/buffer-writer.js",
1026
+ "relativePath": "../../../../../node_modules/@endo/zip/src/buffer-reader.js",
1032
1027
  "mtime": "2025-02-24T10:58:08.000Z",
1033
- "size": 4177
1028
+ "size": 6160
1034
1029
  },
1035
1030
  {
1036
- "relativePath": "../../../../../node_modules/@endo/zip/src/format-writer.js",
1031
+ "relativePath": "../../../../../node_modules/@endo/zip/src/format-reader.js",
1037
1032
  "mtime": "2025-02-24T10:58:08.000Z",
1038
- "size": 7377
1033
+ "size": 14620
1039
1034
  },
1040
1035
  {
1041
1036
  "relativePath": "../../../../../node_modules/@endo/zip/src/crc32.js",