@layerzerolabs/lz-evm-protocol-v2 2.0.2

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 (51) hide show
  1. package/artifacts/contracts/EndpointV2.sol/EndpointV2.json +2364 -0
  2. package/artifacts/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +2379 -0
  3. package/artifacts/contracts/MessageLibManager.sol/MessageLibManager.json +783 -0
  4. package/artifacts/contracts/MessagingChannel.sol/MessagingChannel.json +426 -0
  5. package/artifacts/contracts/MessagingComposer.sol/MessagingComposer.json +320 -0
  6. package/artifacts/contracts/MessagingContext.sol/MessagingContext.json +42 -0
  7. package/artifacts/contracts/interfaces/ILayerZeroComposer.sol/ILayerZeroComposer.json +44 -0
  8. package/artifacts/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +1844 -0
  9. package/artifacts/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +121 -0
  10. package/artifacts/contracts/interfaces/IMessageLib.sol/IMessageLib.json +149 -0
  11. package/artifacts/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +629 -0
  12. package/artifacts/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +344 -0
  13. package/artifacts/contracts/interfaces/IMessagingComposer.sol/IMessagingComposer.json +246 -0
  14. package/artifacts/contracts/interfaces/IMessagingContext.sol/IMessagingContext.json +42 -0
  15. package/artifacts/contracts/interfaces/ISendLib.sol/ISendLib.json +364 -0
  16. package/artifacts/contracts/libs/AddressCast.sol/AddressCast.json +10 -0
  17. package/artifacts/contracts/libs/CalldataBytesLib.sol/CalldataBytesLib.json +10 -0
  18. package/artifacts/contracts/libs/Errors.sol/Errors.json +226 -0
  19. package/artifacts/contracts/libs/GUID.sol/GUID.json +10 -0
  20. package/artifacts/contracts/libs/Transfer.sol/Transfer.json +32 -0
  21. package/artifacts/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +94 -0
  22. package/artifacts/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +591 -0
  23. package/artifacts/contracts/messagelib/libs/BitMaps.sol/BitMaps.json +10 -0
  24. package/artifacts/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +26 -0
  25. package/artifacts/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +10 -0
  26. package/contracts/EndpointV2.sol +403 -0
  27. package/contracts/EndpointV2Alt.sol +50 -0
  28. package/contracts/MessageLibManager.sol +326 -0
  29. package/contracts/MessagingChannel.sol +161 -0
  30. package/contracts/MessagingComposer.sol +80 -0
  31. package/contracts/MessagingContext.sol +36 -0
  32. package/contracts/interfaces/ILayerZeroComposer.sol +24 -0
  33. package/contracts/interfaces/ILayerZeroEndpointV2.sol +98 -0
  34. package/contracts/interfaces/ILayerZeroReceiver.sol +20 -0
  35. package/contracts/interfaces/IMessageLib.sol +26 -0
  36. package/contracts/interfaces/IMessageLibManager.sol +68 -0
  37. package/contracts/interfaces/IMessagingChannel.sol +32 -0
  38. package/contracts/interfaces/IMessagingComposer.sol +38 -0
  39. package/contracts/interfaces/IMessagingContext.sol +9 -0
  40. package/contracts/interfaces/ISendLib.sol +36 -0
  41. package/contracts/libs/AddressCast.sol +40 -0
  42. package/contracts/libs/CalldataBytesLib.sol +58 -0
  43. package/contracts/libs/Errors.sol +42 -0
  44. package/contracts/libs/GUID.sol +19 -0
  45. package/contracts/libs/Transfer.sol +34 -0
  46. package/contracts/messagelib/BlockedMessageLib.sol +30 -0
  47. package/contracts/messagelib/SimpleMessageLib.sol +149 -0
  48. package/contracts/messagelib/libs/BitMaps.sol +26 -0
  49. package/contracts/messagelib/libs/ExecutorOptions.sol +85 -0
  50. package/contracts/messagelib/libs/PacketV1Codec.sol +108 -0
  51. package/package.json +27 -0
