@fatsolutions/privacy-pools-core-starknet-sdk 0.0.44 → 0.0.46

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 (62) hide show
  1. package/dist/abis/ERC20.abi.js +145 -145
  2. package/dist/abis/EntryPoint.abi.d.ts +35 -12
  3. package/dist/abis/EntryPoint.abi.js +262 -230
  4. package/dist/abis/EntryPoint.abi.js.map +1 -1
  5. package/dist/abis/PrivacyPool.abi.d.ts +69 -8
  6. package/dist/abis/PrivacyPool.abi.js +228 -146
  7. package/dist/abis/PrivacyPool.abi.js.map +1 -1
  8. package/dist/account.service.d.ts +16 -0
  9. package/dist/account.service.js +31 -0
  10. package/dist/account.service.js.map +1 -0
  11. package/dist/auditor.d.ts +31 -0
  12. package/dist/auditor.js +146 -0
  13. package/dist/auditor.js.map +1 -0
  14. package/dist/contracts/contracts.service.d.ts +3 -3
  15. package/dist/contracts/contracts.service.js +71 -19
  16. package/dist/contracts/contracts.service.js.map +1 -1
  17. package/dist/contracts/index.js.map +1 -1
  18. package/dist/contracts/transactionHandler.d.ts +1 -1
  19. package/dist/contracts/transactionHandler.js +2 -4
  20. package/dist/contracts/transactionHandler.js.map +1 -1
  21. package/dist/data.service.d.ts +20 -6
  22. package/dist/data.service.js +50 -7
  23. package/dist/data.service.js.map +1 -1
  24. package/dist/errors/contracts.errors.js +1 -1
  25. package/dist/errors/index.js.map +1 -1
  26. package/dist/garaga.js +9 -3
  27. package/dist/garaga.js.map +1 -1
  28. package/dist/index.d.ts +3 -1
  29. package/dist/index.js +4 -1
  30. package/dist/index.js.map +1 -1
  31. package/dist/sdk.js +4 -4
  32. package/dist/sdk.js.map +1 -1
  33. package/dist/types/conversions.js.map +1 -1
  34. package/dist/types/entrypoint.d.ts +2 -0
  35. package/dist/types/entrypoint.js +50 -30
  36. package/dist/types/entrypoint.js.map +1 -1
  37. package/dist/types/snarkjs.d.ts +7 -46
  38. package/dist/utils.d.ts +4 -1
  39. package/dist/utils.js +11 -2
  40. package/dist/utils.js.map +1 -1
  41. package/package.json +14 -3
  42. package/src/abis/ERC20.abi.ts +145 -145
  43. package/src/abis/EntryPoint.abi.ts +262 -230
  44. package/src/abis/PrivacyPool.abi.ts +228 -146
  45. package/src/abis/index.ts +1 -1
  46. package/src/account.service.ts +47 -0
  47. package/src/auditor.ts +219 -0
  48. package/src/contracts/contracts.service.ts +325 -73
  49. package/src/contracts/index.ts +2 -2
  50. package/src/contracts/transactionHandler.ts +16 -7
  51. package/src/data.service.ts +123 -146
  52. package/src/errors/contracts.errors.ts +6 -6
  53. package/src/errors/index.ts +18 -24
  54. package/src/garaga.ts +10 -4
  55. package/src/index.ts +17 -27
  56. package/src/sdk.ts +39 -26
  57. package/src/types/conversions.ts +11 -12
  58. package/src/types/entrypoint.ts +74 -41
  59. package/src/types/garaga.ts +32 -32
  60. package/src/types/index.ts +1 -1
  61. package/src/types/snarkjs.ts +8 -20
  62. package/src/utils.ts +33 -12
