@agoric/zoe 0.26.3-dev-8baf0aa.0 → 0.26.3-dev-cc54325.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.
- package/README.md +2 -2
- package/bundles/bundle-contractFacet-js-meta.json +88 -80
- package/bundles/bundle-contractFacet.js +1 -1
- package/package.json +11 -10
- package/src/contractFacet/reallocate.d.ts +3 -0
- package/src/contractFacet/reallocate.d.ts.map +1 -0
- package/src/contractFacet/reallocate.js +94 -0
- package/src/contractFacet/types.d.ts +16 -1
- package/src/contractFacet/types.d.ts.map +1 -1
- package/src/contractFacet/types.js +20 -0
- package/src/contractFacet/zcfSeat.d.ts.map +1 -1
- package/src/contractFacet/zcfSeat.js +104 -3
- package/src/contractFacet/zcfZygote.d.ts.map +1 -1
- package/src/contractFacet/zcfZygote.js +31 -22
- package/src/contractSupport/atomicTransfer.d.ts +0 -6
- package/src/contractSupport/atomicTransfer.d.ts.map +1 -1
- package/src/contractSupport/atomicTransfer.js +5 -90
- package/src/contractSupport/zoeHelpers.d.ts.map +1 -1
- package/src/contractSupport/zoeHelpers.js +3 -10
- package/src/contracts/auction/firstPriceLogic.d.ts.map +1 -1
- package/src/contracts/auction/firstPriceLogic.js +1 -3
- package/src/contracts/auction/secondPriceLogic.d.ts.map +1 -1
- package/src/contracts/auction/secondPriceLogic.js +1 -3
- package/src/contracts/autoswap.d.ts.map +1 -1
- package/src/contracts/autoswap.js +3 -7
- package/src/contracts/barterExchange.d.ts.map +1 -1
- package/src/contracts/barterExchange.js +2 -3
- package/src/contracts/callSpread/fundedCallSpread.d.ts.map +1 -1
- package/src/contracts/callSpread/fundedCallSpread.js +1 -3
- package/src/contracts/callSpread/pricedCallSpread.d.ts.map +1 -1
- package/src/contracts/callSpread/pricedCallSpread.js +1 -3
- package/src/contracts/loan/borrow.d.ts.map +1 -1
- package/src/contracts/loan/borrow.js +1 -3
- package/src/contracts/loan/close.d.ts.map +1 -1
- package/src/contracts/loan/close.js +2 -6
- package/src/contracts/scaledPriceAuthority.d.ts +10 -1
- package/src/contracts/scaledPriceAuthority.d.ts.map +1 -1
- package/src/contracts/scaledPriceAuthority.js +8 -1
- package/src/contracts/sellItems.d.ts.map +1 -1
- package/src/contracts/sellItems.js +1 -3
- package/src/internal-types.d.ts +1 -1
- package/src/internal-types.d.ts.map +1 -1
- package/src/internal-types.js +1 -1
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ import { prepareExo, prepareExoClass } from '@agoric/vat-data';
|
|
|
82
82
|
|
|
83
83
|
const { quote: q, Fail } = assert;
|
|
84
84
|
|
|
85
|
-
export const
|
|
85
|
+
export const start = async (zcf, _privateArgs, instanceBaggage) => {
|
|
86
86
|
const CODE_VERSION = 2;
|
|
87
87
|
const isFirstIncarnation = !instanceBaggage.has('codeVersion');
|
|
88
88
|
if (isFirstIncarnation) {
|
|
@@ -128,7 +128,7 @@ export const prepare = async (zcf, _privateArgs, instanceBaggage) => {
|
|
|
128
128
|
);
|
|
129
129
|
return harden({ creatorFacet });
|
|
130
130
|
};
|
|
131
|
-
harden(
|
|
131
|
+
harden(start);
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
For an example contract upgrade, see the test at https://github.com/Agoric/agoric-sdk/blob/master/packages/zoe/test/swingsetTests/upgradeCoveredCall/test-coveredCall-service-upgrade.js .
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bundleFileName": "bundle-contractFacet.js",
|
|
3
|
-
"bundleTime": "2023-07-
|
|
3
|
+
"bundleTime": "2023-07-27T19:40:32.721Z",
|
|
4
4
|
"moduleSource": {
|
|
5
5
|
"relative": "../../src/contractFacet/vatRoot.js",
|
|
6
6
|
"absolute": "/home/runner/work/agoric-sdk/agoric-sdk/packages/zoe/src/contractFacet/vatRoot.js"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"contents": [
|
|
9
9
|
{
|
|
10
10
|
"relativePath": "",
|
|
11
|
-
"mtime": "2023-07-
|
|
11
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"relativePath": "../../../../../node_modules/@endo/marshal/index.js",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
"relativePath": "../../internal-types.js",
|
|
23
|
-
"mtime": "2023-07-
|
|
23
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"relativePath": "../zcfZygote.js",
|
|
27
|
-
"mtime": "2023-07-
|
|
27
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"relativePath": "../../../../../node_modules/@endo/marshal/src/deeplyFulfilled.js",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"relativePath": "../../../../ERTP/src/index.js",
|
|
71
|
-
"mtime": "2023-07-
|
|
71
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"relativePath": "../../../../../node_modules/@endo/promise-kit/index.js",
|
|
@@ -76,67 +76,67 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"relativePath": "../../../../store/src/index.js",
|
|
79
|
-
"mtime": "2023-07-
|
|
79
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"relativePath": "../../../../vat-data/src/index.js",
|
|
83
|
-
"mtime": "2023-07-
|
|
83
|
+
"mtime": "2023-07-27T19:37:35.505Z"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
"relativePath": "../../../../internal/src/index.js",
|
|
87
|
-
"mtime": "2023-07-
|
|
87
|
+
"mtime": "2023-07-27T19:37:35.469Z"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"relativePath": "../../cleanProposal.js",
|
|
91
|
-
"mtime": "2023-07-
|
|
91
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"relativePath": "../evalContractCode.js",
|
|
95
|
-
"mtime": "2023-07-
|
|
95
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
"relativePath": "../exit.js",
|
|
99
|
-
"mtime": "2023-07-
|
|
99
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
"relativePath": "../../makeHandle.js",
|
|
103
|
-
"mtime": "2023-07-
|
|
103
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
"relativePath": "../../issuerStorage.js",
|
|
107
|
-
"mtime": "2023-07-
|
|
107
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
110
|
"relativePath": "../zcfSeat.js",
|
|
111
|
-
"mtime": "2023-07-
|
|
111
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
114
|
"relativePath": "../../instanceRecordStorage.js",
|
|
115
|
-
"mtime": "2023-07-
|
|
115
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
"relativePath": "../../handleWarning.js",
|
|
119
|
-
"mtime": "2023-07-
|
|
119
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
"relativePath": "../offerHandlerStorage.js",
|
|
123
|
-
"mtime": "2023-07-
|
|
123
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
126
|
"relativePath": "../internal-types.js",
|
|
127
|
-
"mtime": "2023-07-
|
|
127
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
"relativePath": "../../../../SwingSet/src/types-ambient.js",
|
|
131
|
-
"mtime": "2023-07-
|
|
131
|
+
"mtime": "2023-07-27T19:37:35.409Z"
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
"relativePath": "../../typeGuards.js",
|
|
135
|
-
"mtime": "2023-07-
|
|
135
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
"relativePath": "../zcfMint.js",
|
|
139
|
-
"mtime": "2023-07-
|
|
139
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
142
|
"relativePath": "../../../../../node_modules/@endo/nat/src/index.js",
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
170
|
"relativePath": "../../../../../node_modules/@endo/pass-style/src/passStyleOf.js",
|
|
171
|
-
"mtime": "2023-07-
|
|
171
|
+
"mtime": "2023-07-27T19:39:03.243Z"
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
174
|
"relativePath": "../../../../../node_modules/@endo/pass-style/src/makeTagged.js",
|
|
@@ -192,15 +192,15 @@
|
|
|
192
192
|
},
|
|
193
193
|
{
|
|
194
194
|
"relativePath": "../../../../ERTP/src/amountMath.js",
|
|
195
|
-
"mtime": "2023-07-
|
|
195
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
196
196
|
},
|
|
197
197
|
{
|
|
198
198
|
"relativePath": "../../../../ERTP/src/issuerKit.js",
|
|
199
|
-
"mtime": "2023-07-
|
|
199
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
"relativePath": "../../../../ERTP/src/typeGuards.js",
|
|
203
|
-
"mtime": "2023-07-
|
|
203
|
+
"mtime": "2023-07-27T19:37:35.385Z"
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"relativePath": "../../../../../node_modules/@endo/promise-kit/src/promise-executor-kit.js",
|
|
@@ -228,67 +228,67 @@
|
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
"relativePath": "../../../../store/src/stores/scalarWeakSetStore.js",
|
|
231
|
-
"mtime": "2023-07-
|
|
231
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
"relativePath": "../../../../store/src/stores/scalarSetStore.js",
|
|
235
|
-
"mtime": "2023-07-
|
|
235
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
238
|
"relativePath": "../../../../store/src/stores/scalarWeakMapStore.js",
|
|
239
|
-
"mtime": "2023-07-
|
|
239
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
"relativePath": "../../../../store/src/stores/scalarMapStore.js",
|
|
243
|
-
"mtime": "2023-07-
|
|
243
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"relativePath": "../../../../store/src/stores/store-utils.js",
|
|
247
|
-
"mtime": "2023-07-
|
|
247
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
"relativePath": "../../../../store/src/legacy/legacyMap.js",
|
|
251
|
-
"mtime": "2023-07-
|
|
251
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
"relativePath": "../../../../store/src/legacy/legacyWeakMap.js",
|
|
255
|
-
"mtime": "2023-07-
|
|
255
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
"relativePath": "../../../../vat-data/src/vat-data-bindings.js",
|
|
259
|
-
"mtime": "2023-07-
|
|
259
|
+
"mtime": "2023-07-27T19:37:35.505Z"
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"relativePath": "../../../../vat-data/src/exo-utils.js",
|
|
263
|
-
"mtime": "2023-07-
|
|
263
|
+
"mtime": "2023-07-27T19:37:35.505Z"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"relativePath": "../../../../internal/src/config.js",
|
|
267
|
-
"mtime": "2023-07-
|
|
267
|
+
"mtime": "2023-07-27T19:37:35.469Z"
|
|
268
268
|
},
|
|
269
269
|
{
|
|
270
270
|
"relativePath": "../../../../internal/src/debug.js",
|
|
271
|
-
"mtime": "2023-07-
|
|
271
|
+
"mtime": "2023-07-27T19:37:35.469Z"
|
|
272
272
|
},
|
|
273
273
|
{
|
|
274
274
|
"relativePath": "../../../../internal/src/utils.js",
|
|
275
|
-
"mtime": "2023-07-
|
|
275
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
276
276
|
},
|
|
277
277
|
{
|
|
278
278
|
"relativePath": "../../../../internal/src/method-tools.js",
|
|
279
|
-
"mtime": "2023-07-
|
|
279
|
+
"mtime": "2023-07-27T19:37:35.469Z"
|
|
280
280
|
},
|
|
281
281
|
{
|
|
282
282
|
"relativePath": "../../../../internal/src/typeGuards.js",
|
|
283
|
-
"mtime": "2023-07-
|
|
283
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
284
284
|
},
|
|
285
285
|
{
|
|
286
286
|
"relativePath": "../../../../assert/src/assert.js",
|
|
287
|
-
"mtime": "2023-07-
|
|
287
|
+
"mtime": "2023-07-27T19:37:35.433Z"
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
290
|
"relativePath": "../../objArrayConversion.js",
|
|
291
|
-
"mtime": "2023-07-
|
|
291
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
292
292
|
},
|
|
293
293
|
{
|
|
294
294
|
"relativePath": "../../../../../node_modules/@endo/import-bundle/src/index.js",
|
|
@@ -296,31 +296,39 @@
|
|
|
296
296
|
},
|
|
297
297
|
{
|
|
298
298
|
"relativePath": "../../../../time/index.js",
|
|
299
|
-
"mtime": "2023-07-
|
|
299
|
+
"mtime": "2023-07-27T19:37:35.505Z"
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
302
|
"relativePath": "../../issuerRecord.js",
|
|
303
|
-
"mtime": "2023-07-
|
|
303
|
+
"mtime": "2023-07-27T19:37:35.529Z"
|
|
304
304
|
},
|
|
305
305
|
{
|
|
306
306
|
"relativePath": "../offerSafety.js",
|
|
307
|
-
"mtime": "2023-07-
|
|
307
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"relativePath": "../rightsConservation.js",
|
|
311
|
-
"mtime": "2023-07-
|
|
311
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"relativePath": "../allocationMath.js",
|
|
315
|
-
"mtime": "2023-07-
|
|
315
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"relativePath": "../reallocate.js",
|
|
319
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"relativePath": "../../contractSupport/atomicTransfer.js",
|
|
323
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
316
324
|
},
|
|
317
325
|
{
|
|
318
326
|
"relativePath": "../../../../notifier/src/index.js",
|
|
319
|
-
"mtime": "2023-07-
|
|
327
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
320
328
|
},
|
|
321
329
|
{
|
|
322
330
|
"relativePath": "../types.js",
|
|
323
|
-
"mtime": "2023-07-
|
|
331
|
+
"mtime": "2023-07-27T19:37:35.525Z"
|
|
324
332
|
},
|
|
325
333
|
{
|
|
326
334
|
"relativePath": "../../../../../node_modules/@endo/pass-style/src/copyArray.js",
|
|
@@ -344,31 +352,31 @@
|
|
|
344
352
|
},
|
|
345
353
|
{
|
|
346
354
|
"relativePath": "../../../../ERTP/src/mathHelpers/natMathHelpers.js",
|
|
347
|
-
"mtime": "2023-07-
|
|
355
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
348
356
|
},
|
|
349
357
|
{
|
|
350
358
|
"relativePath": "../../../../ERTP/src/mathHelpers/setMathHelpers.js",
|
|
351
|
-
"mtime": "2023-07-
|
|
359
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
352
360
|
},
|
|
353
361
|
{
|
|
354
362
|
"relativePath": "../../../../ERTP/src/mathHelpers/copySetMathHelpers.js",
|
|
355
|
-
"mtime": "2023-07-
|
|
363
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
356
364
|
},
|
|
357
365
|
{
|
|
358
366
|
"relativePath": "../../../../ERTP/src/mathHelpers/copyBagMathHelpers.js",
|
|
359
|
-
"mtime": "2023-07-
|
|
367
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
360
368
|
},
|
|
361
369
|
{
|
|
362
370
|
"relativePath": "../../../../ERTP/src/displayInfo.js",
|
|
363
|
-
"mtime": "2023-07-
|
|
371
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
364
372
|
},
|
|
365
373
|
{
|
|
366
374
|
"relativePath": "../../../../ERTP/src/paymentLedger.js",
|
|
367
|
-
"mtime": "2023-07-
|
|
375
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
368
376
|
},
|
|
369
377
|
{
|
|
370
378
|
"relativePath": "../../../../ERTP/src/types-ambient.js",
|
|
371
|
-
"mtime": "2023-07-
|
|
379
|
+
"mtime": "2023-07-27T19:37:35.385Z"
|
|
372
380
|
},
|
|
373
381
|
{
|
|
374
382
|
"relativePath": "../../../../../node_modules/@endo/patterns/src/keys/checkKey.js",
|
|
@@ -416,7 +424,7 @@
|
|
|
416
424
|
},
|
|
417
425
|
{
|
|
418
426
|
"relativePath": "../../../../store/src/types.js",
|
|
419
|
-
"mtime": "2023-07-
|
|
427
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
420
428
|
},
|
|
421
429
|
{
|
|
422
430
|
"relativePath": "../../../../../node_modules/@endo/stream/index.js",
|
|
@@ -428,7 +436,7 @@
|
|
|
428
436
|
},
|
|
429
437
|
{
|
|
430
438
|
"relativePath": "../../../../assert/src/types.js",
|
|
431
|
-
"mtime": "2023-07-
|
|
439
|
+
"mtime": "2023-07-27T19:37:35.433Z"
|
|
432
440
|
},
|
|
433
441
|
{
|
|
434
442
|
"relativePath": "../../../../../node_modules/@endo/compartment-mapper/import-archive.js",
|
|
@@ -444,39 +452,39 @@
|
|
|
444
452
|
},
|
|
445
453
|
{
|
|
446
454
|
"relativePath": "../../../../time/src/timeMath.js",
|
|
447
|
-
"mtime": "2023-07-
|
|
455
|
+
"mtime": "2023-07-27T19:37:35.505Z"
|
|
448
456
|
},
|
|
449
457
|
{
|
|
450
458
|
"relativePath": "../../../../time/src/typeGuards.js",
|
|
451
|
-
"mtime": "2023-07-
|
|
459
|
+
"mtime": "2023-07-27T19:37:35.505Z"
|
|
452
460
|
},
|
|
453
461
|
{
|
|
454
462
|
"relativePath": "../../../../notifier/src/publish-kit.js",
|
|
455
|
-
"mtime": "2023-07-
|
|
463
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
456
464
|
},
|
|
457
465
|
{
|
|
458
466
|
"relativePath": "../../../../notifier/src/subscribe.js",
|
|
459
|
-
"mtime": "2023-07-
|
|
467
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
460
468
|
},
|
|
461
469
|
{
|
|
462
470
|
"relativePath": "../../../../notifier/src/notifier.js",
|
|
463
|
-
"mtime": "2023-07-
|
|
471
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
464
472
|
},
|
|
465
473
|
{
|
|
466
474
|
"relativePath": "../../../../notifier/src/subscriber.js",
|
|
467
|
-
"mtime": "2023-07-
|
|
475
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
468
476
|
},
|
|
469
477
|
{
|
|
470
478
|
"relativePath": "../../../../notifier/src/asyncIterableAdaptor.js",
|
|
471
|
-
"mtime": "2023-07-
|
|
479
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
472
480
|
},
|
|
473
481
|
{
|
|
474
482
|
"relativePath": "../../../../notifier/src/storesub.js",
|
|
475
|
-
"mtime": "2023-07-
|
|
483
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
476
484
|
},
|
|
477
485
|
{
|
|
478
486
|
"relativePath": "../../../../notifier/src/stored-notifier.js",
|
|
479
|
-
"mtime": "2023-07-
|
|
487
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
480
488
|
},
|
|
481
489
|
{
|
|
482
490
|
"relativePath": "../../../../../node_modules/@endo/env-options/index.js",
|
|
@@ -484,15 +492,15 @@
|
|
|
484
492
|
},
|
|
485
493
|
{
|
|
486
494
|
"relativePath": "../../../../ERTP/src/payment.js",
|
|
487
|
-
"mtime": "2023-07-
|
|
495
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
488
496
|
},
|
|
489
497
|
{
|
|
490
498
|
"relativePath": "../../../../ERTP/src/purse.js",
|
|
491
|
-
"mtime": "2023-07-
|
|
499
|
+
"mtime": "2023-07-27T19:37:35.381Z"
|
|
492
500
|
},
|
|
493
501
|
{
|
|
494
502
|
"relativePath": "../../../../store/exported.js",
|
|
495
|
-
"mtime": "2023-07-
|
|
503
|
+
"mtime": "2023-07-27T19:37:35.481Z"
|
|
496
504
|
},
|
|
497
505
|
{
|
|
498
506
|
"relativePath": "../../../../../node_modules/jessie.js/src/ring0/main.js",
|
|
@@ -524,19 +532,19 @@
|
|
|
524
532
|
},
|
|
525
533
|
{
|
|
526
534
|
"relativePath": "../../../../notifier/src/types-ambient.js",
|
|
527
|
-
"mtime": "2023-07-
|
|
535
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
528
536
|
},
|
|
529
537
|
{
|
|
530
538
|
"relativePath": "../../../../internal/src/upgrade-api.js",
|
|
531
|
-
"mtime": "2023-07-
|
|
539
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
532
540
|
},
|
|
533
541
|
{
|
|
534
542
|
"relativePath": "../../../../notifier/src/topic.js",
|
|
535
|
-
"mtime": "2023-07-
|
|
543
|
+
"mtime": "2023-07-27T19:37:35.473Z"
|
|
536
544
|
},
|
|
537
545
|
{
|
|
538
546
|
"relativePath": "../../../../internal/src/lib-chainStorage.js",
|
|
539
|
-
"mtime": "2023-07-
|
|
547
|
+
"mtime": "2023-07-27T19:37:35.469Z"
|
|
540
548
|
},
|
|
541
549
|
{
|
|
542
550
|
"relativePath": "../../../../../node_modules/@endo/env-options/src/env-options.js",
|
|
@@ -544,7 +552,7 @@
|
|
|
544
552
|
},
|
|
545
553
|
{
|
|
546
554
|
"relativePath": "../../../../ERTP/src/transientNotifier.js",
|
|
547
|
-
"mtime": "2023-07-
|
|
555
|
+
"mtime": "2023-07-27T19:37:35.385Z"
|
|
548
556
|
},
|
|
549
557
|
{
|
|
550
558
|
"relativePath": "../../../../../node_modules/jessie.js/src/ring0/E.js",
|
|
@@ -628,11 +636,11 @@
|
|
|
628
636
|
},
|
|
629
637
|
{
|
|
630
638
|
"relativePath": "../../../../zone/src/index.js",
|
|
631
|
-
"mtime": "2023-07-
|
|
639
|
+
"mtime": "2023-07-27T19:37:35.537Z"
|
|
632
640
|
},
|
|
633
641
|
{
|
|
634
642
|
"relativePath": "../../../../internal/src/callback.js",
|
|
635
|
-
"mtime": "2023-07-
|
|
643
|
+
"mtime": "2023-07-27T19:37:35.469Z"
|
|
636
644
|
},
|
|
637
645
|
{
|
|
638
646
|
"relativePath": "../../../../../node_modules/@endo/zip/src/types.js",
|
|
@@ -660,7 +668,7 @@
|
|
|
660
668
|
},
|
|
661
669
|
{
|
|
662
670
|
"relativePath": "../../../../zone/src/heap.js",
|
|
663
|
-
"mtime": "2023-07-
|
|
671
|
+
"mtime": "2023-07-27T19:37:35.537Z"
|
|
664
672
|
},
|
|
665
673
|
{
|
|
666
674
|
"relativePath": "../../../../../node_modules/@endo/zip/src/buffer-reader.js",
|
|
@@ -680,15 +688,15 @@
|
|
|
680
688
|
},
|
|
681
689
|
{
|
|
682
690
|
"relativePath": "../../../../zone/src/make-once.js",
|
|
683
|
-
"mtime": "2023-07-
|
|
691
|
+
"mtime": "2023-07-27T19:37:35.537Z"
|
|
684
692
|
},
|
|
685
693
|
{
|
|
686
694
|
"relativePath": "../../../../zone/src/keys.js",
|
|
687
|
-
"mtime": "2023-07-
|
|
695
|
+
"mtime": "2023-07-27T19:37:35.537Z"
|
|
688
696
|
},
|
|
689
697
|
{
|
|
690
698
|
"relativePath": "../../../../zone/src/is-passable.js",
|
|
691
|
-
"mtime": "2023-07-
|
|
699
|
+
"mtime": "2023-07-27T19:37:35.537Z"
|
|
692
700
|
},
|
|
693
701
|
{
|
|
694
702
|
"relativePath": "../../../../../node_modules/@endo/zip/src/crc32.js",
|