@evedex/networks 3.4.3-beta.1

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/README.md +24 -0
  2. package/networks/abi/AcrossSpokePoolMock.json +233 -0
  3. package/networks/abi/BadgeV1.json +1016 -0
  4. package/networks/abi/Billing.json +795 -0
  5. package/networks/abi/BridgeMiddleware.json +320 -0
  6. package/networks/abi/BridgeMiddlewareV2.json +431 -0
  7. package/networks/abi/BurnRegistryV1.json +541 -0
  8. package/networks/abi/CashbackVaultV1.json +397 -0
  9. package/networks/abi/CashbackVaultV2.json +434 -0
  10. package/networks/abi/ContestVault.json +484 -0
  11. package/networks/abi/DVFDepositContract.json +495 -0
  12. package/networks/abi/DVFDepositContractMock.json +425 -0
  13. package/networks/abi/DefaultBridgeGateway.json +23 -0
  14. package/networks/abi/DefaultBridgeMock.json +139 -0
  15. package/networks/abi/DepositManager.json +373 -0
  16. package/networks/abi/EHMarket.json +904 -0
  17. package/networks/abi/EHMarketLegacy.json +818 -0
  18. package/networks/abi/ERC20Mock.json +427 -0
  19. package/networks/abi/ERC20Paymaster.json +453 -0
  20. package/networks/abi/ERC721V1.json +916 -0
  21. package/networks/abi/ERC721V2.json +979 -0
  22. package/networks/abi/Eventum.json +515 -0
  23. package/networks/abi/GovernorMultisig.json +454 -0
  24. package/networks/abi/IAcrossSpokePool.json +111 -0
  25. package/networks/abi/IAllowanceTransfer.json +488 -0
  26. package/networks/abi/IDefaultBridgeGateway.json +23 -0
  27. package/networks/abi/IDepositManager.json +38 -0
  28. package/networks/abi/IEIP712.json +17 -0
  29. package/networks/abi/IEventHorizonMarket.json +214 -0
  30. package/networks/abi/IPermit2.json +867 -0
  31. package/networks/abi/IPriceFeed.json +50 -0
  32. package/networks/abi/ISignatureTransfer.json +396 -0
  33. package/networks/abi/ISwapManager.json +55 -0
  34. package/networks/abi/IWETH.json +17 -0
  35. package/networks/abi/LuckyShot.json +484 -0
  36. package/networks/abi/MinimalProxyFactory.json +130 -0
  37. package/networks/abi/Multicall3.json +442 -0
  38. package/networks/abi/Multiownable.json +418 -0
  39. package/networks/abi/OwnableValidator.json +596 -0
  40. package/networks/abi/Permit2Mock.json +147 -0
  41. package/networks/abi/PriceFeedMock.json +87 -0
  42. package/networks/abi/ProxyAdmin.json +125 -0
  43. package/networks/abi/Storage.json +396 -0
  44. package/networks/abi/SwapManager.json +414 -0
  45. package/networks/abi/SwapRouterMock.json +315 -0
  46. package/networks/abi/SwapRouterTestnetMock.json +323 -0
  47. package/networks/abi/TestnetERC20.json +456 -0
  48. package/networks/abi/TestnetWETH.json +503 -0
  49. package/networks/abi/TreasuryV1.json +292 -0
  50. package/networks/abi/USDC.json +515 -0
  51. package/networks/abi/USDT.json +515 -0
  52. package/networks/abi/UniversalRouterMock.json +101 -0
  53. package/networks/abi/UniversalRouterTestnetMock.json +85 -0
  54. package/networks/abi/VaultV1.json +435 -0
  55. package/networks/abi/VaultV2.json +506 -0
  56. package/networks/abi/WBTC.json +515 -0
  57. package/networks/abi/WETHMock.json +484 -0
  58. package/networks/arbitrum-bridges.json +66 -0
  59. package/networks/contracts-networks.json +863 -0
  60. package/networks/contracts.json +280 -0
  61. package/networks/networks.json +302 -0
  62. package/package.json +61 -0