@@ -0,0 +1,783 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "MessageLibManager",
4
+ "sourceName": "contracts/MessageLibManager.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "AlreadyRegistered",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "DefaultReceiveLibUnavailable",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "inputs": [],
18
+ "name": "DefaultSendLibUnavailable",
19
+ "type": "error"
20
+ },
21
+ {
22
+ "inputs": [],
23
+ "name": "InvalidExpiry",
24
+ "type": "error"
25
+ },
26
+ {
27
+ "inputs": [],
28
+ "name": "OnlyNonDefaultLib",
29
+ "type": "error"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "OnlyReceiveLib",
34
+ "type": "error"
35
+ },
36
+ {
37
+ "inputs": [],
38
+ "name": "OnlyRegisteredLib",
39
+ "type": "error"
40
+ },
41
+ {
42
+ "inputs": [],
43
+ "name": "OnlyRegisteredOrDefaultLib",
44
+ "type": "error"
45
+ },
46
+ {
47
+ "inputs": [],
48
+ "name": "OnlySendLib",
49
+ "type": "error"
50
+ },
51
+ {
52
+ "inputs": [],
53
+ "name": "SameValue",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [],
58
+ "name": "UnsupportedEid",
59
+ "type": "error"
60
+ },
61
+ {
62
+ "inputs": [],
63
+ "name": "UnsupportedInterface",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "anonymous": false,
68
+ "inputs": [
69
+ {
70
+ "indexed": false,
71
+ "internalType": "uint32",
72
+ "name": "eid",
73
+ "type": "uint32"
74
+ },
75
+ {
76
+ "indexed": false,
77
+ "internalType": "address",
78
+ "name": "oldLib",
79
+ "type": "address"
80
+ },
81
+ {
82
+ "indexed": false,
83
+ "internalType": "address",
84
+ "name": "newLib",
85
+ "type": "address"
86
+ }
87
+ ],
88
+ "name": "DefaultReceiveLibrarySet",
89
+ "type": "event"
90
+ },
91
+ {
92
+ "anonymous": false,
93
+ "inputs": [
94
+ {
95
+ "indexed": false,
96
+ "internalType": "uint32",
97
+ "name": "eid",
98
+ "type": "uint32"
99
+ },
100
+ {
101
+ "indexed": false,
102
+ "internalType": "address",
103
+ "name": "oldLib",
104
+ "type": "address"
105
+ },
106
+ {
107
+ "indexed": false,
108
+ "internalType": "uint256",
109
+ "name": "expiry",
110
+ "type": "uint256"
111
+ }
112
+ ],
113
+ "name": "DefaultReceiveLibraryTimeoutSet",
114
+ "type": "event"
115
+ },
116
+ {
117
+ "anonymous": false,
118
+ "inputs": [
119
+ {
120
+ "indexed": false,
121
+ "internalType": "uint32",
122
+ "name": "eid",
123
+ "type": "uint32"
124
+ },
125
+ {
126
+ "indexed": false,
127
+ "internalType": "address",
128
+ "name": "newLib",
129
+ "type": "address"
130
+ }
131
+ ],
132
+ "name": "DefaultSendLibrarySet",
133
+ "type": "event"
134
+ },
135
+ {
136
+ "anonymous": false,
137
+ "inputs": [
138
+ {
139
+ "indexed": false,
140
+ "internalType": "address",
141
+ "name": "newLib",
142
+ "type": "address"
143
+ }
144
+ ],
145
+ "name": "LibraryRegistered",
146
+ "type": "event"
147
+ },
148
+ {
149
+ "anonymous": false,
150
+ "inputs": [
151
+ {
152
+ "indexed": true,
153
+ "internalType": "address",
154
+ "name": "previousOwner",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "indexed": true,
159
+ "internalType": "address",
160
+ "name": "newOwner",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "OwnershipTransferred",
165
+ "type": "event"
166
+ },
167
+ {
168
+ "anonymous": false,
169
+ "inputs": [
170
+ {
171
+ "indexed": false,
172
+ "internalType": "address",
173
+ "name": "receiver",
174
+ "type": "address"
175
+ },
176
+ {
177
+ "indexed": false,
178
+ "internalType": "uint32",
179
+ "name": "eid",
180
+ "type": "uint32"
181
+ },
182
+ {
183
+ "indexed": false,
184
+ "internalType": "address",
185
+ "name": "oldLib",
186
+ "type": "address"
187
+ },
188
+ {
189
+ "indexed": false,
190
+ "internalType": "address",
191
+ "name": "newLib",
192
+ "type": "address"
193
+ }
194
+ ],
195
+ "name": "ReceiveLibrarySet",
196
+ "type": "event"
197
+ },
198
+ {
199
+ "anonymous": false,
200
+ "inputs": [
201
+ {
202
+ "indexed": false,
203
+ "internalType": "address",
204
+ "name": "receiver",
205
+ "type": "address"
206
+ },
207
+ {
208
+ "indexed": false,
209
+ "internalType": "uint32",
210
+ "name": "eid",
211
+ "type": "uint32"
212
+ },
213
+ {
214
+ "indexed": false,
215
+ "internalType": "address",
216
+ "name": "oldLib",
217
+ "type": "address"
218
+ },
219
+ {
220
+ "indexed": false,
221
+ "internalType": "uint256",
222
+ "name": "timeout",
223
+ "type": "uint256"
224
+ }
225
+ ],
226
+ "name": "ReceiveLibraryTimeoutSet",
227
+ "type": "event"
228
+ },
229
+ {
230
+ "anonymous": false,
231
+ "inputs": [
232
+ {
233
+ "indexed": false,
234
+ "internalType": "address",
235
+ "name": "sender",
236
+ "type": "address"
237
+ },
238
+ {
239
+ "indexed": false,
240
+ "internalType": "uint32",
241
+ "name": "eid",
242
+ "type": "uint32"
243
+ },
244
+ {
245
+ "indexed": false,
246
+ "internalType": "address",
247
+ "name": "newLib",
248
+ "type": "address"
249
+ }
250
+ ],
251
+ "name": "SendLibrarySet",
252
+ "type": "event"
253
+ },
254
+ {
255
+ "inputs": [],
256
+ "name": "blockedLibrary",
257
+ "outputs": [
258
+ {
259
+ "internalType": "address",
260
+ "name": "",
261
+ "type": "address"
262
+ }
263
+ ],
264
+ "stateMutability": "view",
265
+ "type": "function"
266
+ },
267
+ {
268
+ "inputs": [
269
+ {
270
+ "internalType": "uint32",
271
+ "name": "srcEid",
272
+ "type": "uint32"
273
+ }
274
+ ],
275
+ "name": "defaultReceiveLibrary",
276
+ "outputs": [
277
+ {
278
+ "internalType": "address",
279
+ "name": "lib",
280
+ "type": "address"
281
+ }
282
+ ],
283
+ "stateMutability": "view",
284
+ "type": "function"
285
+ },
286
+ {
287
+ "inputs": [
288
+ {
289
+ "internalType": "uint32",
290
+ "name": "srcEid",
291
+ "type": "uint32"
292
+ }
293
+ ],
294
+ "name": "defaultReceiveLibraryTimeout",
295
+ "outputs": [
296
+ {
297
+ "internalType": "address",
298
+ "name": "lib",
299
+ "type": "address"
300
+ },
301
+ {
302
+ "internalType": "uint256",
303
+ "name": "expiry",
304
+ "type": "uint256"
305
+ }
306
+ ],
307
+ "stateMutability": "view",
308
+ "type": "function"
309
+ },
310
+ {
311
+ "inputs": [
312
+ {
313
+ "internalType": "uint32",
314
+ "name": "dstEid",
315
+ "type": "uint32"
316
+ }
317
+ ],
318
+ "name": "defaultSendLibrary",
319
+ "outputs": [
320
+ {
321
+ "internalType": "address",
322
+ "name": "lib",
323
+ "type": "address"
324
+ }
325
+ ],
326
+ "stateMutability": "view",
327
+ "type": "function"
328
+ },
329
+ {
330
+ "inputs": [
331
+ {
332
+ "internalType": "address",
333
+ "name": "_oapp",
334
+ "type": "address"
335
+ },
336
+ {
337
+ "internalType": "address",
338
+ "name": "_lib",
339
+ "type": "address"
340
+ },
341
+ {
342
+ "internalType": "uint32",
343
+ "name": "_eid",
344
+ "type": "uint32"
345
+ },
346
+ {
347
+ "internalType": "uint32",
348
+ "name": "_configType",
349
+ "type": "uint32"
350
+ }
351
+ ],
352
+ "name": "getConfig",
353
+ "outputs": [
354
+ {
355
+ "internalType": "bytes",
356
+ "name": "config",
357
+ "type": "bytes"
358
+ }
359
+ ],
360
+ "stateMutability": "view",
361
+ "type": "function"
362
+ },
363
+ {
364
+ "inputs": [
365
+ {
366
+ "internalType": "address",
367
+ "name": "_receiver",
368
+ "type": "address"
369
+ },
370
+ {
371
+ "internalType": "uint32",
372
+ "name": "_srcEid",
373
+ "type": "uint32"
374
+ }
375
+ ],
376
+ "name": "getReceiveLibrary",
377
+ "outputs": [
378
+ {
379
+ "internalType": "address",
380
+ "name": "lib",
381
+ "type": "address"
382
+ },
383
+ {
384
+ "internalType": "bool",
385
+ "name": "isDefault",
386
+ "type": "bool"
387
+ }
388
+ ],
389
+ "stateMutability": "view",
390
+ "type": "function"
391
+ },
392
+ {
393
+ "inputs": [],
394
+ "name": "getRegisteredLibraries",
395
+ "outputs": [
396
+ {
397
+ "internalType": "address[]",
398
+ "name": "",
399
+ "type": "address[]"
400
+ }
401
+ ],
402
+ "stateMutability": "view",
403
+ "type": "function"
404
+ },
405
+ {
406
+ "inputs": [
407
+ {
408
+ "internalType": "address",
409
+ "name": "_sender",
410
+ "type": "address"
411
+ },
412
+ {
413
+ "internalType": "uint32",
414
+ "name": "_dstEid",
415
+ "type": "uint32"
416
+ }
417
+ ],
418
+ "name": "getSendLibrary",
419
+ "outputs": [
420
+ {
421
+ "internalType": "address",
422
+ "name": "lib",
423
+ "type": "address"
424
+ }
425
+ ],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [
431
+ {
432
+ "internalType": "address",
433
+ "name": "_sender",
434
+ "type": "address"
435
+ },
436
+ {
437
+ "internalType": "uint32",
438
+ "name": "_dstEid",
439
+ "type": "uint32"
440
+ }
441
+ ],
442
+ "name": "isDefaultSendLibrary",
443
+ "outputs": [
444
+ {
445
+ "internalType": "bool",
446
+ "name": "",
447
+ "type": "bool"
448
+ }
449
+ ],
450
+ "stateMutability": "view",
451
+ "type": "function"
452
+ },
453
+ {
454
+ "inputs": [
455
+ {
456
+ "internalType": "address",
457
+ "name": "lib",
458
+ "type": "address"
459
+ }
460
+ ],
461
+ "name": "isRegisteredLibrary",
462
+ "outputs": [
463
+ {
464
+ "internalType": "bool",
465
+ "name": "",
466
+ "type": "bool"
467
+ }
468
+ ],
469
+ "stateMutability": "view",
470
+ "type": "function"
471
+ },
472
+ {
473
+ "inputs": [
474
+ {
475
+ "internalType": "uint32",
476
+ "name": "_eid",
477
+ "type": "uint32"
478
+ }
479
+ ],
480
+ "name": "isSupportedEid",
481
+ "outputs": [
482
+ {
483
+ "internalType": "bool",
484
+ "name": "",
485
+ "type": "bool"
486
+ }
487
+ ],
488
+ "stateMutability": "view",
489
+ "type": "function"
490
+ },
491
+ {
492
+ "inputs": [
493
+ {
494
+ "internalType": "address",
495
+ "name": "_receiver",
496
+ "type": "address"
497
+ },
498
+ {
499
+ "internalType": "uint32",
500
+ "name": "_srcEid",
501
+ "type": "uint32"
502
+ },
503
+ {
504
+ "internalType": "address",
505
+ "name": "_actualReceiveLib",
506
+ "type": "address"
507
+ }
508
+ ],
509
+ "name": "isValidReceiveLibrary",
510
+ "outputs": [
511
+ {
512
+ "internalType": "bool",
513
+ "name": "",
514
+ "type": "bool"
515
+ }
516
+ ],
517
+ "stateMutability": "view",
518
+ "type": "function"
519
+ },
520
+ {
521
+ "inputs": [],
522
+ "name": "owner",
523
+ "outputs": [
524
+ {
525
+ "internalType": "address",
526
+ "name": "",
527
+ "type": "address"
528
+ }
529
+ ],
530
+ "stateMutability": "view",
531
+ "type": "function"
532
+ },
533
+ {
534
+ "inputs": [
535
+ {
536
+ "internalType": "address",
537
+ "name": "receiver",
538
+ "type": "address"
539
+ },
540
+ {
541
+ "internalType": "uint32",
542
+ "name": "srcEid",
543
+ "type": "uint32"
544
+ }
545
+ ],
546
+ "name": "receiveLibraryTimeout",
547
+ "outputs": [
548
+ {
549
+ "internalType": "address",
550
+ "name": "lib",
551
+ "type": "address"
552
+ },
553
+ {
554
+ "internalType": "uint256",
555
+ "name": "expiry",
556
+ "type": "uint256"
557
+ }
558
+ ],
559
+ "stateMutability": "view",
560
+ "type": "function"
561
+ },
562
+ {
563
+ "inputs": [
564
+ {
565
+ "internalType": "address",
566
+ "name": "_lib",
567
+ "type": "address"
568
+ }
569
+ ],
570
+ "name": "registerLibrary",
571
+ "outputs": [],
572
+ "stateMutability": "nonpayable",
573
+ "type": "function"
574
+ },
575
+ {
576
+ "inputs": [],
577
+ "name": "renounceOwnership",
578
+ "outputs": [],
579
+ "stateMutability": "nonpayable",
580
+ "type": "function"
581
+ },
582
+ {
583
+ "inputs": [
584
+ {
585
+ "internalType": "address",
586
+ "name": "_oapp",
587
+ "type": "address"
588
+ },
589
+ {
590
+ "internalType": "address",
591
+ "name": "_lib",
592
+ "type": "address"
593
+ },
594
+ {
595
+ "components": [
596
+ {
597
+ "internalType": "uint32",
598
+ "name": "eid",
599
+ "type": "uint32"
600
+ },
601
+ {
602
+ "internalType": "uint32",
603
+ "name": "configType",
604
+ "type": "uint32"
605
+ },
606
+ {
607
+ "internalType": "bytes",
608
+ "name": "config",
609
+ "type": "bytes"
610
+ }
611
+ ],
612
+ "internalType": "struct SetConfigParam[]",
613
+ "name": "_params",
614
+ "type": "tuple[]"
615
+ }
616
+ ],
617
+ "name": "setConfig",
618
+ "outputs": [],
619
+ "stateMutability": "nonpayable",
620
+ "type": "function"
621
+ },
622
+ {
623
+ "inputs": [
624
+ {
625
+ "internalType": "uint32",
626
+ "name": "_eid",
627
+ "type": "uint32"
628
+ },
629
+ {
630
+ "internalType": "address",
631
+ "name": "_newLib",
632
+ "type": "address"
633
+ },
634
+ {
635
+ "internalType": "uint256",
636
+ "name": "_gracePeriod",
637
+ "type": "uint256"
638
+ }
639
+ ],
640
+ "name": "setDefaultReceiveLibrary",
641
+ "outputs": [],
642
+ "stateMutability": "nonpayable",
643
+ "type": "function"
644
+ },
645
+ {
646
+ "inputs": [
647
+ {
648
+ "internalType": "uint32",
649
+ "name": "_eid",
650
+ "type": "uint32"
651
+ },
652
+ {
653
+ "internalType": "address",
654
+ "name": "_lib",
655
+ "type": "address"
656
+ },
657
+ {
658
+ "internalType": "uint256",
659
+ "name": "_expiry",
660
+ "type": "uint256"
661
+ }
662
+ ],
663
+ "name": "setDefaultReceiveLibraryTimeout",
664
+ "outputs": [],
665
+ "stateMutability": "nonpayable",
666
+ "type": "function"
667
+ },
668
+ {
669
+ "inputs": [
670
+ {
671
+ "internalType": "uint32",
672
+ "name": "_eid",
673
+ "type": "uint32"
674
+ },
675
+ {
676
+ "internalType": "address",
677
+ "name": "_newLib",
678
+ "type": "address"
679
+ }
680
+ ],
681
+ "name": "setDefaultSendLibrary",
682
+ "outputs": [],
683
+ "stateMutability": "nonpayable",
684
+ "type": "function"
685
+ },
686
+ {
687
+ "inputs": [
688
+ {
689
+ "internalType": "address",
690
+ "name": "_oapp",
691
+ "type": "address"
692
+ },
693
+ {
694
+ "internalType": "uint32",
695
+ "name": "_eid",
696
+ "type": "uint32"
697
+ },
698
+ {
699
+ "internalType": "address",
700
+ "name": "_newLib",
701
+ "type": "address"
702
+ },
703
+ {
704
+ "internalType": "uint256",
705
+ "name": "_gracePeriod",
706
+ "type": "uint256"
707
+ }
708
+ ],
709
+ "name": "setReceiveLibrary",
710
+ "outputs": [],
711
+ "stateMutability": "nonpayable",
712
+ "type": "function"
713
+ },
714
+ {
715
+ "inputs": [
716
+ {
717
+ "internalType": "address",
718
+ "name": "_oapp",
719
+ "type": "address"
720
+ },
721
+ {
722
+ "internalType": "uint32",
723
+ "name": "_eid",
724
+ "type": "uint32"
725
+ },
726
+ {
727
+ "internalType": "address",
728
+ "name": "_lib",
729
+ "type": "address"
730
+ },
731
+ {
732
+ "internalType": "uint256",
733
+ "name": "_expiry",
734
+ "type": "uint256"
735
+ }
736
+ ],
737
+ "name": "setReceiveLibraryTimeout",
738
+ "outputs": [],
739
+ "stateMutability": "nonpayable",
740
+ "type": "function"
741
+ },
742
+ {
743
+ "inputs": [
744
+ {
745
+ "internalType": "address",
746
+ "name": "_oapp",
747
+ "type": "address"
748
+ },
749
+ {
750
+ "internalType": "uint32",
751
+ "name": "_eid",
752
+ "type": "uint32"
753
+ },
754
+ {
755
+ "internalType": "address",
756
+ "name": "_newLib",
757
+ "type": "address"
758
+ }
759
+ ],
760
+ "name": "setSendLibrary",
761
+ "outputs": [],
762
+ "stateMutability": "nonpayable",
763
+ "type": "function"
764
+ },
765
+ {
766
+ "inputs": [
767
+ {
768
+ "internalType": "address",
769
+ "name": "newOwner",
770
+ "type": "address"
771
+ }
772
+ ],
773
+ "name": "transferOwnership",
774
+ "outputs": [],
775
+ "stateMutability": "nonpayable",
776
+ "type": "function"
777
+ }
778
+ ],
779
+ "bytecode": "0x",
780
+ "deployedBytecode": "0x",
781
+ "linkReferences": {},
782
+ "deployedLinkReferences": {}
783
+ }