@evedex/networks 3.4.3-dev.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,916 @@
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": "InvalidInitialization",
231
+ "type": "error"
232
+ },
233
+ {
234
+ "inputs": [],
235
+ "name": "NotInitializing",
236
+ "type": "error"
237
+ },
238
+ {
239
+ "inputs": [
240
+ {
241
+ "internalType": "address",
242
+ "name": "owner",
243
+ "type": "address"
244
+ }
245
+ ],
246
+ "name": "OwnableInvalidOwner",
247
+ "type": "error"
248
+ },
249
+ {
250
+ "inputs": [
251
+ {
252
+ "internalType": "address",
253
+ "name": "account",
254
+ "type": "address"
255
+ }
256
+ ],
257
+ "name": "OwnableUnauthorizedAccount",
258
+ "type": "error"
259
+ },
260
+ {
261
+ "inputs": [],
262
+ "name": "ReentrancyGuardReentrantCall",
263
+ "type": "error"
264
+ },
265
+ {
266
+ "anonymous": false,
267
+ "inputs": [
268
+ {
269
+ "indexed": true,
270
+ "internalType": "address",
271
+ "name": "owner",
272
+ "type": "address"
273
+ },
274
+ {
275
+ "indexed": true,
276
+ "internalType": "address",
277
+ "name": "approved",
278
+ "type": "address"
279
+ },
280
+ {
281
+ "indexed": true,
282
+ "internalType": "uint256",
283
+ "name": "tokenId",
284
+ "type": "uint256"
285
+ }
286
+ ],
287
+ "name": "Approval",
288
+ "type": "event"
289
+ },
290
+ {
291
+ "anonymous": false,
292
+ "inputs": [
293
+ {
294
+ "indexed": true,
295
+ "internalType": "address",
296
+ "name": "owner",
297
+ "type": "address"
298
+ },
299
+ {
300
+ "indexed": true,
301
+ "internalType": "address",
302
+ "name": "operator",
303
+ "type": "address"
304
+ },
305
+ {
306
+ "indexed": false,
307
+ "internalType": "bool",
308
+ "name": "approved",
309
+ "type": "bool"
310
+ }
311
+ ],
312
+ "name": "ApprovalForAll",
313
+ "type": "event"
314
+ },
315
+ {
316
+ "anonymous": false,
317
+ "inputs": [
318
+ {
319
+ "indexed": false,
320
+ "internalType": "uint256",
321
+ "name": "oldCosts",
322
+ "type": "uint256"
323
+ },
324
+ {
325
+ "indexed": false,
326
+ "internalType": "uint256",
327
+ "name": "newCosts",
328
+ "type": "uint256"
329
+ }
330
+ ],
331
+ "name": "CostsChanged",
332
+ "type": "event"
333
+ },
334
+ {
335
+ "anonymous": false,
336
+ "inputs": [
337
+ {
338
+ "indexed": false,
339
+ "internalType": "uint64",
340
+ "name": "version",
341
+ "type": "uint64"
342
+ }
343
+ ],
344
+ "name": "Initialized",
345
+ "type": "event"
346
+ },
347
+ {
348
+ "anonymous": false,
349
+ "inputs": [
350
+ {
351
+ "indexed": true,
352
+ "internalType": "address",
353
+ "name": "recipient",
354
+ "type": "address"
355
+ },
356
+ {
357
+ "indexed": false,
358
+ "internalType": "uint256",
359
+ "name": "tokenId",
360
+ "type": "uint256"
361
+ },
362
+ {
363
+ "indexed": false,
364
+ "internalType": "uint256",
365
+ "name": "costs",
366
+ "type": "uint256"
367
+ },
368
+ {
369
+ "indexed": false,
370
+ "internalType": "string",
371
+ "name": "referral",
372
+ "type": "string"
373
+ }
374
+ ],
375
+ "name": "Minted",
376
+ "type": "event"
377
+ },
378
+ {
379
+ "anonymous": false,
380
+ "inputs": [
381
+ {
382
+ "indexed": true,
383
+ "internalType": "address",
384
+ "name": "previousOwner",
385
+ "type": "address"
386
+ },
387
+ {
388
+ "indexed": true,
389
+ "internalType": "address",
390
+ "name": "newOwner",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "name": "OwnershipTransferred",
395
+ "type": "event"
396
+ },
397
+ {
398
+ "anonymous": false,
399
+ "inputs": [
400
+ {
401
+ "indexed": true,
402
+ "internalType": "address",
403
+ "name": "from",
404
+ "type": "address"
405
+ },
406
+ {
407
+ "indexed": true,
408
+ "internalType": "address",
409
+ "name": "to",
410
+ "type": "address"
411
+ },
412
+ {
413
+ "indexed": true,
414
+ "internalType": "uint256",
415
+ "name": "tokenId",
416
+ "type": "uint256"
417
+ }
418
+ ],
419
+ "name": "Transfer",
420
+ "type": "event"
421
+ },
422
+ {
423
+ "inputs": [
424
+ {
425
+ "internalType": "address",
426
+ "name": "to",
427
+ "type": "address"
428
+ },
429
+ {
430
+ "internalType": "uint256",
431
+ "name": "tokenId",
432
+ "type": "uint256"
433
+ }
434
+ ],
435
+ "name": "approve",
436
+ "outputs": [],
437
+ "stateMutability": "nonpayable",
438
+ "type": "function"
439
+ },
440
+ {
441
+ "inputs": [
442
+ {
443
+ "internalType": "address",
444
+ "name": "owner",
445
+ "type": "address"
446
+ }
447
+ ],
448
+ "name": "balanceOf",
449
+ "outputs": [
450
+ {
451
+ "internalType": "uint256",
452
+ "name": "",
453
+ "type": "uint256"
454
+ }
455
+ ],
456
+ "stateMutability": "view",
457
+ "type": "function"
458
+ },
459
+ {
460
+ "inputs": [
461
+ {
462
+ "internalType": "uint256",
463
+ "name": "newCostsUSD",
464
+ "type": "uint256"
465
+ }
466
+ ],
467
+ "name": "changeCosts",
468
+ "outputs": [],
469
+ "stateMutability": "nonpayable",
470
+ "type": "function"
471
+ },
472
+ {
473
+ "inputs": [],
474
+ "name": "costsETH",
475
+ "outputs": [
476
+ {
477
+ "internalType": "uint256",
478
+ "name": "",
479
+ "type": "uint256"
480
+ }
481
+ ],
482
+ "stateMutability": "view",
483
+ "type": "function"
484
+ },
485
+ {
486
+ "inputs": [],
487
+ "name": "costsUSD",
488
+ "outputs": [
489
+ {
490
+ "internalType": "uint256",
491
+ "name": "",
492
+ "type": "uint256"
493
+ }
494
+ ],
495
+ "stateMutability": "view",
496
+ "type": "function"
497
+ },
498
+ {
499
+ "inputs": [
500
+ {
501
+ "internalType": "uint256",
502
+ "name": "tokenId",
503
+ "type": "uint256"
504
+ }
505
+ ],
506
+ "name": "getApproved",
507
+ "outputs": [
508
+ {
509
+ "internalType": "address",
510
+ "name": "",
511
+ "type": "address"
512
+ }
513
+ ],
514
+ "stateMutability": "view",
515
+ "type": "function"
516
+ },
517
+ {
518
+ "inputs": [],
519
+ "name": "id",
520
+ "outputs": [
521
+ {
522
+ "internalType": "bytes32",
523
+ "name": "",
524
+ "type": "bytes32"
525
+ }
526
+ ],
527
+ "stateMutability": "view",
528
+ "type": "function"
529
+ },
530
+ {
531
+ "inputs": [
532
+ {
533
+ "internalType": "bytes32",
534
+ "name": "__id",
535
+ "type": "bytes32"
536
+ },
537
+ {
538
+ "internalType": "uint256",
539
+ "name": "__maxTotalSupply",
540
+ "type": "uint256"
541
+ },
542
+ {
543
+ "internalType": "string",
544
+ "name": "name",
545
+ "type": "string"
546
+ },
547
+ {
548
+ "internalType": "string",
549
+ "name": "symbol",
550
+ "type": "string"
551
+ },
552
+ {
553
+ "internalType": "string",
554
+ "name": "uri",
555
+ "type": "string"
556
+ },
557
+ {
558
+ "internalType": "uint256",
559
+ "name": "__costsUSD",
560
+ "type": "uint256"
561
+ },
562
+ {
563
+ "internalType": "address",
564
+ "name": "__signer",
565
+ "type": "address"
566
+ },
567
+ {
568
+ "internalType": "address",
569
+ "name": "__priceFeed",
570
+ "type": "address"
571
+ },
572
+ {
573
+ "internalType": "address",
574
+ "name": "__vault",
575
+ "type": "address"
576
+ }
577
+ ],
578
+ "name": "initialize",
579
+ "outputs": [],
580
+ "stateMutability": "nonpayable",
581
+ "type": "function"
582
+ },
583
+ {
584
+ "inputs": [
585
+ {
586
+ "internalType": "address",
587
+ "name": "owner",
588
+ "type": "address"
589
+ },
590
+ {
591
+ "internalType": "address",
592
+ "name": "operator",
593
+ "type": "address"
594
+ }
595
+ ],
596
+ "name": "isApprovedForAll",
597
+ "outputs": [
598
+ {
599
+ "internalType": "bool",
600
+ "name": "",
601
+ "type": "bool"
602
+ }
603
+ ],
604
+ "stateMutability": "view",
605
+ "type": "function"
606
+ },
607
+ {
608
+ "inputs": [],
609
+ "name": "maxTotalSupply",
610
+ "outputs": [
611
+ {
612
+ "internalType": "uint256",
613
+ "name": "",
614
+ "type": "uint256"
615
+ }
616
+ ],
617
+ "stateMutability": "view",
618
+ "type": "function"
619
+ },
620
+ {
621
+ "inputs": [
622
+ {
623
+ "components": [
624
+ {
625
+ "internalType": "bytes32",
626
+ "name": "id",
627
+ "type": "bytes32"
628
+ },
629
+ {
630
+ "internalType": "address",
631
+ "name": "recipient",
632
+ "type": "address"
633
+ },
634
+ {
635
+ "internalType": "string",
636
+ "name": "referral",
637
+ "type": "string"
638
+ },
639
+ {
640
+ "internalType": "bytes",
641
+ "name": "signature",
642
+ "type": "bytes"
643
+ }
644
+ ],
645
+ "internalType": "struct ERC721V1.MintPayload",
646
+ "name": "payload",
647
+ "type": "tuple"
648
+ }
649
+ ],
650
+ "name": "mint",
651
+ "outputs": [],
652
+ "stateMutability": "payable",
653
+ "type": "function"
654
+ },
655
+ {
656
+ "inputs": [],
657
+ "name": "name",
658
+ "outputs": [
659
+ {
660
+ "internalType": "string",
661
+ "name": "",
662
+ "type": "string"
663
+ }
664
+ ],
665
+ "stateMutability": "view",
666
+ "type": "function"
667
+ },
668
+ {
669
+ "inputs": [],
670
+ "name": "owner",
671
+ "outputs": [
672
+ {
673
+ "internalType": "address",
674
+ "name": "",
675
+ "type": "address"
676
+ }
677
+ ],
678
+ "stateMutability": "view",
679
+ "type": "function"
680
+ },
681
+ {
682
+ "inputs": [
683
+ {
684
+ "internalType": "uint256",
685
+ "name": "tokenId",
686
+ "type": "uint256"
687
+ }
688
+ ],
689
+ "name": "ownerOf",
690
+ "outputs": [
691
+ {
692
+ "internalType": "address",
693
+ "name": "",
694
+ "type": "address"
695
+ }
696
+ ],
697
+ "stateMutability": "view",
698
+ "type": "function"
699
+ },
700
+ {
701
+ "inputs": [],
702
+ "name": "priceFeed",
703
+ "outputs": [
704
+ {
705
+ "internalType": "address",
706
+ "name": "",
707
+ "type": "address"
708
+ }
709
+ ],
710
+ "stateMutability": "view",
711
+ "type": "function"
712
+ },
713
+ {
714
+ "inputs": [],
715
+ "name": "renounceOwnership",
716
+ "outputs": [],
717
+ "stateMutability": "nonpayable",
718
+ "type": "function"
719
+ },
720
+ {
721
+ "inputs": [
722
+ {
723
+ "internalType": "address",
724
+ "name": "from",
725
+ "type": "address"
726
+ },
727
+ {
728
+ "internalType": "address",
729
+ "name": "to",
730
+ "type": "address"
731
+ },
732
+ {
733
+ "internalType": "uint256",
734
+ "name": "tokenId",
735
+ "type": "uint256"
736
+ }
737
+ ],
738
+ "name": "safeTransferFrom",
739
+ "outputs": [],
740
+ "stateMutability": "nonpayable",
741
+ "type": "function"
742
+ },
743
+ {
744
+ "inputs": [
745
+ {
746
+ "internalType": "address",
747
+ "name": "from",
748
+ "type": "address"
749
+ },
750
+ {
751
+ "internalType": "address",
752
+ "name": "to",
753
+ "type": "address"
754
+ },
755
+ {
756
+ "internalType": "uint256",
757
+ "name": "tokenId",
758
+ "type": "uint256"
759
+ },
760
+ {
761
+ "internalType": "bytes",
762
+ "name": "data",
763
+ "type": "bytes"
764
+ }
765
+ ],
766
+ "name": "safeTransferFrom",
767
+ "outputs": [],
768
+ "stateMutability": "nonpayable",
769
+ "type": "function"
770
+ },
771
+ {
772
+ "inputs": [
773
+ {
774
+ "internalType": "address",
775
+ "name": "operator",
776
+ "type": "address"
777
+ },
778
+ {
779
+ "internalType": "bool",
780
+ "name": "approved",
781
+ "type": "bool"
782
+ }
783
+ ],
784
+ "name": "setApprovalForAll",
785
+ "outputs": [],
786
+ "stateMutability": "nonpayable",
787
+ "type": "function"
788
+ },
789
+ {
790
+ "inputs": [],
791
+ "name": "signer",
792
+ "outputs": [
793
+ {
794
+ "internalType": "address",
795
+ "name": "",
796
+ "type": "address"
797
+ }
798
+ ],
799
+ "stateMutability": "view",
800
+ "type": "function"
801
+ },
802
+ {
803
+ "inputs": [
804
+ {
805
+ "internalType": "bytes4",
806
+ "name": "interfaceId",
807
+ "type": "bytes4"
808
+ }
809
+ ],
810
+ "name": "supportsInterface",
811
+ "outputs": [
812
+ {
813
+ "internalType": "bool",
814
+ "name": "",
815
+ "type": "bool"
816
+ }
817
+ ],
818
+ "stateMutability": "view",
819
+ "type": "function"
820
+ },
821
+ {
822
+ "inputs": [],
823
+ "name": "symbol",
824
+ "outputs": [
825
+ {
826
+ "internalType": "string",
827
+ "name": "",
828
+ "type": "string"
829
+ }
830
+ ],
831
+ "stateMutability": "view",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [
836
+ {
837
+ "internalType": "uint256",
838
+ "name": "tokenId",
839
+ "type": "uint256"
840
+ }
841
+ ],
842
+ "name": "tokenURI",
843
+ "outputs": [
844
+ {
845
+ "internalType": "string",
846
+ "name": "",
847
+ "type": "string"
848
+ }
849
+ ],
850
+ "stateMutability": "view",
851
+ "type": "function"
852
+ },
853
+ {
854
+ "inputs": [],
855
+ "name": "totalSupply",
856
+ "outputs": [
857
+ {
858
+ "internalType": "uint256",
859
+ "name": "",
860
+ "type": "uint256"
861
+ }
862
+ ],
863
+ "stateMutability": "view",
864
+ "type": "function"
865
+ },
866
+ {
867
+ "inputs": [
868
+ {
869
+ "internalType": "address",
870
+ "name": "",
871
+ "type": "address"
872
+ },
873
+ {
874
+ "internalType": "address",
875
+ "name": "",
876
+ "type": "address"
877
+ },
878
+ {
879
+ "internalType": "uint256",
880
+ "name": "",
881
+ "type": "uint256"
882
+ }
883
+ ],
884
+ "name": "transferFrom",
885
+ "outputs": [],
886
+ "stateMutability": "nonpayable",
887
+ "type": "function"
888
+ },
889
+ {
890
+ "inputs": [
891
+ {
892
+ "internalType": "address",
893
+ "name": "newOwner",
894
+ "type": "address"
895
+ }
896
+ ],
897
+ "name": "transferOwnership",
898
+ "outputs": [],
899
+ "stateMutability": "nonpayable",
900
+ "type": "function"
901
+ },
902
+ {
903
+ "inputs": [],
904
+ "name": "vault",
905
+ "outputs": [
906
+ {
907
+ "internalType": "address",
908
+ "name": "",
909
+ "type": "address"
910
+ }
911
+ ],
912
+ "stateMutability": "view",
913
+ "type": "function"
914
+ }
915
+ ]
916
+ }