@@ -0,0 +1,979 @@
1
+ {
2
+ "abi": [
3
+ {
4
+ "inputs": [],
5
+ "stateMutability": "nonpayable",
6
+ "type": "constructor"
7
+ },
8
+ {
9
+ "inputs": [],
10
+ "name": "ECDSAInvalidSignature",
11
+ "type": "error"
12
+ },
13
+ {
14
+ "inputs": [
15
+ {
16
+ "internalType": "uint256",
17
+ "name": "length",
18
+ "type": "uint256"
19
+ }
20
+ ],
21
+ "name": "ECDSAInvalidSignatureLength",
22
+ "type": "error"
23
+ },
24
+ {
25
+ "inputs": [
26
+ {
27
+ "internalType": "bytes32",
28
+ "name": "s",
29
+ "type": "bytes32"
30
+ }
31
+ ],
32
+ "name": "ECDSAInvalidSignatureS",
33
+ "type": "error"
34
+ },
35
+ {
36
+ "inputs": [
37
+ {
38
+ "internalType": "address",
39
+ "name": "sender",
40
+ "type": "address"
41
+ },
42
+ {
43
+ "internalType": "uint256",
44
+ "name": "tokenId",
45
+ "type": "uint256"
46
+ },
47
+ {
48
+ "internalType": "address",
49
+ "name": "owner",
50
+ "type": "address"
51
+ }
52
+ ],
53
+ "name": "ERC721IncorrectOwner",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "address",
60
+ "name": "operator",
61
+ "type": "address"
62
+ },
63
+ {
64
+ "internalType": "uint256",
65
+ "name": "tokenId",
66
+ "type": "uint256"
67
+ }
68
+ ],
69
+ "name": "ERC721InsufficientApproval",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [
74
+ {
75
+ "internalType": "address",
76
+ "name": "approver",
77
+ "type": "address"
78
+ }
79
+ ],
80
+ "name": "ERC721InvalidApprover",
81
+ "type": "error"
82
+ },
83
+ {
84
+ "inputs": [
85
+ {
86
+ "internalType": "address",
87
+ "name": "operator",
88
+ "type": "address"
89
+ }
90
+ ],
91
+ "name": "ERC721InvalidOperator",
92
+ "type": "error"
93
+ },
94
+ {
95
+ "inputs": [
96
+ {
97
+ "internalType": "address",
98
+ "name": "owner",
99
+ "type": "address"
100
+ }
101
+ ],
102
+ "name": "ERC721InvalidOwner",
103
+ "type": "error"
104
+ },
105
+ {
106
+ "inputs": [
107
+ {
108
+ "internalType": "address",
109
+ "name": "receiver",
110
+ "type": "address"
111
+ }
112
+ ],
113
+ "name": "ERC721InvalidReceiver",
114
+ "type": "error"
115
+ },
116
+ {
117
+ "inputs": [
118
+ {
119
+ "internalType": "address",
120
+ "name": "sender",
121
+ "type": "address"
122
+ }
123
+ ],
124
+ "name": "ERC721InvalidSender",
125
+ "type": "error"
126
+ },
127
+ {
128
+ "inputs": [
129
+ {
130
+ "internalType": "uint256",
131
+ "name": "tokenId",
132
+ "type": "uint256"
133
+ }
134
+ ],
135
+ "name": "ERC721NonexistentToken",
136
+ "type": "error"
137
+ },
138
+ {
139
+ "inputs": [
140
+ {
141
+ "internalType": "address",
142
+ "name": "recipient",
143
+ "type": "address"
144
+ },
145
+ {
146
+ "internalType": "uint256",
147
+ "name": "costs",
148
+ "type": "uint256"
149
+ },
150
+ {
151
+ "internalType": "uint256",
152
+ "name": "value",
153
+ "type": "uint256"
154
+ }
155
+ ],
156
+ "name": "ERC721V1InsufficientFundsForMint",
157
+ "type": "error"
158
+ },
159
+ {
160
+ "inputs": [],
161
+ "name": "ERC721V1InvalidMintSignature",
162
+ "type": "error"
163
+ },
164
+ {
165
+ "inputs": [
166
+ {
167
+ "internalType": "int256",
168
+ "name": "price",
169
+ "type": "int256"
170
+ }
171
+ ],
172
+ "name": "ERC721V1NegativeCosts",
173
+ "type": "error"
174
+ },
175
+ {
176
+ "inputs": [
177
+ {
178
+ "internalType": "address",
179
+ "name": "recipient",
180
+ "type": "address"
181
+ },
182
+ {
183
+ "internalType": "uint256",
184
+ "name": "totalSupply",
185
+ "type": "uint256"
186
+ },
187
+ {
188
+ "internalType": "uint256",
189
+ "name": "maxTotalSupply",
190
+ "type": "uint256"
191
+ }
192
+ ],
193
+ "name": "ERC721V1NoTokenAvailable",
194
+ "type": "error"
195
+ },
196
+ {
197
+ "inputs": [
198
+ {
199
+ "internalType": "address",
200
+ "name": "recipient",
201
+ "type": "address"
202
+ }
203
+ ],
204
+ "name": "ERC721V1TokenAlreadyMinted",
205
+ "type": "error"
206
+ },
207
+ {
208
+ "inputs": [
209
+ {
210
+ "internalType": "address",
211
+ "name": "recipient",
212
+ "type": "address"
213
+ },
214
+ {
215
+ "internalType": "uint256",
216
+ "name": "value",
217
+ "type": "uint256"
218
+ }
219
+ ],
220
+ "name": "ERC721V1TransferFailed",
221
+ "type": "error"
222
+ },
223
+ {
224
+ "inputs": [],
225
+ "name": "ERC721V1TransferForbidden",
226
+ "type": "error"
227
+ },
228
+ {
229
+ "inputs": [],
230
+ "name": "ERC721V2InvalidBurnRegistry",
231
+ "type": "error"
232
+ },
233
+ {
234
+ "inputs": [],
235
+ "name": "InvalidInitialization",
236
+ "type": "error"
237
+ },
238
+ {
239
+ "inputs": [],
240
+ "name": "NotInitializing",
241
+ "type": "error"
242
+ },
243
+ {
244
+ "inputs": [
245
+ {
246
+ "internalType": "address",
247
+ "name": "owner",
248
+ "type": "address"
249
+ }
250
+ ],
251
+ "name": "OwnableInvalidOwner",
252
+ "type": "error"
253
+ },
254
+ {
255
+ "inputs": [
256
+ {
257
+ "internalType": "address",
258
+ "name": "account",
259
+ "type": "address"
260
+ }
261
+ ],
262
+ "name": "OwnableUnauthorizedAccount",
263
+ "type": "error"
264
+ },
265
+ {
266
+ "inputs": [],
267
+ "name": "ReentrancyGuardReentrantCall",
268
+ "type": "error"
269
+ },
270
+ {
271
+ "anonymous": false,
272
+ "inputs": [
273
+ {
274
+ "indexed": true,
275
+ "internalType": "address",
276
+ "name": "owner",
277
+ "type": "address"
278
+ },
279
+ {
280
+ "indexed": true,
281
+ "internalType": "address",
282
+ "name": "approved",
283
+ "type": "address"
284
+ },
285
+ {
286
+ "indexed": true,
287
+ "internalType": "uint256",
288
+ "name": "tokenId",
289
+ "type": "uint256"
290
+ }
291
+ ],
292
+ "name": "Approval",
293
+ "type": "event"
294
+ },
295
+ {
296
+ "anonymous": false,
297
+ "inputs": [
298
+ {
299
+ "indexed": true,
300
+ "internalType": "address",
301
+ "name": "owner",
302
+ "type": "address"
303
+ },
304
+ {
305
+ "indexed": true,
306
+ "internalType": "address",
307
+ "name": "operator",
308
+ "type": "address"
309
+ },
310
+ {
311
+ "indexed": false,
312
+ "internalType": "bool",
313
+ "name": "approved",
314
+ "type": "bool"
315
+ }
316
+ ],
317
+ "name": "ApprovalForAll",
318
+ "type": "event"
319
+ },
320
+ {
321
+ "anonymous": false,
322
+ "inputs": [
323
+ {
324
+ "indexed": false,
325
+ "internalType": "uint256",
326
+ "name": "oldCosts",
327
+ "type": "uint256"
328
+ },
329
+ {
330
+ "indexed": false,
331
+ "internalType": "uint256",
332
+ "name": "newCosts",
333
+ "type": "uint256"
334
+ }
335
+ ],
336
+ "name": "CostsChanged",
337
+ "type": "event"
338
+ },
339
+ {
340
+ "anonymous": false,
341
+ "inputs": [],
342
+ "name": "ERC721V2BurnRegistryChanged",
343
+ "type": "event"
344
+ },
345
+ {
346
+ "anonymous": false,
347
+ "inputs": [
348
+ {
349
+ "indexed": false,
350
+ "internalType": "uint64",
351
+ "name": "version",
352
+ "type": "uint64"
353
+ }
354
+ ],
355
+ "name": "Initialized",
356
+ "type": "event"
357
+ },
358
+ {
359
+ "anonymous": false,
360
+ "inputs": [
361
+ {
362
+ "indexed": true,
363
+ "internalType": "address",
364
+ "name": "recipient",
365
+ "type": "address"
366
+ },
367
+ {
368
+ "indexed": false,
369
+ "internalType": "uint256",
370
+ "name": "tokenId",
371
+ "type": "uint256"
372
+ },
373
+ {
374
+ "indexed": false,
375
+ "internalType": "uint256",
376
+ "name": "costs",
377
+ "type": "uint256"
378
+ },
379
+ {
380
+ "indexed": false,
381
+ "internalType": "string",
382
+ "name": "referral",
383
+ "type": "string"
384
+ }
385
+ ],
386
+ "name": "Minted",
387
+ "type": "event"
388
+ },
389
+ {
390
+ "anonymous": false,
391
+ "inputs": [
392
+ {
393
+ "indexed": true,
394
+ "internalType": "address",
395
+ "name": "previousOwner",
396
+ "type": "address"
397
+ },
398
+ {
399
+ "indexed": true,
400
+ "internalType": "address",
401
+ "name": "newOwner",
402
+ "type": "address"
403
+ }
404
+ ],
405
+ "name": "OwnershipTransferred",
406
+ "type": "event"
407
+ },
408
+ {
409
+ "anonymous": false,
410
+ "inputs": [
411
+ {
412
+ "indexed": true,
413
+ "internalType": "address",
414
+ "name": "from",
415
+ "type": "address"
416
+ },
417
+ {
418
+ "indexed": true,
419
+ "internalType": "address",
420
+ "name": "to",
421
+ "type": "address"
422
+ },
423
+ {
424
+ "indexed": true,
425
+ "internalType": "uint256",
426
+ "name": "tokenId",
427
+ "type": "uint256"
428
+ }
429
+ ],
430
+ "name": "Transfer",
431
+ "type": "event"
432
+ },
433
+ {
434
+ "inputs": [
435
+ {
436
+ "internalType": "address",
437
+ "name": "to",
438
+ "type": "address"
439
+ },
440
+ {
441
+ "internalType": "uint256",
442
+ "name": "tokenId",
443
+ "type": "uint256"
444
+ }
445
+ ],
446
+ "name": "approve",
447
+ "outputs": [],
448
+ "stateMutability": "nonpayable",
449
+ "type": "function"
450
+ },
451
+ {
452
+ "inputs": [
453
+ {
454
+ "internalType": "address",
455
+ "name": "owner",
456
+ "type": "address"
457
+ }
458
+ ],
459
+ "name": "balanceOf",
460
+ "outputs": [
461
+ {
462
+ "internalType": "uint256",
463
+ "name": "",
464
+ "type": "uint256"
465
+ }
466
+ ],
467
+ "stateMutability": "view",
468
+ "type": "function"
469
+ },
470
+ {
471
+ "inputs": [
472
+ {
473
+ "internalType": "uint256",
474
+ "name": "tokenId",
475
+ "type": "uint256"
476
+ }
477
+ ],
478
+ "name": "burn",
479
+ "outputs": [],
480
+ "stateMutability": "nonpayable",
481
+ "type": "function"
482
+ },
483
+ {
484
+ "inputs": [],
485
+ "name": "burnRegistry",
486
+ "outputs": [
487
+ {
488
+ "internalType": "address",
489
+ "name": "",
490
+ "type": "address"
491
+ }
492
+ ],
493
+ "stateMutability": "view",
494
+ "type": "function"
495
+ },
496
+ {
497
+ "inputs": [
498
+ {
499
+ "internalType": "address payable",
500
+ "name": "__burnRegistry",
501
+ "type": "address"
502
+ }
503
+ ],
504
+ "name": "changeBurnRegistry",
505
+ "outputs": [],
506
+ "stateMutability": "nonpayable",
507
+ "type": "function"
508
+ },
509
+ {
510
+ "inputs": [
511
+ {
512
+ "internalType": "uint256",
513
+ "name": "newCostsUSD",
514
+ "type": "uint256"
515
+ }
516
+ ],
517
+ "name": "changeCosts",
518
+ "outputs": [],
519
+ "stateMutability": "nonpayable",
520
+ "type": "function"
521
+ },
522
+ {
523
+ "inputs": [],
524
+ "name": "costsETH",
525
+ "outputs": [
526
+ {
527
+ "internalType": "uint256",
528
+ "name": "",
529
+ "type": "uint256"
530
+ }
531
+ ],
532
+ "stateMutability": "view",
533
+ "type": "function"
534
+ },
535
+ {
536
+ "inputs": [],
537
+ "name": "costsUSD",
538
+ "outputs": [
539
+ {
540
+ "internalType": "uint256",
541
+ "name": "",
542
+ "type": "uint256"
543
+ }
544
+ ],
545
+ "stateMutability": "view",
546
+ "type": "function"
547
+ },
548
+ {
549
+ "inputs": [
550
+ {
551
+ "internalType": "uint256",
552
+ "name": "tokenId",
553
+ "type": "uint256"
554
+ }
555
+ ],
556
+ "name": "getApproved",
557
+ "outputs": [
558
+ {
559
+ "internalType": "address",
560
+ "name": "",
561
+ "type": "address"
562
+ }
563
+ ],
564
+ "stateMutability": "view",
565
+ "type": "function"
566
+ },
567
+ {
568
+ "inputs": [],
569
+ "name": "id",
570
+ "outputs": [
571
+ {
572
+ "internalType": "bytes32",
573
+ "name": "",
574
+ "type": "bytes32"
575
+ }
576
+ ],
577
+ "stateMutability": "view",
578
+ "type": "function"
579
+ },
580
+ {
581
+ "inputs": [
582
+ {
583
+ "internalType": "bytes32",
584
+ "name": "__id",
585
+ "type": "bytes32"
586
+ },
587
+ {
588
+ "internalType": "uint256",
589
+ "name": "__maxTotalSupply",
590
+ "type": "uint256"
591
+ },
592
+ {
593
+ "internalType": "string",
594
+ "name": "name",
595
+ "type": "string"
596
+ },
597
+ {
598
+ "internalType": "string",
599
+ "name": "symbol",
600
+ "type": "string"
601
+ },
602
+ {
603
+ "internalType": "string",
604
+ "name": "uri",
605
+ "type": "string"
606
+ },
607
+ {
608
+ "internalType": "uint256",
609
+ "name": "__costsUSD",
610
+ "type": "uint256"
611
+ },
612
+ {
613
+ "internalType": "address",
614
+ "name": "__signer",
615
+ "type": "address"
616
+ },
617
+ {
618
+ "internalType": "address",
619
+ "name": "__priceFeed",
620
+ "type": "address"
621
+ },
622
+ {
623
+ "internalType": "address",
624
+ "name": "__vault",
625
+ "type": "address"
626
+ }
627
+ ],
628
+ "name": "initialize",
629
+ "outputs": [],
630
+ "stateMutability": "nonpayable",
631
+ "type": "function"
632
+ },
633
+ {
634
+ "inputs": [
635
+ {
636
+ "internalType": "address",
637
+ "name": "owner",
638
+ "type": "address"
639
+ },
640
+ {
641
+ "internalType": "address",
642
+ "name": "operator",
643
+ "type": "address"
644
+ }
645
+ ],
646
+ "name": "isApprovedForAll",
647
+ "outputs": [
648
+ {
649
+ "internalType": "bool",
650
+ "name": "",
651
+ "type": "bool"
652
+ }
653
+ ],
654
+ "stateMutability": "view",
655
+ "type": "function"
656
+ },
657
+ {
658
+ "inputs": [],
659
+ "name": "maxTotalSupply",
660
+ "outputs": [
661
+ {
662
+ "internalType": "uint256",
663
+ "name": "",
664
+ "type": "uint256"
665
+ }
666
+ ],
667
+ "stateMutability": "view",
668
+ "type": "function"
669
+ },
670
+ {
671
+ "inputs": [
672
+ {
673
+ "internalType": "address payable",
674
+ "name": "__burnRegistry",
675
+ "type": "address"
676
+ }
677
+ ],
678
+ "name": "migrateToV2",
679
+ "outputs": [],
680
+ "stateMutability": "nonpayable",
681
+ "type": "function"
682
+ },
683
+ {
684
+ "inputs": [
685
+ {
686
+ "components": [
687
+ {
688
+ "internalType": "bytes32",
689
+ "name": "id",
690
+ "type": "bytes32"
691
+ },
692
+ {
693
+ "internalType": "address",
694
+ "name": "recipient",
695
+ "type": "address"
696
+ },
697
+ {
698
+ "internalType": "string",
699
+ "name": "referral",
700
+ "type": "string"
701
+ },
702
+ {
703
+ "internalType": "bytes",
704
+ "name": "signature",
705
+ "type": "bytes"
706
+ }
707
+ ],
708
+ "internalType": "struct ERC721V1.MintPayload",
709
+ "name": "payload",
710
+ "type": "tuple"
711
+ }
712
+ ],
713
+ "name": "mint",
714
+ "outputs": [],
715
+ "stateMutability": "payable",
716
+ "type": "function"
717
+ },
718
+ {
719
+ "inputs": [],
720
+ "name": "name",
721
+ "outputs": [
722
+ {
723
+ "internalType": "string",
724
+ "name": "",
725
+ "type": "string"
726
+ }
727
+ ],
728
+ "stateMutability": "view",
729
+ "type": "function"
730
+ },
731
+ {
732
+ "inputs": [],
733
+ "name": "owner",
734
+ "outputs": [
735
+ {
736
+ "internalType": "address",
737
+ "name": "",
738
+ "type": "address"
739
+ }
740
+ ],
741
+ "stateMutability": "view",
742
+ "type": "function"
743
+ },
744
+ {
745
+ "inputs": [
746
+ {
747
+ "internalType": "uint256",
748
+ "name": "tokenId",
749
+ "type": "uint256"
750
+ }
751
+ ],
752
+ "name": "ownerOf",
753
+ "outputs": [
754
+ {
755
+ "internalType": "address",
756
+ "name": "",
757
+ "type": "address"
758
+ }
759
+ ],
760
+ "stateMutability": "view",
761
+ "type": "function"
762
+ },
763
+ {
764
+ "inputs": [],
765
+ "name": "priceFeed",
766
+ "outputs": [
767
+ {
768
+ "internalType": "address",
769
+ "name": "",
770
+ "type": "address"
771
+ }
772
+ ],
773
+ "stateMutability": "view",
774
+ "type": "function"
775
+ },
776
+ {
777
+ "inputs": [],
778
+ "name": "renounceOwnership",
779
+ "outputs": [],
780
+ "stateMutability": "nonpayable",
781
+ "type": "function"
782
+ },
783
+ {
784
+ "inputs": [
785
+ {
786
+ "internalType": "address",
787
+ "name": "from",
788
+ "type": "address"
789
+ },
790
+ {
791
+ "internalType": "address",
792
+ "name": "to",
793
+ "type": "address"
794
+ },
795
+ {
796
+ "internalType": "uint256",
797
+ "name": "tokenId",
798
+ "type": "uint256"
799
+ }
800
+ ],
801
+ "name": "safeTransferFrom",
802
+ "outputs": [],
803
+ "stateMutability": "nonpayable",
804
+ "type": "function"
805
+ },
806
+ {
807
+ "inputs": [
808
+ {
809
+ "internalType": "address",
810
+ "name": "from",
811
+ "type": "address"
812
+ },
813
+ {
814
+ "internalType": "address",
815
+ "name": "to",
816
+ "type": "address"
817
+ },
818
+ {
819
+ "internalType": "uint256",
820
+ "name": "tokenId",
821
+ "type": "uint256"
822
+ },
823
+ {
824
+ "internalType": "bytes",
825
+ "name": "data",
826
+ "type": "bytes"
827
+ }
828
+ ],
829
+ "name": "safeTransferFrom",
830
+ "outputs": [],
831
+ "stateMutability": "nonpayable",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [
836
+ {
837
+ "internalType": "address",
838
+ "name": "operator",
839
+ "type": "address"
840
+ },
841
+ {
842
+ "internalType": "bool",
843
+ "name": "approved",
844
+ "type": "bool"
845
+ }
846
+ ],
847
+ "name": "setApprovalForAll",
848
+ "outputs": [],
849
+ "stateMutability": "nonpayable",
850
+ "type": "function"
851
+ },
852
+ {
853
+ "inputs": [],
854
+ "name": "signer",
855
+ "outputs": [
856
+ {
857
+ "internalType": "address",
858
+ "name": "",
859
+ "type": "address"
860
+ }
861
+ ],
862
+ "stateMutability": "view",
863
+ "type": "function"
864
+ },
865
+ {
866
+ "inputs": [
867
+ {
868
+ "internalType": "bytes4",
869
+ "name": "interfaceId",
870
+ "type": "bytes4"
871
+ }
872
+ ],
873
+ "name": "supportsInterface",
874
+ "outputs": [
875
+ {
876
+ "internalType": "bool",
877
+ "name": "",
878
+ "type": "bool"
879
+ }
880
+ ],
881
+ "stateMutability": "view",
882
+ "type": "function"
883
+ },
884
+ {
885
+ "inputs": [],
886
+ "name": "symbol",
887
+ "outputs": [
888
+ {
889
+ "internalType": "string",
890
+ "name": "",
891
+ "type": "string"
892
+ }
893
+ ],
894
+ "stateMutability": "view",
895
+ "type": "function"
896
+ },
897
+ {
898
+ "inputs": [
899
+ {
900
+ "internalType": "uint256",
901
+ "name": "tokenId",
902
+ "type": "uint256"
903
+ }
904
+ ],
905
+ "name": "tokenURI",
906
+ "outputs": [
907
+ {
908
+ "internalType": "string",
909
+ "name": "",
910
+ "type": "string"
911
+ }
912
+ ],
913
+ "stateMutability": "view",
914
+ "type": "function"
915
+ },
916
+ {
917
+ "inputs": [],
918
+ "name": "totalSupply",
919
+ "outputs": [
920
+ {
921
+ "internalType": "uint256",
922
+ "name": "",
923
+ "type": "uint256"
924
+ }
925
+ ],
926
+ "stateMutability": "view",
927
+ "type": "function"
928
+ },
929
+ {
930
+ "inputs": [
931
+ {
932
+ "internalType": "address",
933
+ "name": "",
934
+ "type": "address"
935
+ },
936
+ {
937
+ "internalType": "address",
938
+ "name": "",
939
+ "type": "address"
940
+ },
941
+ {
942
+ "internalType": "uint256",
943
+ "name": "",
944
+ "type": "uint256"
945
+ }
946
+ ],
947
+ "name": "transferFrom",
948
+ "outputs": [],
949
+ "stateMutability": "nonpayable",
950
+ "type": "function"
951
+ },
952
+ {
953
+ "inputs": [
954
+ {
955
+ "internalType": "address",
956
+ "name": "newOwner",
957
+ "type": "address"
958
+ }
959
+ ],
960
+ "name": "transferOwnership",
961
+ "outputs": [],
962
+ "stateMutability": "nonpayable",
963
+ "type": "function"
964
+ },
965
+ {
966
+ "inputs": [],
967
+ "name": "vault",
968
+ "outputs": [
969
+ {
970
+ "internalType": "address",
971
+ "name": "",
972
+ "type": "address"
973
+ }
974
+ ],
975
+ "stateMutability": "view",
976
+ "type": "function"
977
+ }
978
+ ]
979
+ }