@@ -2,7 +2,7 @@ export const PrivacyPoolABI = [
2
2
  {
3
3
  "type": "impl",
4
4
  "name": "PrivacyPoolImpl",
5
- "interface_name": "privacy_pools::interfaces::IPool::IPrivacyPool"
5
+ "interface_name": "privacy_pools::interfaces::IPool::IPrivacyPool",
6
6
  },
7
7
  {
8
8
  "type": "struct",
@@ -10,13 +10,59 @@ export const PrivacyPoolABI = [
10
10
  "members": [
11
11
  {
12
12
  "name": "low",
13
- "type": "core::integer::u128"
13
+ "type": "core::integer::u128",
14
14
  },
15
15
  {
16
16
  "name": "high",
17
- "type": "core::integer::u128"
18
- }
19
- ]
17
+ "type": "core::integer::u128",
18
+ },
19
+ ],
20
+ },
21
+ {
22
+ "type": "struct",
23
+ "name": "core::byte_array::ByteArray",
24
+ "members": [
25
+ {
26
+ "name": "data",
27
+ "type": "core::array::Array::<core::bytes_31::bytes31>",
28
+ },
29
+ {
30
+ "name": "pending_word",
31
+ "type": "core::felt252",
32
+ },
33
+ {
34
+ "name": "pending_word_len",
35
+ "type": "core::internal::bounded_int::BoundedInt::<0, 30>",
36
+ },
37
+ ],
38
+ },
39
+ {
40
+ "type": "struct",
41
+ "name": "privacy_pools::interfaces::Structs::AuditorData",
42
+ "members": [
43
+ {
44
+ "name": "tag",
45
+ "type": "core::integer::u256",
46
+ },
47
+ {
48
+ "name": "ciphertext",
49
+ "type": "core::byte_array::ByteArray",
50
+ },
51
+ ],
52
+ },
53
+ {
54
+ "type": "enum",
55
+ "name": "core::option::Option::<privacy_pools::interfaces::Structs::AuditorData>",
56
+ "variants": [
57
+ {
58
+ "name": "Some",
59
+ "type": "privacy_pools::interfaces::Structs::AuditorData",
60
+ },
61
+ {
62
+ "name": "None",
63
+ "type": "()",
64
+ },
65
+ ],
20
66
  },
21
67
  {
22
68
  "type": "struct",
@@ -24,9 +70,9 @@ export const PrivacyPoolABI = [
24
70
  "members": [
25
71
  {
26
72
  "name": "snapshot",
27
- "type": "@core::array::Array::<core::felt252>"
28
- }
29
- ]
73
+ "type": "@core::array::Array::<core::felt252>",
74
+ },
75
+ ],
30
76
  },
31
77
  {
32
78
  "type": "struct",
@@ -34,13 +80,17 @@ export const PrivacyPoolABI = [
34
80
  "members": [
35
81
  {
36
82
  "name": "processor",
37
- "type": "core::starknet::contract_address::ContractAddress"
83
+ "type": "core::starknet::contract_address::ContractAddress",
84
+ },
85
+ {
86
+ "name": "auditorData",
87
+ "type": "core::option::Option::<privacy_pools::interfaces::Structs::AuditorData>",
38
88
  },
39
89
  {
40
90
  "name": "data",
41
- "type": "core::array::Span::<core::felt252>"
42
- }
43
- ]
91
+ "type": "core::array::Span::<core::felt252>",
92
+ },
93
+ ],
44
94
  },
45
95
  {
46
96
  "type": "struct",
@@ -48,9 +98,9 @@ export const PrivacyPoolABI = [
48
98
  "members": [
49
99
  {
50
100
  "name": "fullProof",
51
- "type": "core::array::Span::<core::felt252>"
52
- }
53
- ]
101
+ "type": "core::array::Span::<core::felt252>",
102
+ },
103
+ ],
54
104
  },
55
105
  {
56
106
  "type": "struct",
@@ -58,9 +108,9 @@ export const PrivacyPoolABI = [
58
108
  "members": [
59
109
  {
60
110
  "name": "fullProof",
61
- "type": "core::array::Span::<core::felt252>"
62
- }
63
- ]
111
+ "type": "core::array::Span::<core::felt252>",
112
+ },
113
+ ],
64
114
  },
65
115
  {
66
116
  "type": "interface",
@@ -72,23 +122,23 @@ export const PrivacyPoolABI = [
72
122
  "inputs": [
73
123
  {
74
124
  "name": "depositor",
75
- "type": "core::starknet::contract_address::ContractAddress"
125
+ "type": "core::starknet::contract_address::ContractAddress",
76
126
  },
77
127
  {
78
128
  "name": "value",
79
- "type": "core::integer::u128"
129
+ "type": "core::integer::u128",
80
130
  },
81
131
  {
82
132
  "name": "preCommitmentHash",
83
- "type": "core::integer::u256"
84
- }
133
+ "type": "core::integer::u256",
134
+ },
85
135
  ],
86
136
  "outputs": [
87
137
  {
88
- "type": "core::integer::u256"
89
- }
138
+ "type": "core::integer::u256",
139
+ },
90
140
  ],
91
- "state_mutability": "external"
141
+ "state_mutability": "external",
92
142
  },
