@fepvenancio/stela-sdk 0.2.3 → 0.3.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.
@@ -0,0 +1,1714 @@
1
+ [
2
+ {
3
+ "type": "impl",
4
+ "name": "StelaProtocolImpl",
5
+ "interface_name": "stela::interfaces::istela::IStelaProtocol"
6
+ },
7
+ {
8
+ "type": "enum",
9
+ "name": "core::bool",
10
+ "variants": [
11
+ {
12
+ "name": "False",
13
+ "type": "()"
14
+ },
15
+ {
16
+ "name": "True",
17
+ "type": "()"
18
+ }
19
+ ]
20
+ },
21
+ {
22
+ "type": "enum",
23
+ "name": "stela::types::asset::AssetType",
24
+ "variants": [
25
+ {
26
+ "name": "ERC20",
27
+ "type": "()"
28
+ },
29
+ {
30
+ "name": "ERC721",
31
+ "type": "()"
32
+ },
33
+ {
34
+ "name": "ERC1155",
35
+ "type": "()"
36
+ },
37
+ {
38
+ "name": "ERC4626",
39
+ "type": "()"
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "type": "struct",
45
+ "name": "core::integer::u256",
46
+ "members": [
47
+ {
48
+ "name": "low",
49
+ "type": "core::integer::u128"
50
+ },
51
+ {
52
+ "name": "high",
53
+ "type": "core::integer::u128"
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "type": "struct",
59
+ "name": "stela::types::asset::Asset",
60
+ "members": [
61
+ {
62
+ "name": "asset",
63
+ "type": "core::starknet::contract_address::ContractAddress"
64
+ },
65
+ {
66
+ "name": "asset_type",
67
+ "type": "stela::types::asset::AssetType"
68
+ },
69
+ {
70
+ "name": "value",
71
+ "type": "core::integer::u256"
72
+ },
73
+ {
74
+ "name": "token_id",
75
+ "type": "core::integer::u256"
76
+ }
77
+ ]
78
+ },
79
+ {
80
+ "type": "struct",
81
+ "name": "stela::types::inscription::InscriptionParams",
82
+ "members": [
83
+ {
84
+ "name": "is_borrow",
85
+ "type": "core::bool"
86
+ },
87
+ {
88
+ "name": "debt_assets",
89
+ "type": "core::array::Array::<stela::types::asset::Asset>"
90
+ },
91
+ {
92
+ "name": "interest_assets",
93
+ "type": "core::array::Array::<stela::types::asset::Asset>"
94
+ },
95
+ {
96
+ "name": "collateral_assets",
97
+ "type": "core::array::Array::<stela::types::asset::Asset>"
98
+ },
99
+ {
100
+ "name": "duration",
101
+ "type": "core::integer::u64"
102
+ },
103
+ {
104
+ "name": "deadline",
105
+ "type": "core::integer::u64"
106
+ },
107
+ {
108
+ "name": "multi_lender",
109
+ "type": "core::bool"
110
+ }
111
+ ]
112
+ },
113
+ {
114
+ "type": "struct",
115
+ "name": "stela::snip12::InscriptionOrder",
116
+ "members": [
117
+ {
118
+ "name": "borrower",
119
+ "type": "core::starknet::contract_address::ContractAddress"
120
+ },
121
+ {
122
+ "name": "debt_hash",
123
+ "type": "core::felt252"
124
+ },
125
+ {
126
+ "name": "interest_hash",
127
+ "type": "core::felt252"
128
+ },
129
+ {
130
+ "name": "collateral_hash",
131
+ "type": "core::felt252"
132
+ },
133
+ {
134
+ "name": "debt_count",
135
+ "type": "core::integer::u32"
136
+ },
137
+ {
138
+ "name": "interest_count",
139
+ "type": "core::integer::u32"
140
+ },
141
+ {
142
+ "name": "collateral_count",
143
+ "type": "core::integer::u32"
144
+ },
145
+ {
146
+ "name": "duration",
147
+ "type": "core::integer::u64"
148
+ },
149
+ {
150
+ "name": "deadline",
151
+ "type": "core::integer::u64"
152
+ },
153
+ {
154
+ "name": "multi_lender",
155
+ "type": "core::bool"
156
+ },
157
+ {
158
+ "name": "nonce",
159
+ "type": "core::felt252"
160
+ }
161
+ ]
162
+ },
163
+ {
164
+ "type": "struct",
165
+ "name": "stela::snip12::LendOffer",
166
+ "members": [
167
+ {
168
+ "name": "order_hash",
169
+ "type": "core::felt252"
170
+ },
171
+ {
172
+ "name": "lender",
173
+ "type": "core::starknet::contract_address::ContractAddress"
174
+ },
175
+ {
176
+ "name": "issued_debt_percentage",
177
+ "type": "core::integer::u256"
178
+ },
179
+ {
180
+ "name": "nonce",
181
+ "type": "core::felt252"
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "type": "struct",
187
+ "name": "stela::types::signed_order::SignedOrder",
188
+ "members": [
189
+ {
190
+ "name": "maker",
191
+ "type": "core::starknet::contract_address::ContractAddress"
192
+ },
193
+ {
194
+ "name": "allowed_taker",
195
+ "type": "core::starknet::contract_address::ContractAddress"
196
+ },
197
+ {
198
+ "name": "inscription_id",
199
+ "type": "core::integer::u256"
200
+ },
201
+ {
202
+ "name": "bps",
203
+ "type": "core::integer::u256"
204
+ },
205
+ {
206
+ "name": "deadline",
207
+ "type": "core::integer::u64"
208
+ },
209
+ {
210
+ "name": "nonce",
211
+ "type": "core::felt252"
212
+ },
213
+ {
214
+ "name": "min_fill_bps",
215
+ "type": "core::integer::u256"
216
+ }
217
+ ]
218
+ },
219
+ {
220
+ "type": "struct",
221
+ "name": "stela::types::inscription::StoredInscription",
222
+ "members": [
223
+ {
224
+ "name": "borrower",
225
+ "type": "core::starknet::contract_address::ContractAddress"
226
+ },
227
+ {
228
+ "name": "lender",
229
+ "type": "core::starknet::contract_address::ContractAddress"
230
+ },
231
+ {
232
+ "name": "duration",
233
+ "type": "core::integer::u64"
234
+ },
235
+ {
236
+ "name": "deadline",
237
+ "type": "core::integer::u64"
238
+ },
239
+ {
240
+ "name": "signed_at",
241
+ "type": "core::integer::u64"
242
+ },
243
+ {
244
+ "name": "issued_debt_percentage",
245
+ "type": "core::integer::u256"
246
+ },
247
+ {
248
+ "name": "is_repaid",
249
+ "type": "core::bool"
250
+ },
251
+ {
252
+ "name": "liquidated",
253
+ "type": "core::bool"
254
+ },
255
+ {
256
+ "name": "multi_lender",
257
+ "type": "core::bool"
258
+ },
259
+ {
260
+ "name": "debt_asset_count",
261
+ "type": "core::integer::u32"
262
+ },
263
+ {
264
+ "name": "interest_asset_count",
265
+ "type": "core::integer::u32"
266
+ },
267
+ {
268
+ "name": "collateral_asset_count",
269
+ "type": "core::integer::u32"
270
+ }
271
+ ]
272
+ },
273
+ {
274
+ "type": "interface",
275
+ "name": "stela::interfaces::istela::IStelaProtocol",
276
+ "items": [
277
+ {
278
+ "type": "function",
279
+ "name": "create_inscription",
280
+ "inputs": [
281
+ {
282
+ "name": "params",
283
+ "type": "stela::types::inscription::InscriptionParams"
284
+ }
285
+ ],
286
+ "outputs": [
287
+ {
288
+ "type": "core::integer::u256"
289
+ }
290
+ ],
291
+ "state_mutability": "external"
292
+ },
293
+ {
294
+ "type": "function",
295
+ "name": "sign_inscription",
296
+ "inputs": [
297
+ {
298
+ "name": "inscription_id",
299
+ "type": "core::integer::u256"
300
+ },
301
+ {
302
+ "name": "issued_debt_percentage",
303
+ "type": "core::integer::u256"
304
+ }
305
+ ],
306
+ "outputs": [],
307
+ "state_mutability": "external"
308
+ },
309
+ {
310
+ "type": "function",
311
+ "name": "cancel_inscription",
312
+ "inputs": [
313
+ {
314
+ "name": "inscription_id",
315
+ "type": "core::integer::u256"
316
+ }
317
+ ],
318
+ "outputs": [],
319
+ "state_mutability": "external"
320
+ },
321
+ {
322
+ "type": "function",
323
+ "name": "repay",
324
+ "inputs": [
325
+ {
326
+ "name": "inscription_id",
327
+ "type": "core::integer::u256"
328
+ }
329
+ ],
330
+ "outputs": [],
331
+ "state_mutability": "external"
332
+ },
333
+ {
334
+ "type": "function",
335
+ "name": "liquidate",
336
+ "inputs": [
337
+ {
338
+ "name": "inscription_id",
339
+ "type": "core::integer::u256"
340
+ }
341
+ ],
342
+ "outputs": [],
343
+ "state_mutability": "external"
344
+ },
345
+ {
346
+ "type": "function",
347
+ "name": "redeem",
348
+ "inputs": [
349
+ {
350
+ "name": "inscription_id",
351
+ "type": "core::integer::u256"
352
+ },
353
+ {
354
+ "name": "shares",
355
+ "type": "core::integer::u256"
356
+ }
357
+ ],
358
+ "outputs": [],
359
+ "state_mutability": "external"
360
+ },
361
+ {
362
+ "type": "function",
363
+ "name": "settle",
364
+ "inputs": [
365
+ {
366
+ "name": "order",
367
+ "type": "stela::snip12::InscriptionOrder"
368
+ },
369
+ {
370
+ "name": "debt_assets",
371
+ "type": "core::array::Array::<stela::types::asset::Asset>"
372
+ },
373
+ {
374
+ "name": "interest_assets",
375
+ "type": "core::array::Array::<stela::types::asset::Asset>"
376
+ },
377
+ {
378
+ "name": "collateral_assets",
379
+ "type": "core::array::Array::<stela::types::asset::Asset>"
380
+ },
381
+ {
382
+ "name": "borrower_sig",
383
+ "type": "core::array::Array::<core::felt252>"
384
+ },
385
+ {
386
+ "name": "offer",
387
+ "type": "stela::snip12::LendOffer"
388
+ },
389
+ {
390
+ "name": "lender_sig",
391
+ "type": "core::array::Array::<core::felt252>"
392
+ }
393
+ ],
394
+ "outputs": [],
395
+ "state_mutability": "external"
396
+ },
397
+ {
398
+ "type": "function",
399
+ "name": "fill_signed_order",
400
+ "inputs": [
401
+ {
402
+ "name": "order",
403
+ "type": "stela::types::signed_order::SignedOrder"
404
+ },
405
+ {
406
+ "name": "signature",
407
+ "type": "core::array::Array::<core::felt252>"
408
+ },
409
+ {
410
+ "name": "fill_bps",
411
+ "type": "core::integer::u256"
412
+ }
413
+ ],
414
+ "outputs": [],
415
+ "state_mutability": "external"
416
+ },
417
+ {
418
+ "type": "function",
419
+ "name": "cancel_order",
420
+ "inputs": [
421
+ {
422
+ "name": "order",
423
+ "type": "stela::types::signed_order::SignedOrder"
424
+ }
425
+ ],
426
+ "outputs": [],
427
+ "state_mutability": "external"
428
+ },
429
+ {
430
+ "type": "function",
431
+ "name": "cancel_orders_by_nonce",
432
+ "inputs": [
433
+ {
434
+ "name": "min_nonce",
435
+ "type": "core::felt252"
436
+ }
437
+ ],
438
+ "outputs": [],
439
+ "state_mutability": "external"
440
+ },
441
+ {
442
+ "type": "function",
443
+ "name": "get_inscription",
444
+ "inputs": [
445
+ {
446
+ "name": "inscription_id",
447
+ "type": "core::integer::u256"
448
+ }
449
+ ],
450
+ "outputs": [
451
+ {
452
+ "type": "stela::types::inscription::StoredInscription"
453
+ }
454
+ ],
455
+ "state_mutability": "view"
456
+ },
457
+ {
458
+ "type": "function",
459
+ "name": "get_locker",
460
+ "inputs": [
461
+ {
462
+ "name": "inscription_id",
463
+ "type": "core::integer::u256"
464
+ }
465
+ ],
466
+ "outputs": [
467
+ {
468
+ "type": "core::starknet::contract_address::ContractAddress"
469
+ }
470
+ ],
471
+ "state_mutability": "view"
472
+ },
473
+ {
474
+ "type": "function",
475
+ "name": "convert_to_shares",
476
+ "inputs": [
477
+ {
478
+ "name": "inscription_id",
479
+ "type": "core::integer::u256"
480
+ },
481
+ {
482
+ "name": "issued_debt_percentage",
483
+ "type": "core::integer::u256"
484
+ }
485
+ ],
486
+ "outputs": [
487
+ {
488
+ "type": "core::integer::u256"
489
+ }
490
+ ],
491
+ "state_mutability": "view"
492
+ },
493
+ {
494
+ "type": "function",
495
+ "name": "get_inscription_fee",
496
+ "inputs": [],
497
+ "outputs": [
498
+ {
499
+ "type": "core::integer::u256"
500
+ }
501
+ ],
502
+ "state_mutability": "view"
503
+ },
504
+ {
505
+ "type": "function",
506
+ "name": "nonces",
507
+ "inputs": [
508
+ {
509
+ "name": "owner",
510
+ "type": "core::starknet::contract_address::ContractAddress"
511
+ }
512
+ ],
513
+ "outputs": [
514
+ {
515
+ "type": "core::felt252"
516
+ }
517
+ ],
518
+ "state_mutability": "view"
519
+ },
520
+ {
521
+ "type": "function",
522
+ "name": "get_relayer_fee",
523
+ "inputs": [],
524
+ "outputs": [
525
+ {
526
+ "type": "core::integer::u256"
527
+ }
528
+ ],
529
+ "state_mutability": "view"
530
+ },
531
+ {
532
+ "type": "function",
533
+ "name": "get_treasury",
534
+ "inputs": [],
535
+ "outputs": [
536
+ {
537
+ "type": "core::starknet::contract_address::ContractAddress"
538
+ }
539
+ ],
540
+ "state_mutability": "view"
541
+ },
542
+ {
543
+ "type": "function",
544
+ "name": "is_paused",
545
+ "inputs": [],
546
+ "outputs": [
547
+ {
548
+ "type": "core::bool"
549
+ }
550
+ ],
551
+ "state_mutability": "view"
552
+ },
553
+ {
554
+ "type": "function",
555
+ "name": "is_order_registered",
556
+ "inputs": [
557
+ {
558
+ "name": "order_hash",
559
+ "type": "core::felt252"
560
+ }
561
+ ],
562
+ "outputs": [
563
+ {
564
+ "type": "core::bool"
565
+ }
566
+ ],
567
+ "state_mutability": "view"
568
+ },
569
+ {
570
+ "type": "function",
571
+ "name": "is_order_cancelled",
572
+ "inputs": [
573
+ {
574
+ "name": "order_hash",
575
+ "type": "core::felt252"
576
+ }
577
+ ],
578
+ "outputs": [
579
+ {
580
+ "type": "core::bool"
581
+ }
582
+ ],
583
+ "state_mutability": "view"
584
+ },
585
+ {
586
+ "type": "function",
587
+ "name": "get_filled_bps",
588
+ "inputs": [
589
+ {
590
+ "name": "order_hash",
591
+ "type": "core::felt252"
592
+ }
593
+ ],
594
+ "outputs": [
595
+ {
596
+ "type": "core::integer::u256"
597
+ }
598
+ ],
599
+ "state_mutability": "view"
600
+ },
601
+ {
602
+ "type": "function",
603
+ "name": "get_maker_min_nonce",
604
+ "inputs": [
605
+ {
606
+ "name": "maker",
607
+ "type": "core::starknet::contract_address::ContractAddress"
608
+ }
609
+ ],
610
+ "outputs": [
611
+ {
612
+ "type": "core::felt252"
613
+ }
614
+ ],
615
+ "state_mutability": "view"
616
+ },
617
+ {
618
+ "type": "function",
619
+ "name": "set_inscription_fee",
620
+ "inputs": [
621
+ {
622
+ "name": "fee",
623
+ "type": "core::integer::u256"
624
+ }
625
+ ],
626
+ "outputs": [],
627
+ "state_mutability": "external"
628
+ },
629
+ {
630
+ "type": "function",
631
+ "name": "set_treasury",
632
+ "inputs": [
633
+ {
634
+ "name": "treasury",
635
+ "type": "core::starknet::contract_address::ContractAddress"
636
+ }
637
+ ],
638
+ "outputs": [],
639
+ "state_mutability": "external"
640
+ },
641
+ {
642
+ "type": "function",
643
+ "name": "set_registry",
644
+ "inputs": [
645
+ {
646
+ "name": "registry",
647
+ "type": "core::starknet::contract_address::ContractAddress"
648
+ }
649
+ ],
650
+ "outputs": [],
651
+ "state_mutability": "external"
652
+ },
653
+ {
654
+ "type": "function",
655
+ "name": "set_inscriptions_nft",
656
+ "inputs": [
657
+ {
658
+ "name": "inscriptions_nft",
659
+ "type": "core::starknet::contract_address::ContractAddress"
660
+ }
661
+ ],
662
+ "outputs": [],
663
+ "state_mutability": "external"
664
+ },
665
+ {
666
+ "type": "function",
667
+ "name": "set_relayer_fee",
668
+ "inputs": [
669
+ {
670
+ "name": "fee",
671
+ "type": "core::integer::u256"
672
+ }
673
+ ],
674
+ "outputs": [],
675
+ "state_mutability": "external"
676
+ },
677
+ {
678
+ "type": "function",
679
+ "name": "set_implementation_hash",
680
+ "inputs": [
681
+ {
682
+ "name": "implementation_hash",
683
+ "type": "core::felt252"
684
+ }
685
+ ],
686
+ "outputs": [],
687
+ "state_mutability": "external"
688
+ },
689
+ {
690
+ "type": "function",
691
+ "name": "pause",
692
+ "inputs": [],
693
+ "outputs": [],
694
+ "state_mutability": "external"
695
+ },
696
+ {
697
+ "type": "function",
698
+ "name": "unpause",
699
+ "inputs": [],
700
+ "outputs": [],
701
+ "state_mutability": "external"
702
+ },
703
+ {
704
+ "type": "function",
705
+ "name": "set_locker_allowed_selector",
706
+ "inputs": [
707
+ {
708
+ "name": "locker",
709
+ "type": "core::starknet::contract_address::ContractAddress"
710
+ },
711
+ {
712
+ "name": "selector",
713
+ "type": "core::felt252"
714
+ },
715
+ {
716
+ "name": "allowed",
717
+ "type": "core::bool"
718
+ }
719
+ ],
720
+ "outputs": [],
721
+ "state_mutability": "external"
722
+ }
723
+ ]
724
+ },
725
+ {
726
+ "type": "impl",
727
+ "name": "ERC1155MixinImpl",
728
+ "interface_name": "openzeppelin_interfaces::token::erc1155::ERC1155ABI"
729
+ },
730
+ {
731
+ "type": "struct",
732
+ "name": "core::array::Span::<core::starknet::contract_address::ContractAddress>",
733
+ "members": [
734
+ {
735
+ "name": "snapshot",
736
+ "type": "@core::array::Array::<core::starknet::contract_address::ContractAddress>"
737
+ }
738
+ ]
739
+ },
740
+ {
741
+ "type": "struct",
742
+ "name": "core::array::Span::<core::integer::u256>",
743
+ "members": [
744
+ {
745
+ "name": "snapshot",
746
+ "type": "@core::array::Array::<core::integer::u256>"
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "type": "struct",
752
+ "name": "core::array::Span::<core::felt252>",
753
+ "members": [
754
+ {
755
+ "name": "snapshot",
756
+ "type": "@core::array::Array::<core::felt252>"
757
+ }
758
+ ]
759
+ },
760
+ {
761
+ "type": "struct",
762
+ "name": "core::byte_array::ByteArray",
763
+ "members": [
764
+ {
765
+ "name": "data",
766
+ "type": "core::array::Array::<core::bytes_31::bytes31>"
767
+ },
768
+ {
769
+ "name": "pending_word",
770
+ "type": "core::felt252"
771
+ },
772
+ {
773
+ "name": "pending_word_len",
774
+ "type": "core::internal::bounded_int::BoundedInt::<0, 30>"
775
+ }
776
+ ]
777
+ },
778
+ {
779
+ "type": "interface",
780
+ "name": "openzeppelin_interfaces::token::erc1155::ERC1155ABI",
781
+ "items": [
782
+ {
783
+ "type": "function",
784
+ "name": "balance_of",
785
+ "inputs": [
786
+ {
787
+ "name": "account",
788
+ "type": "core::starknet::contract_address::ContractAddress"
789
+ },
790
+ {
791
+ "name": "token_id",
792
+ "type": "core::integer::u256"
793
+ }
794
+ ],
795
+ "outputs": [
796
+ {
797
+ "type": "core::integer::u256"
798
+ }
799
+ ],
800
+ "state_mutability": "view"
801
+ },
802
+ {
803
+ "type": "function",
804
+ "name": "balance_of_batch",
805
+ "inputs": [
806
+ {
807
+ "name": "accounts",
808
+ "type": "core::array::Span::<core::starknet::contract_address::ContractAddress>"
809
+ },
810
+ {
811
+ "name": "token_ids",
812
+ "type": "core::array::Span::<core::integer::u256>"
813
+ }
814
+ ],
815
+ "outputs": [
816
+ {
817
+ "type": "core::array::Span::<core::integer::u256>"
818
+ }
819
+ ],
820
+ "state_mutability": "view"
821
+ },
822
+ {
823
+ "type": "function",
824
+ "name": "safe_transfer_from",
825
+ "inputs": [
826
+ {
827
+ "name": "from",
828
+ "type": "core::starknet::contract_address::ContractAddress"
829
+ },
830
+ {
831
+ "name": "to",
832
+ "type": "core::starknet::contract_address::ContractAddress"
833
+ },
834
+ {
835
+ "name": "token_id",
836
+ "type": "core::integer::u256"
837
+ },
838
+ {
839
+ "name": "value",
840
+ "type": "core::integer::u256"
841
+ },
842
+ {
843
+ "name": "data",
844
+ "type": "core::array::Span::<core::felt252>"
845
+ }
846
+ ],
847
+ "outputs": [],
848
+ "state_mutability": "external"
849
+ },
850
+ {
851
+ "type": "function",
852
+ "name": "safe_batch_transfer_from",
853
+ "inputs": [
854
+ {
855
+ "name": "from",
856
+ "type": "core::starknet::contract_address::ContractAddress"
857
+ },
858
+ {
859
+ "name": "to",
860
+ "type": "core::starknet::contract_address::ContractAddress"
861
+ },
862
+ {
863
+ "name": "token_ids",
864
+ "type": "core::array::Span::<core::integer::u256>"
865
+ },
866
+ {
867
+ "name": "values",
868
+ "type": "core::array::Span::<core::integer::u256>"
869
+ },
870
+ {
871
+ "name": "data",
872
+ "type": "core::array::Span::<core::felt252>"
873
+ }
874
+ ],
875
+ "outputs": [],
876
+ "state_mutability": "external"
877
+ },
878
+ {
879
+ "type": "function",
880
+ "name": "is_approved_for_all",
881
+ "inputs": [
882
+ {
883
+ "name": "owner",
884
+ "type": "core::starknet::contract_address::ContractAddress"
885
+ },
886
+ {
887
+ "name": "operator",
888
+ "type": "core::starknet::contract_address::ContractAddress"
889
+ }
890
+ ],
891
+ "outputs": [
892
+ {
893
+ "type": "core::bool"
894
+ }
895
+ ],
896
+ "state_mutability": "view"
897
+ },
898
+ {
899
+ "type": "function",
900
+ "name": "set_approval_for_all",
901
+ "inputs": [
902
+ {
903
+ "name": "operator",
904
+ "type": "core::starknet::contract_address::ContractAddress"
905
+ },
906
+ {
907
+ "name": "approved",
908
+ "type": "core::bool"
909
+ }
910
+ ],
911
+ "outputs": [],
912
+ "state_mutability": "external"
913
+ },
914
+ {
915
+ "type": "function",
916
+ "name": "supports_interface",
917
+ "inputs": [
918
+ {
919
+ "name": "interface_id",
920
+ "type": "core::felt252"
921
+ }
922
+ ],
923
+ "outputs": [
924
+ {
925
+ "type": "core::bool"
926
+ }
927
+ ],
928
+ "state_mutability": "view"
929
+ },
930
+ {
931
+ "type": "function",
932
+ "name": "uri",
933
+ "inputs": [
934
+ {
935
+ "name": "token_id",
936
+ "type": "core::integer::u256"
937
+ }
938
+ ],
939
+ "outputs": [
940
+ {
941
+ "type": "core::byte_array::ByteArray"
942
+ }
943
+ ],
944
+ "state_mutability": "view"
945
+ },
946
+ {
947
+ "type": "function",
948
+ "name": "balanceOf",
949
+ "inputs": [
950
+ {
951
+ "name": "account",
952
+ "type": "core::starknet::contract_address::ContractAddress"
953
+ },
954
+ {
955
+ "name": "tokenId",
956
+ "type": "core::integer::u256"
957
+ }
958
+ ],
959
+ "outputs": [
960
+ {
961
+ "type": "core::integer::u256"
962
+ }
963
+ ],
964
+ "state_mutability": "view"
965
+ },
966
+ {
967
+ "type": "function",
968
+ "name": "balanceOfBatch",
969
+ "inputs": [
970
+ {
971
+ "name": "accounts",
972
+ "type": "core::array::Span::<core::starknet::contract_address::ContractAddress>"
973
+ },
974
+ {
975
+ "name": "tokenIds",
976
+ "type": "core::array::Span::<core::integer::u256>"
977
+ }
978
+ ],
979
+ "outputs": [
980
+ {
981
+ "type": "core::array::Span::<core::integer::u256>"
982
+ }
983
+ ],
984
+ "state_mutability": "view"
985
+ },
986
+ {
987
+ "type": "function",
988
+ "name": "safeTransferFrom",
989
+ "inputs": [
990
+ {
991
+ "name": "from",
992
+ "type": "core::starknet::contract_address::ContractAddress"
993
+ },
994
+ {
995
+ "name": "to",
996
+ "type": "core::starknet::contract_address::ContractAddress"
997
+ },
998
+ {
999
+ "name": "tokenId",
1000
+ "type": "core::integer::u256"
1001
+ },
1002
+ {
1003
+ "name": "value",
1004
+ "type": "core::integer::u256"
1005
+ },
1006
+ {
1007
+ "name": "data",
1008
+ "type": "core::array::Span::<core::felt252>"
1009
+ }
1010
+ ],
1011
+ "outputs": [],
1012
+ "state_mutability": "external"
1013
+ },
1014
+ {
1015
+ "type": "function",
1016
+ "name": "safeBatchTransferFrom",
1017
+ "inputs": [
1018
+ {
1019
+ "name": "from",
1020
+ "type": "core::starknet::contract_address::ContractAddress"
1021
+ },
1022
+ {
1023
+ "name": "to",
1024
+ "type": "core::starknet::contract_address::ContractAddress"
1025
+ },
1026
+ {
1027
+ "name": "tokenIds",
1028
+ "type": "core::array::Span::<core::integer::u256>"
1029
+ },
1030
+ {
1031
+ "name": "values",
1032
+ "type": "core::array::Span::<core::integer::u256>"
1033
+ },
1034
+ {
1035
+ "name": "data",
1036
+ "type": "core::array::Span::<core::felt252>"
1037
+ }
1038
+ ],
1039
+ "outputs": [],
1040
+ "state_mutability": "external"
1041
+ },
1042
+ {
1043
+ "type": "function",
1044
+ "name": "isApprovedForAll",
1045
+ "inputs": [
1046
+ {
1047
+ "name": "owner",
1048
+ "type": "core::starknet::contract_address::ContractAddress"
1049
+ },
1050
+ {
1051
+ "name": "operator",
1052
+ "type": "core::starknet::contract_address::ContractAddress"
1053
+ }
1054
+ ],
1055
+ "outputs": [
1056
+ {
1057
+ "type": "core::bool"
1058
+ }
1059
+ ],
1060
+ "state_mutability": "view"
1061
+ },
1062
+ {
1063
+ "type": "function",
1064
+ "name": "setApprovalForAll",
1065
+ "inputs": [
1066
+ {
1067
+ "name": "operator",
1068
+ "type": "core::starknet::contract_address::ContractAddress"
1069
+ },
1070
+ {
1071
+ "name": "approved",
1072
+ "type": "core::bool"
1073
+ }
1074
+ ],
1075
+ "outputs": [],
1076
+ "state_mutability": "external"
1077
+ }
1078
+ ]
1079
+ },
1080
+ {
1081
+ "type": "impl",
1082
+ "name": "OwnableMixinImpl",
1083
+ "interface_name": "openzeppelin_interfaces::access::ownable::OwnableABI"
1084
+ },
1085
+ {
1086
+ "type": "interface",
1087
+ "name": "openzeppelin_interfaces::access::ownable::OwnableABI",
1088
+ "items": [
1089
+ {
1090
+ "type": "function",
1091
+ "name": "owner",
1092
+ "inputs": [],
1093
+ "outputs": [
1094
+ {
1095
+ "type": "core::starknet::contract_address::ContractAddress"
1096
+ }
1097
+ ],
1098
+ "state_mutability": "view"
1099
+ },
1100
+ {
1101
+ "type": "function",
1102
+ "name": "transfer_ownership",
1103
+ "inputs": [
1104
+ {
1105
+ "name": "new_owner",
1106
+ "type": "core::starknet::contract_address::ContractAddress"
1107
+ }
1108
+ ],
1109
+ "outputs": [],
1110
+ "state_mutability": "external"
1111
+ },
1112
+ {
1113
+ "type": "function",
1114
+ "name": "renounce_ownership",
1115
+ "inputs": [],
1116
+ "outputs": [],
1117
+ "state_mutability": "external"
1118
+ },
1119
+ {
1120
+ "type": "function",
1121
+ "name": "transferOwnership",
1122
+ "inputs": [
1123
+ {
1124
+ "name": "newOwner",
1125
+ "type": "core::starknet::contract_address::ContractAddress"
1126
+ }
1127
+ ],
1128
+ "outputs": [],
1129
+ "state_mutability": "external"
1130
+ },
1131
+ {
1132
+ "type": "function",
1133
+ "name": "renounceOwnership",
1134
+ "inputs": [],
1135
+ "outputs": [],
1136
+ "state_mutability": "external"
1137
+ }
1138
+ ]
1139
+ },
1140
+ {
1141
+ "type": "constructor",
1142
+ "name": "constructor",
1143
+ "inputs": [
1144
+ {
1145
+ "name": "owner",
1146
+ "type": "core::starknet::contract_address::ContractAddress"
1147
+ },
1148
+ {
1149
+ "name": "inscriptions_nft",
1150
+ "type": "core::starknet::contract_address::ContractAddress"
1151
+ },
1152
+ {
1153
+ "name": "registry",
1154
+ "type": "core::starknet::contract_address::ContractAddress"
1155
+ },
1156
+ {
1157
+ "name": "implementation_hash",
1158
+ "type": "core::felt252"
1159
+ }
1160
+ ]
1161
+ },
1162
+ {
1163
+ "type": "event",
1164
+ "name": "openzeppelin_token::erc1155::erc1155::ERC1155Component::TransferSingle",
1165
+ "kind": "struct",
1166
+ "members": [
1167
+ {
1168
+ "name": "operator",
1169
+ "type": "core::starknet::contract_address::ContractAddress",
1170
+ "kind": "key"
1171
+ },
1172
+ {
1173
+ "name": "from",
1174
+ "type": "core::starknet::contract_address::ContractAddress",
1175
+ "kind": "key"
1176
+ },
1177
+ {
1178
+ "name": "to",
1179
+ "type": "core::starknet::contract_address::ContractAddress",
1180
+ "kind": "key"
1181
+ },
1182
+ {
1183
+ "name": "id",
1184
+ "type": "core::integer::u256",
1185
+ "kind": "data"
1186
+ },
1187
+ {
1188
+ "name": "value",
1189
+ "type": "core::integer::u256",
1190
+ "kind": "data"
1191
+ }
1192
+ ]
1193
+ },
1194
+ {
1195
+ "type": "event",
1196
+ "name": "openzeppelin_token::erc1155::erc1155::ERC1155Component::TransferBatch",
1197
+ "kind": "struct",
1198
+ "members": [
1199
+ {
1200
+ "name": "operator",
1201
+ "type": "core::starknet::contract_address::ContractAddress",
1202
+ "kind": "key"
1203
+ },
1204
+ {
1205
+ "name": "from",
1206
+ "type": "core::starknet::contract_address::ContractAddress",
1207
+ "kind": "key"
1208
+ },
1209
+ {
1210
+ "name": "to",
1211
+ "type": "core::starknet::contract_address::ContractAddress",
1212
+ "kind": "key"
1213
+ },
1214
+ {
1215
+ "name": "ids",
1216
+ "type": "core::array::Span::<core::integer::u256>",
1217
+ "kind": "data"
1218
+ },
1219
+ {
1220
+ "name": "values",
1221
+ "type": "core::array::Span::<core::integer::u256>",
1222
+ "kind": "data"
1223
+ }
1224
+ ]
1225
+ },
1226
+ {
1227
+ "type": "event",
1228
+ "name": "openzeppelin_token::erc1155::erc1155::ERC1155Component::ApprovalForAll",
1229
+ "kind": "struct",
1230
+ "members": [
1231
+ {
1232
+ "name": "owner",
1233
+ "type": "core::starknet::contract_address::ContractAddress",
1234
+ "kind": "key"
1235
+ },
1236
+ {
1237
+ "name": "operator",
1238
+ "type": "core::starknet::contract_address::ContractAddress",
1239
+ "kind": "key"
1240
+ },
1241
+ {
1242
+ "name": "approved",
1243
+ "type": "core::bool",
1244
+ "kind": "data"
1245
+ }
1246
+ ]
1247
+ },
1248
+ {
1249
+ "type": "event",
1250
+ "name": "openzeppelin_token::erc1155::erc1155::ERC1155Component::URI",
1251
+ "kind": "struct",
1252
+ "members": [
1253
+ {
1254
+ "name": "value",
1255
+ "type": "core::byte_array::ByteArray",
1256
+ "kind": "data"
1257
+ },
1258
+ {
1259
+ "name": "id",
1260
+ "type": "core::integer::u256",
1261
+ "kind": "key"
1262
+ }
1263
+ ]
1264
+ },
1265
+ {
1266
+ "type": "event",
1267
+ "name": "openzeppelin_token::erc1155::erc1155::ERC1155Component::Event",
1268
+ "kind": "enum",
1269
+ "variants": [
1270
+ {
1271
+ "name": "TransferSingle",
1272
+ "type": "openzeppelin_token::erc1155::erc1155::ERC1155Component::TransferSingle",
1273
+ "kind": "nested"
1274
+ },
1275
+ {
1276
+ "name": "TransferBatch",
1277
+ "type": "openzeppelin_token::erc1155::erc1155::ERC1155Component::TransferBatch",
1278
+ "kind": "nested"
1279
+ },
1280
+ {
1281
+ "name": "ApprovalForAll",
1282
+ "type": "openzeppelin_token::erc1155::erc1155::ERC1155Component::ApprovalForAll",
1283
+ "kind": "nested"
1284
+ },
1285
+ {
1286
+ "name": "URI",
1287
+ "type": "openzeppelin_token::erc1155::erc1155::ERC1155Component::URI",
1288
+ "kind": "nested"
1289
+ }
1290
+ ]
1291
+ },
1292
+ {
1293
+ "type": "event",
1294
+ "name": "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferred",
1295
+ "kind": "struct",
1296
+ "members": [
1297
+ {
1298
+ "name": "previous_owner",
1299
+ "type": "core::starknet::contract_address::ContractAddress",
1300
+ "kind": "key"
1301
+ },
1302
+ {
1303
+ "name": "new_owner",
1304
+ "type": "core::starknet::contract_address::ContractAddress",
1305
+ "kind": "key"
1306
+ }
1307
+ ]
1308
+ },
1309
+ {
1310
+ "type": "event",
1311
+ "name": "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferStarted",
1312
+ "kind": "struct",
1313
+ "members": [
1314
+ {
1315
+ "name": "previous_owner",
1316
+ "type": "core::starknet::contract_address::ContractAddress",
1317
+ "kind": "key"
1318
+ },
1319
+ {
1320
+ "name": "new_owner",
1321
+ "type": "core::starknet::contract_address::ContractAddress",
1322
+ "kind": "key"
1323
+ }
1324
+ ]
1325
+ },
1326
+ {
1327
+ "type": "event",
1328
+ "name": "openzeppelin_access::ownable::ownable::OwnableComponent::Event",
1329
+ "kind": "enum",
1330
+ "variants": [
1331
+ {
1332
+ "name": "OwnershipTransferred",
1333
+ "type": "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferred",
1334
+ "kind": "nested"
1335
+ },
1336
+ {
1337
+ "name": "OwnershipTransferStarted",
1338
+ "type": "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferStarted",
1339
+ "kind": "nested"
1340
+ }
1341
+ ]
1342
+ },
1343
+ {
1344
+ "type": "event",
1345
+ "name": "openzeppelin_introspection::src5::SRC5Component::Event",
1346
+ "kind": "enum",
1347
+ "variants": []
1348
+ },
1349
+ {
1350
+ "type": "event",
1351
+ "name": "openzeppelin_security::reentrancyguard::ReentrancyGuardComponent::Event",
1352
+ "kind": "enum",
1353
+ "variants": []
1354
+ },
1355
+ {
1356
+ "type": "event",
1357
+ "name": "openzeppelin_security::pausable::PausableComponent::Paused",
1358
+ "kind": "struct",
1359
+ "members": [
1360
+ {
1361
+ "name": "account",
1362
+ "type": "core::starknet::contract_address::ContractAddress",
1363
+ "kind": "data"
1364
+ }
1365
+ ]
1366
+ },
1367
+ {
1368
+ "type": "event",
1369
+ "name": "openzeppelin_security::pausable::PausableComponent::Unpaused",
1370
+ "kind": "struct",
1371
+ "members": [
1372
+ {
1373
+ "name": "account",
1374
+ "type": "core::starknet::contract_address::ContractAddress",
1375
+ "kind": "data"
1376
+ }
1377
+ ]
1378
+ },
1379
+ {
1380
+ "type": "event",
1381
+ "name": "openzeppelin_security::pausable::PausableComponent::Event",
1382
+ "kind": "enum",
1383
+ "variants": [
1384
+ {
1385
+ "name": "Paused",
1386
+ "type": "openzeppelin_security::pausable::PausableComponent::Paused",
1387
+ "kind": "nested"
1388
+ },
1389
+ {
1390
+ "name": "Unpaused",
1391
+ "type": "openzeppelin_security::pausable::PausableComponent::Unpaused",
1392
+ "kind": "nested"
1393
+ }
1394
+ ]
1395
+ },
1396
+ {
1397
+ "type": "event",
1398
+ "name": "openzeppelin_utils::cryptography::nonces::NoncesComponent::Event",
1399
+ "kind": "enum",
1400
+ "variants": []
1401
+ },
1402
+ {
1403
+ "type": "event",
1404
+ "name": "stela::stela::StelaProtocol::InscriptionCreated",
1405
+ "kind": "struct",
1406
+ "members": [
1407
+ {
1408
+ "name": "inscription_id",
1409
+ "type": "core::integer::u256",
1410
+ "kind": "key"
1411
+ },
1412
+ {
1413
+ "name": "creator",
1414
+ "type": "core::starknet::contract_address::ContractAddress",
1415
+ "kind": "key"
1416
+ },
1417
+ {
1418
+ "name": "is_borrow",
1419
+ "type": "core::bool",
1420
+ "kind": "data"
1421
+ }
1422
+ ]
1423
+ },
1424
+ {
1425
+ "type": "event",
1426
+ "name": "stela::stela::StelaProtocol::InscriptionSigned",
1427
+ "kind": "struct",
1428
+ "members": [
1429
+ {
1430
+ "name": "inscription_id",
1431
+ "type": "core::integer::u256",
1432
+ "kind": "key"
1433
+ },
1434
+ {
1435
+ "name": "borrower",
1436
+ "type": "core::starknet::contract_address::ContractAddress",
1437
+ "kind": "key"
1438
+ },
1439
+ {
1440
+ "name": "lender",
1441
+ "type": "core::starknet::contract_address::ContractAddress",
1442
+ "kind": "key"
1443
+ },
1444
+ {
1445
+ "name": "issued_debt_percentage",
1446
+ "type": "core::integer::u256",
1447
+ "kind": "data"
1448
+ },
1449
+ {
1450
+ "name": "shares_minted",
1451
+ "type": "core::integer::u256",
1452
+ "kind": "data"
1453
+ }
1454
+ ]
1455
+ },
1456
+ {
1457
+ "type": "event",
1458
+ "name": "stela::stela::StelaProtocol::InscriptionCancelled",
1459
+ "kind": "struct",
1460
+ "members": [
1461
+ {
1462
+ "name": "inscription_id",
1463
+ "type": "core::integer::u256",
1464
+ "kind": "key"
1465
+ },
1466
+ {
1467
+ "name": "creator",
1468
+ "type": "core::starknet::contract_address::ContractAddress",
1469
+ "kind": "data"
1470
+ }
1471
+ ]
1472
+ },
1473
+ {
1474
+ "type": "event",
1475
+ "name": "stela::stela::StelaProtocol::InscriptionRepaid",
1476
+ "kind": "struct",
1477
+ "members": [
1478
+ {
1479
+ "name": "inscription_id",
1480
+ "type": "core::integer::u256",
1481
+ "kind": "key"
1482
+ },
1483
+ {
1484
+ "name": "repayer",
1485
+ "type": "core::starknet::contract_address::ContractAddress",
1486
+ "kind": "data"
1487
+ }
1488
+ ]
1489
+ },
1490
+ {
1491
+ "type": "event",
1492
+ "name": "stela::stela::StelaProtocol::InscriptionLiquidated",
1493
+ "kind": "struct",
1494
+ "members": [
1495
+ {
1496
+ "name": "inscription_id",
1497
+ "type": "core::integer::u256",
1498
+ "kind": "key"
1499
+ },
1500
+ {
1501
+ "name": "liquidator",
1502
+ "type": "core::starknet::contract_address::ContractAddress",
1503
+ "kind": "data"
1504
+ }
1505
+ ]
1506
+ },
1507
+ {
1508
+ "type": "event",
1509
+ "name": "stela::stela::StelaProtocol::SharesRedeemed",
1510
+ "kind": "struct",
1511
+ "members": [
1512
+ {
1513
+ "name": "inscription_id",
1514
+ "type": "core::integer::u256",
1515
+ "kind": "key"
1516
+ },
1517
+ {
1518
+ "name": "redeemer",
1519
+ "type": "core::starknet::contract_address::ContractAddress",
1520
+ "kind": "key"
1521
+ },
1522
+ {
1523
+ "name": "shares",
1524
+ "type": "core::integer::u256",
1525
+ "kind": "data"
1526
+ }
1527
+ ]
1528
+ },
1529
+ {
1530
+ "type": "event",
1531
+ "name": "stela::stela::StelaProtocol::OrderSettled",
1532
+ "kind": "struct",
1533
+ "members": [
1534
+ {
1535
+ "name": "inscription_id",
1536
+ "type": "core::integer::u256",
1537
+ "kind": "key"
1538
+ },
1539
+ {
1540
+ "name": "borrower",
1541
+ "type": "core::starknet::contract_address::ContractAddress",
1542
+ "kind": "key"
1543
+ },
1544
+ {
1545
+ "name": "lender",
1546
+ "type": "core::starknet::contract_address::ContractAddress",
1547
+ "kind": "key"
1548
+ },
1549
+ {
1550
+ "name": "relayer",
1551
+ "type": "core::starknet::contract_address::ContractAddress",
1552
+ "kind": "data"
1553
+ },
1554
+ {
1555
+ "name": "relayer_fee_amount",
1556
+ "type": "core::integer::u256",
1557
+ "kind": "data"
1558
+ }
1559
+ ]
1560
+ },
1561
+ {
1562
+ "type": "event",
1563
+ "name": "stela::stela::StelaProtocol::OrderFilled",
1564
+ "kind": "struct",
1565
+ "members": [
1566
+ {
1567
+ "name": "inscription_id",
1568
+ "type": "core::integer::u256",
1569
+ "kind": "key"
1570
+ },
1571
+ {
1572
+ "name": "order_hash",
1573
+ "type": "core::felt252",
1574
+ "kind": "key"
1575
+ },
1576
+ {
1577
+ "name": "taker",
1578
+ "type": "core::starknet::contract_address::ContractAddress",
1579
+ "kind": "key"
1580
+ },
1581
+ {
1582
+ "name": "fill_bps",
1583
+ "type": "core::integer::u256",
1584
+ "kind": "data"
1585
+ },
1586
+ {
1587
+ "name": "total_filled_bps",
1588
+ "type": "core::integer::u256",
1589
+ "kind": "data"
1590
+ }
1591
+ ]
1592
+ },
1593
+ {
1594
+ "type": "event",
1595
+ "name": "stela::stela::StelaProtocol::OrderCancelled",
1596
+ "kind": "struct",
1597
+ "members": [
1598
+ {
1599
+ "name": "order_hash",
1600
+ "type": "core::felt252",
1601
+ "kind": "key"
1602
+ },
1603
+ {
1604
+ "name": "maker",
1605
+ "type": "core::starknet::contract_address::ContractAddress",
1606
+ "kind": "data"
1607
+ }
1608
+ ]
1609
+ },
1610
+ {
1611
+ "type": "event",
1612
+ "name": "stela::stela::StelaProtocol::OrdersBulkCancelled",
1613
+ "kind": "struct",
1614
+ "members": [
1615
+ {
1616
+ "name": "maker",
1617
+ "type": "core::starknet::contract_address::ContractAddress",
1618
+ "kind": "key"
1619
+ },
1620
+ {
1621
+ "name": "new_min_nonce",
1622
+ "type": "core::felt252",
1623
+ "kind": "data"
1624
+ }
1625
+ ]
1626
+ },
1627
+ {
1628
+ "type": "event",
1629
+ "name": "stela::stela::StelaProtocol::Event",
1630
+ "kind": "enum",
1631
+ "variants": [
1632
+ {
1633
+ "name": "ERC1155Event",
1634
+ "type": "openzeppelin_token::erc1155::erc1155::ERC1155Component::Event",
1635
+ "kind": "flat"
1636
+ },
1637
+ {
1638
+ "name": "OwnableEvent",
1639
+ "type": "openzeppelin_access::ownable::ownable::OwnableComponent::Event",
1640
+ "kind": "flat"
1641
+ },
1642
+ {
1643
+ "name": "SRC5Event",
1644
+ "type": "openzeppelin_introspection::src5::SRC5Component::Event",
1645
+ "kind": "flat"
1646
+ },
1647
+ {
1648
+ "name": "ReentrancyGuardEvent",
1649
+ "type": "openzeppelin_security::reentrancyguard::ReentrancyGuardComponent::Event",
1650
+ "kind": "flat"
1651
+ },
1652
+ {
1653
+ "name": "PausableEvent",
1654
+ "type": "openzeppelin_security::pausable::PausableComponent::Event",
1655
+ "kind": "flat"
1656
+ },
1657
+ {
1658
+ "name": "NoncesEvent",
1659
+ "type": "openzeppelin_utils::cryptography::nonces::NoncesComponent::Event",
1660
+ "kind": "flat"
1661
+ },
1662
+ {
1663
+ "name": "InscriptionCreated",
1664
+ "type": "stela::stela::StelaProtocol::InscriptionCreated",
1665
+ "kind": "nested"
1666
+ },
1667
+ {
1668
+ "name": "InscriptionSigned",
1669
+ "type": "stela::stela::StelaProtocol::InscriptionSigned",
1670
+ "kind": "nested"
1671
+ },
1672
+ {
1673
+ "name": "InscriptionCancelled",
1674
+ "type": "stela::stela::StelaProtocol::InscriptionCancelled",
1675
+ "kind": "nested"
1676
+ },
1677
+ {
1678
+ "name": "InscriptionRepaid",
1679
+ "type": "stela::stela::StelaProtocol::InscriptionRepaid",
1680
+ "kind": "nested"
1681
+ },
1682
+ {
1683
+ "name": "InscriptionLiquidated",
1684
+ "type": "stela::stela::StelaProtocol::InscriptionLiquidated",
1685
+ "kind": "nested"
1686
+ },
1687
+ {
1688
+ "name": "SharesRedeemed",
1689
+ "type": "stela::stela::StelaProtocol::SharesRedeemed",
1690
+ "kind": "nested"
1691
+ },
1692
+ {
1693
+ "name": "OrderSettled",
1694
+ "type": "stela::stela::StelaProtocol::OrderSettled",
1695
+ "kind": "nested"
1696
+ },
1697
+ {
1698
+ "name": "OrderFilled",
1699
+ "type": "stela::stela::StelaProtocol::OrderFilled",
1700
+ "kind": "nested"
1701
+ },
1702
+ {
1703
+ "name": "OrderCancelled",
1704
+ "type": "stela::stela::StelaProtocol::OrderCancelled",
1705
+ "kind": "nested"
1706
+ },
1707
+ {
1708
+ "name": "OrdersBulkCancelled",
1709
+ "type": "stela::stela::StelaProtocol::OrdersBulkCancelled",
1710
+ "kind": "nested"
1711
+ }
1712
+ ]
1713
+ }
1714
+ ]