93
143
  {
94
144
  "type": "function",
@@ -96,15 +146,15 @@ export const PrivacyPoolABI = [
96
146
  "inputs": [
97
147
  {
98
148
  "name": "withdrawal",
99
- "type": "privacy_pools::interfaces::Structs::Withdrawal"
149
+ "type": "privacy_pools::interfaces::Structs::Withdrawal",
100
150
  },
101
151
  {
102
152
  "name": "proof",
103
- "type": "privacy_pools::interfaces::Structs::WithdrawGaragaProof"
104
- }
153
+ "type": "privacy_pools::interfaces::Structs::WithdrawGaragaProof",
154
+ },
105
155
  ],
106
156
  "outputs": [],
107
- "state_mutability": "external"
157
+ "state_mutability": "external",
108
158
  },
109
159
  {
110
160
  "type": "function",
@@ -112,25 +162,25 @@ export const PrivacyPoolABI = [
112
162
  "inputs": [
113
163
  {
114
164
  "name": "proof",
115
- "type": "privacy_pools::interfaces::Structs::RagequitGaragaProof"
116
- }
165
+ "type": "privacy_pools::interfaces::Structs::RagequitGaragaProof",
166
+ },
117
167
  ],
118
168
  "outputs": [],
119
- "state_mutability": "external"
169
+ "state_mutability": "external",
120
170
  },
121
171
  {
122
172
  "type": "function",
123
173
  "name": "windDown",
124
174
  "inputs": [],
125
175
  "outputs": [],
126
- "state_mutability": "external"
127
- }
128
- ]
176
+ "state_mutability": "external",
177
+ },
178
+ ],
129
179
  },
130
180
  {
131
181
  "type": "impl",
132
182
  "name": "IStateImpl",
133
- "interface_name": "privacy_pools::interfaces::IPool::IPoolState"
183
+ "interface_name": "privacy_pools::interfaces::IPool::IPoolState",
134
184
  },
135
185
  {
136
186
  "type": "enum",
@@ -138,13 +188,13 @@ export const PrivacyPoolABI = [
138
188
  "variants": [
139
189
  {
140
190
  "name": "False",
141
- "type": "()"
191
+ "type": "()",
142
192
  },
143
193
  {
144
194
  "name": "True",
145
- "type": "()"
146
- }
147
- ]
195
+ "type": "()",
196
+ },
197
+ ],
148
198
  },
149
199
  {
150
200
  "type": "interface",
@@ -156,10 +206,10 @@ export const PrivacyPoolABI = [
156
206
  "inputs": [],
157
207
  "outputs": [
158
208
  {
159
- "type": "core::felt252"
160
- }
209
+ "type": "core::felt252",
210
+ },
161
211
  ],
162
- "state_mutability": "view"
212
+ "state_mutability": "view",
163
213
  },
164
214
  {
165
215
  "type": "function",
@@ -167,10 +217,10 @@ export const PrivacyPoolABI = [
167
217
  "inputs": [],
168
218
  "outputs": [
169
219
  {
170
- "type": "core::starknet::contract_address::ContractAddress"
171
- }
220
+ "type": "core::starknet::contract_address::ContractAddress",
221
+ },
172
222
  ],
173
- "state_mutability": "view"
223
+ "state_mutability": "view",
174
224
  },
175
225
  {
176
226
  "type": "function",
@@ -178,10 +228,10 @@ export const PrivacyPoolABI = [
178
228
  "inputs": [],
179
229
  "outputs": [
180
230
  {
181
- "type": "core::integer::u8"
182
- }
231
+ "type": "core::integer::u8",
232
+ },
183
233
  ],
184
- "state_mutability": "view"
234
+ "state_mutability": "view",
185
235
  },
186
236
  {
187
237
  "type": "function",
@@ -189,10 +239,10 @@ export const PrivacyPoolABI = [
189
239
  "inputs": [],
190
240
  "outputs": [
191
241
  {
192
- "type": "core::starknet::contract_address::ContractAddress"
193
- }
242
+ "type": "core::starknet::contract_address::ContractAddress",
243
+ },
194
244
  ],
195
- "state_mutability": "view"
245
+ "state_mutability": "view",
196
246
  },
197
247
  {
198
248
  "type": "function",
@@ -200,10 +250,10 @@ export const PrivacyPoolABI = [
200
250
  "inputs": [],
201
251
  "outputs": [
202
252
  {
203
- "type": "core::starknet::class_hash::ClassHash"
204
- }
253
+ "type": "core::starknet::class_hash::ClassHash",
254
+ },
205
255
  ],
206
- "state_mutability": "view"
256
+ "state_mutability": "view",
207
257
  },
208
258
  {
209
259
  "type": "function",
@@ -211,10 +261,10 @@ export const PrivacyPoolABI = [
211
261
  "inputs": [],
212
262
  "outputs": [
213
263
  {
214
- "type": "core::starknet::class_hash::ClassHash"
215
- }
264
+ "type": "core::starknet::class_hash::ClassHash",
265
+ },
216
266
  ],
217
- "state_mutability": "view"
267
+ "state_mutability": "view",
218
268
  },
219
269
  {
220
270
  "type": "function",
@@ -222,10 +272,10 @@ export const PrivacyPoolABI = [
222
272
  "inputs": [],
223
273
  "outputs": [
224
274
  {
225
- "type": "core::integer::u8"
226
- }
275
+ "type": "core::integer::u8",
276
+ },
227
277
  ],
228
- "state_mutability": "view"
278
+ "state_mutability": "view",
229
279
  },
230
280
  {
231
281
  "type": "function",
@@ -233,10 +283,10 @@ export const PrivacyPoolABI = [
233
283
  "inputs": [],
234
284
  "outputs": [
235
285
  {
236
- "type": "core::integer::u256"
237
- }
286
+ "type": "core::integer::u256",
287
+ },
238
288
  ],
239
- "state_mutability": "view"
289
+ "state_mutability": "view",
240
290
  },
241
291
  {
242
292
  "type": "function",
@@ -244,10 +294,10 @@ export const PrivacyPoolABI = [
244
294
  "inputs": [],
245
295
  "outputs": [
246
296
  {
247
- "type": "core::integer::u8"
248
- }
297
+ "type": "core::integer::u8",
298
+ },
249
299
  ],
250
- "state_mutability": "view"
300
+ "state_mutability": "view",
251
301
  },
252
302
  {
253
303
  "type": "function",
@@ -255,10 +305,10 @@ export const PrivacyPoolABI = [
255
305
  "inputs": [],
256
306
  "outputs": [
257
307
  {
258
- "type": "core::integer::u32"
259
- }
308
+ "type": "core::integer::u32",
309
+ },
260
310
  ],
261
- "state_mutability": "view"
311
+ "state_mutability": "view",
262
312
  },
263
313
  {
264
314
  "type": "function",
@@ -266,10 +316,10 @@ export const PrivacyPoolABI = [
266
316
  "inputs": [],
267
317
  "outputs": [
268
318
  {
269
- "type": "core::integer::u64"
270
- }
319
+ "type": "core::integer::u64",
320
+ },
271
321
  ],
272
- "state_mutability": "view"
322
+ "state_mutability": "view",
273
323
  },
274
324
  {
275
325
  "type": "function",
@@ -277,10 +327,10 @@ export const PrivacyPoolABI = [
277
327
  "inputs": [],
278
328
  "outputs": [
279
329
  {
280
- "type": "core::bool"
281
- }
330
+ "type": "core::bool",
331
+ },
282
332
  ],
283
- "state_mutability": "view"
333
+ "state_mutability": "view",
284
334
  },
285
335
  {
286
336
  "type": "function",
@@ -288,15 +338,15 @@ export const PrivacyPoolABI = [
288
338
  "inputs": [
289
339
  {
290
340
  "name": "index",
291
- "type": "core::integer::u64"
292
- }
341
+ "type": "core::integer::u64",
342
+ },
293
343
  ],
294
344
  "outputs": [
295
345
  {
296
- "type": "core::integer::u256"
297
- }
346
+ "type": "core::integer::u256",
347
+ },
298
348
  ],
299
- "state_mutability": "view"
349
+ "state_mutability": "view",
300
350
  },
301
351
  {
302
352
  "type": "function",
@@ -304,15 +354,15 @@ export const PrivacyPoolABI = [
304
354
  "inputs": [
305
355
  {
306
356
  "name": "nullifierHash",
307
- "type": "core::integer::u256"
308
- }
357
+ "type": "core::integer::u256",
358
+ },
309
359
  ],
310
360
  "outputs": [
311
361
  {
312
- "type": "core::bool"
313
- }
362
+ "type": "core::bool",
363
+ },
314
364
  ],
315
- "state_mutability": "view"
365
+ "state_mutability": "view",
316
366
  },
317
367
  {
318
368
  "type": "function",
@@ -320,15 +370,15 @@ export const PrivacyPoolABI = [
320
370
  "inputs": [
321
371
  {
322
372
  "name": "label",
323
- "type": "core::felt252"
324
- }
373
+ "type": "core::felt252",
374
+ },
325
375
  ],
326
376
  "outputs": [
327
377
  {
328
- "type": "core::starknet::contract_address::ContractAddress"
329
- }
378
+ "type": "core::starknet::contract_address::ContractAddress",
379
+ },
330
380
  ],
331
- "state_mutability": "view"
381
+ "state_mutability": "view",
332
382
  },
333
383
  {
334
384
  "type": "function",
@@ -336,12 +386,12 @@ export const PrivacyPoolABI = [
336
386
  "inputs": [],
337
387
  "outputs": [
338
388
  {
339
- "type": "core::integer::u64"
340
- }
389
+ "type": "core::integer::u64",
390
+ },
341
391
  ],
342
- "state_mutability": "view"
343
- }
344
- ]
392
+ "state_mutability": "view",
393
+ },
394
+ ],
345
395
  },
346
396
  {
347
397
  "type": "constructor",
@@ -349,21 +399,21 @@ export const PrivacyPoolABI = [
349
399
  "inputs": [
350
400
  {
351
401
  "name": "entrypoint",
352
- "type": "core::starknet::contract_address::ContractAddress"
402
+ "type": "core::starknet::contract_address::ContractAddress",
353
403
  },
354
404
  {
355
405
  "name": "asset",
356
- "type": "core::starknet::contract_address::ContractAddress"
406
+ "type": "core::starknet::contract_address::ContractAddress",
357
407
  },
358
408
  {
359
409
  "name": "withdrawal_verifier",
360
- "type": "core::starknet::class_hash::ClassHash"
410
+ "type": "core::starknet::class_hash::ClassHash",
361
411
  },
362
412
  {
363
413
  "name": "ragequit_verifier",
364
- "type": "core::starknet::class_hash::ClassHash"
365
- }
366
- ]
414
+ "type": "core::starknet::class_hash::ClassHash",
415
+ },
416
+ ],
367
417
  },
368
418
  {
369
419
  "type": "event",
@@ -373,19 +423,19 @@ export const PrivacyPoolABI = [
373
423
  {
374
424
  "name": "index",
375
425
  "type": "core::integer::u32",
376
- "kind": "data"
426
+ "kind": "data",
377
427
  },
378
428
  {
379
429
  "name": "leaf",
380
430
  "type": "core::integer::u256",
381
- "kind": "data"
431
+ "kind": "data",
382
432
  },
383
433
  {
384
434
  "name": "root",
385
435
  "type": "core::integer::u256",
386
- "kind": "data"
387
- }
388
- ]
436
+ "kind": "data",
437
+ },
438
+ ],
389
439
  },
390
440
  {
391
441
  "type": "event",
@@ -395,9 +445,9 @@ export const PrivacyPoolABI = [
395
445
  {
396
446
  "name": "LeafInserted",
397
447
  "type": "privacy_pools::implementations::LeanIMT::LeanIMT::LeafInserted",
398
- "kind": "nested"
399
- }
400
- ]
448
+ "kind": "nested",
449
+ },
450
+ ],
401
451
  },
402
452
  {
403
453
  "type": "event",
@@ -407,29 +457,29 @@ export const PrivacyPoolABI = [
407
457
  {
408
458
  "name": "depositor",
409
459
  "type": "core::starknet::contract_address::ContractAddress",
410
- "kind": "key"
411
- },
412
- {
413
- "name": "commitment",
414
- "type": "core::integer::u256",
415
- "kind": "data"
460
+ "kind": "key",
416
461
  },
417
462
  {
418
463
  "name": "label",
419
464
  "type": "core::felt252",
420
- "kind": "data"
465
+ "kind": "key",
466
+ },
467
+ {
468
+ "name": "commitment",
469
+ "type": "core::integer::u256",
470
+ "kind": "data",
421
471
  },
422
472
  {
423
473
  "name": "value",
424
474
  "type": "core::integer::u128",
425
- "kind": "data"
475
+ "kind": "data",
426
476
  },
427
477
  {
428
478
  "name": "preCommitmentHash",
429
479
  "type": "core::integer::u256",
430
- "kind": "data"
431
- }
432
- ]
480
+ "kind": "data",
481
+ },
482
+ ],
433
483
  },
434
484
  {
435
485
  "type": "event",
@@ -439,24 +489,24 @@ export const PrivacyPoolABI = [
439
489
  {
440
490
  "name": "procesoor",
441
491
  "type": "core::starknet::contract_address::ContractAddress",
442
- "kind": "key"
492
+ "kind": "key",
443
493
  },
444
494
  {
445
495
  "name": "newCommitmentHash",
446
496
  "type": "core::integer::u256",
447
- "kind": "data"
497
+ "kind": "data",
448
498
  },
449
499
  {
450
500
  "name": "withdrawnValue",
451
501
  "type": "core::integer::u256",
452
- "kind": "data"
502
+ "kind": "data",
453
503
  },
454
504
  {
455
505
  "name": "existingNullifierHash",
456
506
  "type": "core::integer::u256",
457
- "kind": "data"
458
- }
459
- ]
507
+ "kind": "data",
508
+ },
509
+ ],
460
510
  },
461
511
  {
462
512
  "type": "event",
@@ -466,30 +516,57 @@ export const PrivacyPoolABI = [
466
516
  {
467
517
  "name": "depositor",
468
518
  "type": "core::starknet::contract_address::ContractAddress",
469
- "kind": "key"
470
- },
471
- {
472
- "name": "commitment",
473
- "type": "core::integer::u256",
474
- "kind": "data"
519
+ "kind": "key",
475
520
  },
476
521
  {
477
522
  "name": "label",
478
523
  "type": "core::felt252",
479
- "kind": "data"
524
+ "kind": "data",
525
+ },
526
+ {
527
+ "name": "commitment",
528
+ "type": "core::integer::u256",
529
+ "kind": "data",
480
530
  },
481
531
  {
482
532
  "name": "value",
483
533
  "type": "core::integer::u256",
484
- "kind": "data"
485
- }
486
- ]
534
+ "kind": "data",
535
+ },
536
+ ],
487
537
  },
488
538
  {
489
539
  "type": "event",
490
540
  "name": "privacy_pools::interfaces::IPool::PoolDied",
491
541
  "kind": "struct",
492
- "members": []
542
+ "members": [],
543
+ },
544
+ {
545
+ "type": "event",
546
+ "name": "privacy_pools::interfaces::IPool::AuditEvent",
547
+ "kind": "struct",
548
+ "members": [
549
+ {
550
+ "name": "tag",
551
+ "type": "core::integer::u256",
552
+ "kind": "key",
553
+ },
554
+ {
555
+ "name": "ciphertext",
556
+ "type": "core::byte_array::ByteArray",
557
+ "kind": "data",
558
+ },
559
+ {
560
+ "name": "prevNullifierHash",
561
+ "type": "core::integer::u256",
562
+ "kind": "data",
563
+ },
564
+ {
565
+ "name": "newCommitment",
566
+ "type": "core::integer::u256",
567
+ "kind": "data",
568
+ },
569
+ ],
493
570
  },
494
571
  {
495
572
  "type": "event",
@@ -499,29 +576,34 @@ export const PrivacyPoolABI = [
499
576
  {
500
577
  "name": "TreeEvents",
501
578
  "type": "privacy_pools::implementations::LeanIMT::LeanIMT::Event",
502
- "kind": "nested"
579
+ "kind": "nested",
503
580
  },
504
581
  {
505
582
  "name": "Deposited",
506
583
  "type": "privacy_pools::interfaces::IPool::Deposited",
507
- "kind": "nested"
584
+ "kind": "nested",
508
585
  },
509
586
  {
510
587
  "name": "Withdrawn",
511
588
  "type": "privacy_pools::interfaces::IPool::Withdrawn",
512
- "kind": "nested"
589
+ "kind": "nested",
513
590
  },
514
591
  {
515
592
  "name": "RageQuit",
516
593
  "type": "privacy_pools::interfaces::IPool::RageQuit",
517
- "kind": "nested"
594
+ "kind": "nested",
518
595
  },
519
596
  {
520
597
  "name": "PoolDied",
521
598
  "type": "privacy_pools::interfaces::IPool::PoolDied",
522
- "kind": "nested"
523
- }
524
- ]
525
- }
599
+ "kind": "nested",
600
+ },
601
+ {
602
+ "name": "AuditEvent",
603
+ "type": "privacy_pools::interfaces::IPool::AuditEvent",
604
+ "kind": "nested",
605
+ },
606
+ ],
607
+ },
526
608
  ];
527
609
  //# sourceMappingURL=PrivacyPool.abi.js.map