@whisk/graphql 0.0.7 → 0.0.10

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.
@@ -15,15 +15,11 @@ type introspection_types = {
15
15
  }
16
16
  }
17
17
  adapterCap: { name: "adapterCap"; type: { kind: "OBJECT"; name: "AdapterCap"; ofType: null } }
18
- isEnabled: {
19
- name: "isEnabled"
20
- type: {
21
- kind: "NON_NULL"
22
- name: never
23
- ofType: { kind: "SCALAR"; name: "Boolean"; ofType: null }
24
- }
25
- }
26
18
  name: { name: "name"; type: { kind: "SCALAR"; name: "String"; ofType: null } }
19
+ riskAssessment: {
20
+ name: "riskAssessment"
21
+ type: { kind: "OBJECT"; name: "AdapterRiskAssessment"; ofType: null }
22
+ }
27
23
  }
28
24
  possibleTypes: "BoxVaultAdapter" | "MarketV1Adapter" | "UnknownAdapter" | "VaultV1Adapter"
29
25
  }
@@ -65,7 +61,47 @@ type introspection_types = {
65
61
  }
66
62
  }
67
63
  }
64
+ AdapterRiskAssessment: {
65
+ kind: "OBJECT"
66
+ name: "AdapterRiskAssessment"
67
+ fields: {
68
+ steakhouse: {
69
+ name: "steakhouse"
70
+ type: { kind: "OBJECT"; name: "SteakhouseRiskAssessment"; ofType: null }
71
+ }
72
+ }
73
+ }
68
74
  Address: unknown
75
+ AeraPendingAction: {
76
+ kind: "OBJECT"
77
+ name: "AeraPendingAction"
78
+ fields: {
79
+ amount: {
80
+ name: "amount"
81
+ type: {
82
+ kind: "NON_NULL"
83
+ name: never
84
+ ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
85
+ }
86
+ }
87
+ hash: {
88
+ name: "hash"
89
+ type: {
90
+ kind: "NON_NULL"
91
+ name: never
92
+ ofType: { kind: "SCALAR"; name: "Hex"; ofType: null }
93
+ }
94
+ }
95
+ token: {
96
+ name: "token"
97
+ type: {
98
+ kind: "NON_NULL"
99
+ name: never
100
+ ofType: { kind: "OBJECT"; name: "Token"; ofType: null }
101
+ }
102
+ }
103
+ }
104
+ }
69
105
  AeraVault: {
70
106
  kind: "OBJECT"
71
107
  name: "AeraVault"
@@ -255,6 +291,38 @@ type introspection_types = {
255
291
  ofType: { kind: "SCALAR"; name: "Boolean"; ofType: null }
256
292
  }
257
293
  }
294
+ pendingDeposits: {
295
+ name: "pendingDeposits"
296
+ type: {
297
+ kind: "NON_NULL"
298
+ name: never
299
+ ofType: {
300
+ kind: "LIST"
301
+ name: never
302
+ ofType: {
303
+ kind: "NON_NULL"
304
+ name: never
305
+ ofType: { kind: "OBJECT"; name: "AeraPendingAction"; ofType: null }
306
+ }
307
+ }
308
+ }
309
+ }
310
+ pendingWithdrawals: {
311
+ name: "pendingWithdrawals"
312
+ type: {
313
+ kind: "NON_NULL"
314
+ name: never
315
+ ofType: {
316
+ kind: "LIST"
317
+ name: never
318
+ ofType: {
319
+ kind: "NON_NULL"
320
+ name: never
321
+ ofType: { kind: "OBJECT"; name: "AeraPendingAction"; ofType: null }
322
+ }
323
+ }
324
+ }
325
+ }
258
326
  supplyAmount: {
259
327
  name: "supplyAmount"
260
328
  type: {
@@ -416,9 +484,191 @@ type introspection_types = {
416
484
  }
417
485
  }
418
486
  ApySide: { name: "ApySide"; enumValues: "Supply" | "Borrow" }
419
- ApyTimeframe: { name: "ApyTimeframe"; enumValues: "one_day" | "seven_days" | "thirty_days" }
487
+ ApyTimeframe: {
488
+ name: "ApyTimeframe"
489
+ enumValues: "six_hours" | "one_day" | "seven_days" | "thirty_days"
490
+ }
420
491
  BigInt: unknown
421
492
  Boolean: unknown
493
+ BoxFundingModule: {
494
+ kind: "INTERFACE"
495
+ name: "BoxFundingModule"
496
+ fields: {
497
+ collateralHoldings: {
498
+ name: "collateralHoldings"
499
+ type: {
500
+ kind: "NON_NULL"
501
+ name: never
502
+ ofType: {
503
+ kind: "LIST"
504
+ name: never
505
+ ofType: {
506
+ kind: "NON_NULL"
507
+ name: never
508
+ ofType: { kind: "OBJECT"; name: "TokenHolding"; ofType: null }
509
+ }
510
+ }
511
+ }
512
+ }
513
+ debtHoldings: {
514
+ name: "debtHoldings"
515
+ type: {
516
+ kind: "NON_NULL"
517
+ name: never
518
+ ofType: {
519
+ kind: "LIST"
520
+ name: never
521
+ ofType: {
522
+ kind: "NON_NULL"
523
+ name: never
524
+ ofType: { kind: "OBJECT"; name: "TokenHolding"; ofType: null }
525
+ }
526
+ }
527
+ }
528
+ }
529
+ fundingModuleAddress: {
530
+ name: "fundingModuleAddress"
531
+ type: {
532
+ kind: "NON_NULL"
533
+ name: never
534
+ ofType: { kind: "SCALAR"; name: "Address"; ofType: null }
535
+ }
536
+ }
537
+ nav: {
538
+ name: "nav"
539
+ type: {
540
+ kind: "NON_NULL"
541
+ name: never
542
+ ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
543
+ }
544
+ }
545
+ }
546
+ possibleTypes: "BoxMorphoFundingModule" | "BoxUnknownFundingModule"
547
+ }
548
+ BoxMorphoFundingModule: {
549
+ kind: "OBJECT"
550
+ name: "BoxMorphoFundingModule"
551
+ fields: {
552
+ collateralHoldings: {
553
+ name: "collateralHoldings"
554
+ type: {
555
+ kind: "NON_NULL"
556
+ name: never
557
+ ofType: {
558
+ kind: "LIST"
559
+ name: never
560
+ ofType: {
561
+ kind: "NON_NULL"
562
+ name: never
563
+ ofType: { kind: "OBJECT"; name: "TokenHolding"; ofType: null }
564
+ }
565
+ }
566
+ }
567
+ }
568
+ debtHoldings: {
569
+ name: "debtHoldings"
570
+ type: {
571
+ kind: "NON_NULL"
572
+ name: never
573
+ ofType: {
574
+ kind: "LIST"
575
+ name: never
576
+ ofType: {
577
+ kind: "NON_NULL"
578
+ name: never
579
+ ofType: { kind: "OBJECT"; name: "TokenHolding"; ofType: null }
580
+ }
581
+ }
582
+ }
583
+ }
584
+ fundingModuleAddress: {
585
+ name: "fundingModuleAddress"
586
+ type: {
587
+ kind: "NON_NULL"
588
+ name: never
589
+ ofType: { kind: "SCALAR"; name: "Address"; ofType: null }
590
+ }
591
+ }
592
+ nav: {
593
+ name: "nav"
594
+ type: {
595
+ kind: "NON_NULL"
596
+ name: never
597
+ ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
598
+ }
599
+ }
600
+ positions: {
601
+ name: "positions"
602
+ type: {
603
+ kind: "NON_NULL"
604
+ name: never
605
+ ofType: {
606
+ kind: "LIST"
607
+ name: never
608
+ ofType: {
609
+ kind: "NON_NULL"
610
+ name: never
611
+ ofType: { kind: "OBJECT"; name: "MorphoMarketPosition"; ofType: null }
612
+ }
613
+ }
614
+ }
615
+ }
616
+ }
617
+ }
618
+ BoxUnknownFundingModule: {
619
+ kind: "OBJECT"
620
+ name: "BoxUnknownFundingModule"
621
+ fields: {
622
+ collateralHoldings: {
623
+ name: "collateralHoldings"
624
+ type: {
625
+ kind: "NON_NULL"
626
+ name: never
627
+ ofType: {
628
+ kind: "LIST"
629
+ name: never
630
+ ofType: {
631
+ kind: "NON_NULL"
632
+ name: never
633
+ ofType: { kind: "OBJECT"; name: "TokenHolding"; ofType: null }
634
+ }
635
+ }
636
+ }
637
+ }
638
+ debtHoldings: {
639
+ name: "debtHoldings"
640
+ type: {
641
+ kind: "NON_NULL"
642
+ name: never
643
+ ofType: {
644
+ kind: "LIST"
645
+ name: never
646
+ ofType: {
647
+ kind: "NON_NULL"
648
+ name: never
649
+ ofType: { kind: "OBJECT"; name: "TokenHolding"; ofType: null }
650
+ }
651
+ }
652
+ }
653
+ }
654
+ fundingModuleAddress: {
655
+ name: "fundingModuleAddress"
656
+ type: {
657
+ kind: "NON_NULL"
658
+ name: never
659
+ ofType: { kind: "SCALAR"; name: "Address"; ofType: null }
660
+ }
661
+ }
662
+ nav: {
663
+ name: "nav"
664
+ type: {
665
+ kind: "NON_NULL"
666
+ name: never
667
+ ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
668
+ }
669
+ }
670
+ }
671
+ }
422
672
  BoxVault: {
423
673
  kind: "OBJECT"
424
674
  name: "BoxVault"
@@ -471,6 +721,22 @@ type introspection_types = {
471
721
  ofType: { kind: "SCALAR"; name: "Int"; ofType: null }
472
722
  }
473
723
  }
724
+ fundingModules: {
725
+ name: "fundingModules"
726
+ type: {
727
+ kind: "NON_NULL"
728
+ name: never
729
+ ofType: {
730
+ kind: "LIST"
731
+ name: never
732
+ ofType: {
733
+ kind: "NON_NULL"
734
+ name: never
735
+ ofType: { kind: "INTERFACE"; name: "BoxFundingModule"; ofType: null }
736
+ }
737
+ }
738
+ }
739
+ }
474
740
  name: {
475
741
  name: "name"
476
742
  type: {
@@ -479,6 +745,14 @@ type introspection_types = {
479
745
  ofType: { kind: "SCALAR"; name: "String"; ofType: null }
480
746
  }
481
747
  }
748
+ riskAssessment: {
749
+ name: "riskAssessment"
750
+ type: {
751
+ kind: "NON_NULL"
752
+ name: never
753
+ ofType: { kind: "OBJECT"; name: "BoxVaultRiskAssessment"; ofType: null }
754
+ }
755
+ }
482
756
  symbol: {
483
757
  name: "symbol"
484
758
  type: {
@@ -518,18 +792,24 @@ type introspection_types = {
518
792
  }
519
793
  }
520
794
  adapterCap: { name: "adapterCap"; type: { kind: "OBJECT"; name: "AdapterCap"; ofType: null } }
521
- isEnabled: {
522
- name: "isEnabled"
523
- type: {
524
- kind: "NON_NULL"
525
- name: never
526
- ofType: { kind: "SCALAR"; name: "Boolean"; ofType: null }
527
- }
528
- }
529
795
  name: { name: "name"; type: { kind: "SCALAR"; name: "String"; ofType: null } }
796
+ riskAssessment: {
797
+ name: "riskAssessment"
798
+ type: { kind: "OBJECT"; name: "AdapterRiskAssessment"; ofType: null }
799
+ }
530
800
  vault: { name: "vault"; type: { kind: "OBJECT"; name: "BoxVault"; ofType: null } }
531
801
  }
532
802
  }
803
+ BoxVaultRiskAssessment: {
804
+ kind: "OBJECT"
805
+ name: "BoxVaultRiskAssessment"
806
+ fields: {
807
+ steakhouse: {
808
+ name: "steakhouse"
809
+ type: { kind: "OBJECT"; name: "SteakhouseRiskAssessment"; ofType: null }
810
+ }
811
+ }
812
+ }
533
813
  Cap: {
534
814
  kind: "INTERFACE"
535
815
  name: "Cap"
@@ -1247,30 +1527,6 @@ type introspection_types = {
1247
1527
  }
1248
1528
  }
1249
1529
  adapterCap: { name: "adapterCap"; type: { kind: "OBJECT"; name: "AdapterCap"; ofType: null } }
1250
- collateralCaps: {
1251
- name: "collateralCaps"
1252
- type: {
1253
- kind: "NON_NULL"
1254
- name: never
1255
- ofType: {
1256
- kind: "LIST"
1257
- name: never
1258
- ofType: {
1259
- kind: "NON_NULL"
1260
- name: never
1261
- ofType: { kind: "OBJECT"; name: "CollateralExposureCap"; ofType: null }
1262
- }
1263
- }
1264
- }
1265
- }
1266
- isEnabled: {
1267
- name: "isEnabled"
1268
- type: {
1269
- kind: "NON_NULL"
1270
- name: never
1271
- ofType: { kind: "SCALAR"; name: "Boolean"; ofType: null }
1272
- }
1273
- }
1274
1530
  marketCaps: {
1275
1531
  name: "marketCaps"
1276
1532
  type: {
@@ -1288,6 +1544,10 @@ type introspection_types = {
1288
1544
  }
1289
1545
  }
1290
1546
  name: { name: "name"; type: { kind: "SCALAR"; name: "String"; ofType: null } }
1547
+ riskAssessment: {
1548
+ name: "riskAssessment"
1549
+ type: { kind: "OBJECT"; name: "AdapterRiskAssessment"; ofType: null }
1550
+ }
1291
1551
  }
1292
1552
  }
1293
1553
  MarketV1ExposureCap: {
@@ -1433,11 +1693,7 @@ type introspection_types = {
1433
1693
  },
1434
1694
  {
1435
1695
  name: "action"
1436
- type: {
1437
- kind: "NON_NULL"
1438
- name: never
1439
- ofType: { kind: "ENUM"; name: "MerklAction"; ofType: null }
1440
- }
1696
+ type: { kind: "ENUM"; name: "MerklAction"; ofType: null }
1441
1697
  defaultValue: null
1442
1698
  },
1443
1699
  ]
@@ -1535,6 +1791,14 @@ type introspection_types = {
1535
1791
  ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
1536
1792
  }
1537
1793
  }
1794
+ borrowApy6h: {
1795
+ name: "borrowApy6h"
1796
+ type: {
1797
+ kind: "NON_NULL"
1798
+ name: never
1799
+ ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
1800
+ }
1801
+ }
1538
1802
  borrowApy7d: {
1539
1803
  name: "borrowApy7d"
1540
1804
  type: {
@@ -1651,6 +1915,14 @@ type introspection_types = {
1651
1915
  ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
1652
1916
  }
1653
1917
  }
1918
+ riskAssessment: {
1919
+ name: "riskAssessment"
1920
+ type: {
1921
+ kind: "NON_NULL"
1922
+ name: never
1923
+ ofType: { kind: "OBJECT"; name: "MorphoMarketV1RiskAssessment"; ofType: null }
1924
+ }
1925
+ }
1654
1926
  supplyApy: {
1655
1927
  name: "supplyApy"
1656
1928
  type: {
@@ -1675,6 +1947,14 @@ type introspection_types = {
1675
1947
  ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
1676
1948
  }
1677
1949
  }
1950
+ supplyApy6h: {
1951
+ name: "supplyApy6h"
1952
+ type: {
1953
+ kind: "NON_NULL"
1954
+ name: never
1955
+ ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
1956
+ }
1957
+ }
1678
1958
  supplyApy7d: {
1679
1959
  name: "supplyApy7d"
1680
1960
  type: {
@@ -1841,6 +2121,14 @@ type introspection_types = {
1841
2121
  ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
1842
2122
  }
1843
2123
  }
2124
+ borrowApy6h: {
2125
+ name: "borrowApy6h"
2126
+ type: {
2127
+ kind: "NON_NULL"
2128
+ name: never
2129
+ ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
2130
+ }
2131
+ }
1844
2132
  borrowApy7d: {
1845
2133
  name: "borrowApy7d"
1846
2134
  type: {
@@ -1885,6 +2173,14 @@ type introspection_types = {
1885
2173
  ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
1886
2174
  }
1887
2175
  }
2176
+ supplyApy6h: {
2177
+ name: "supplyApy6h"
2178
+ type: {
2179
+ kind: "NON_NULL"
2180
+ name: never
2181
+ ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
2182
+ }
2183
+ }
1888
2184
  supplyApy7d: {
1889
2185
  name: "supplyApy7d"
1890
2186
  type: {
@@ -2125,6 +2421,16 @@ type introspection_types = {
2125
2421
  }
2126
2422
  }
2127
2423
  }
2424
+ MorphoMarketV1RiskAssessment: {
2425
+ kind: "OBJECT"
2426
+ name: "MorphoMarketV1RiskAssessment"
2427
+ fields: {
2428
+ steakhouse: {
2429
+ name: "steakhouse"
2430
+ type: { kind: "OBJECT"; name: "SteakhouseRiskAssessment"; ofType: null }
2431
+ }
2432
+ }
2433
+ }
2128
2434
  MorphoVault: {
2129
2435
  kind: "OBJECT"
2130
2436
  name: "MorphoVault"
@@ -2229,6 +2535,14 @@ type introspection_types = {
2229
2535
  ofType: { kind: "SCALAR"; name: "Float"; ofType: null }
2230
2536
  }
2231
2537
  }
2538
+ riskAssessment: {
2539
+ name: "riskAssessment"
2540
+ type: {
2541
+ kind: "NON_NULL"
2542
+ name: never
2543
+ ofType: { kind: "OBJECT"; name: "MorphoVaultV1RiskAssessment"; ofType: null }
2544
+ }
2545
+ }
2232
2546
  supplyApy: {
2233
2547
  name: "supplyApy"
2234
2548
  type: {
@@ -2423,6 +2737,14 @@ type introspection_types = {
2423
2737
  ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
2424
2738
  }
2425
2739
  }
2740
+ supplyApy6h: {
2741
+ name: "supplyApy6h"
2742
+ type: {
2743
+ kind: "NON_NULL"
2744
+ name: never
2745
+ ofType: { kind: "OBJECT"; name: "Apy"; ofType: null }
2746
+ }
2747
+ }
2426
2748
  supplyApy7d: {
2427
2749
  name: "supplyApy7d"
2428
2750
  type: {
@@ -2694,6 +3016,16 @@ type introspection_types = {
2694
3016
  }
2695
3017
  }
2696
3018
  }
3019
+ MorphoVaultV1RiskAssessment: {
3020
+ kind: "OBJECT"
3021
+ name: "MorphoVaultV1RiskAssessment"
3022
+ fields: {
3023
+ steakhouse: {
3024
+ name: "steakhouse"
3025
+ type: { kind: "OBJECT"; name: "SteakhouseRiskAssessment"; ofType: null }
3026
+ }
3027
+ }
3028
+ }
2697
3029
  MorphoVaultV2: {
2698
3030
  kind: "OBJECT"
2699
3031
  name: "MorphoVaultV2"
@@ -2742,6 +3074,18 @@ type introspection_types = {
2742
3074
  ofType: { kind: "OBJECT"; name: "Token"; ofType: null }
2743
3075
  }
2744
3076
  }
3077
+ caps: {
3078
+ name: "caps"
3079
+ type: {
3080
+ kind: "LIST"
3081
+ name: never
3082
+ ofType: {
3083
+ kind: "NON_NULL"
3084
+ name: never
3085
+ ofType: { kind: "INTERFACE"; name: "Cap"; ofType: null }
3086
+ }
3087
+ }
3088
+ }
2745
3089
  chain: {
2746
3090
  name: "chain"
2747
3091
  type: {
@@ -2770,12 +3114,28 @@ type introspection_types = {
2770
3114
  name: "historical"
2771
3115
  type: { kind: "OBJECT"; name: "MorphoVaultHistorical"; ofType: null }
2772
3116
  }
2773
- liquidityAdapter: {
2774
- name: "liquidityAdapter"
3117
+ idleAssets: {
3118
+ name: "idleAssets"
3119
+ type: {
3120
+ kind: "NON_NULL"
3121
+ name: never
3122
+ ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
3123
+ }
3124
+ }
3125
+ liquidityAdapterAddress: {
3126
+ name: "liquidityAdapterAddress"
3127
+ type: {
3128
+ kind: "NON_NULL"
3129
+ name: never
3130
+ ofType: { kind: "SCALAR"; name: "Address"; ofType: null }
3131
+ }
3132
+ }
3133
+ liquidityAssets: {
3134
+ name: "liquidityAssets"
2775
3135
  type: {
2776
3136
  kind: "NON_NULL"
2777
3137
  name: never
2778
- ofType: { kind: "INTERFACE"; name: "Adapter"; ofType: null }
3138
+ ofType: { kind: "OBJECT"; name: "TokenAmount"; ofType: null }
2779
3139
  }
2780
3140
  }
2781
3141
  managementFee: {
@@ -2846,6 +3206,14 @@ type introspection_types = {
2846
3206
  ofType: { kind: "SCALAR"; name: "Address"; ofType: null }
2847
3207
  }
2848
3208
  }
3209
+ riskAssessment: {
3210
+ name: "riskAssessment"
3211
+ type: {
3212
+ kind: "NON_NULL"
3213
+ name: never
3214
+ ofType: { kind: "OBJECT"; name: "MorphoVaultV2RiskAssessment"; ofType: null }
3215
+ }
3216
+ }
2849
3217
  sendAssetsGateAddress: {
2850
3218
  name: "sendAssetsGateAddress"
2851
3219
  type: {
@@ -2900,6 +3268,16 @@ type introspection_types = {
2900
3268
  }
2901
3269
  }
2902
3270
  }
3271
+ MorphoVaultV2RiskAssessment: {
3272
+ kind: "OBJECT"
3273
+ name: "MorphoVaultV2RiskAssessment"
3274
+ fields: {
3275
+ steakhouse: {
3276
+ name: "steakhouse"
3277
+ type: { kind: "OBJECT"; name: "SteakhouseRiskAssessment"; ofType: null }
3278
+ }
3279
+ }
3280
+ }
2903
3281
  OnchainAmount: {
2904
3282
  kind: "OBJECT"
2905
3283
  name: "OnchainAmount"
@@ -3145,6 +3523,28 @@ type introspection_types = {
3145
3523
  }
3146
3524
  }
3147
3525
  }
3526
+ SteakhouseRiskAssessment: {
3527
+ kind: "OBJECT"
3528
+ name: "SteakhouseRiskAssessment"
3529
+ fields: {
3530
+ rating: {
3531
+ name: "rating"
3532
+ type: {
3533
+ kind: "NON_NULL"
3534
+ name: never
3535
+ ofType: { kind: "SCALAR"; name: "String"; ofType: null }
3536
+ }
3537
+ }
3538
+ score: {
3539
+ name: "score"
3540
+ type: {
3541
+ kind: "NON_NULL"
3542
+ name: never
3543
+ ofType: { kind: "SCALAR"; name: "Float"; ofType: null }
3544
+ }
3545
+ }
3546
+ }
3547
+ }
3148
3548
  String: unknown
3149
3549
  Token: {
3150
3550
  kind: "OBJECT"
@@ -3193,6 +3593,14 @@ type introspection_types = {
3193
3593
  }
3194
3594
  }
3195
3595
  priceUsd: { name: "priceUsd"; type: { kind: "SCALAR"; name: "Float"; ofType: null } }
3596
+ riskAssessment: {
3597
+ name: "riskAssessment"
3598
+ type: {
3599
+ kind: "NON_NULL"
3600
+ name: never
3601
+ ofType: { kind: "OBJECT"; name: "TokenRiskAssessment"; ofType: null }
3602
+ }
3603
+ }
3196
3604
  symbol: {
3197
3605
  name: "symbol"
3198
3606
  type: {
@@ -3380,6 +3788,16 @@ type introspection_types = {
3380
3788
  },
3381
3789
  ]
3382
3790
  }
3791
+ TokenRiskAssessment: {
3792
+ kind: "OBJECT"
3793
+ name: "TokenRiskAssessment"
3794
+ fields: {
3795
+ steakhouse: {
3796
+ name: "steakhouse"
3797
+ type: { kind: "OBJECT"; name: "SteakhouseRiskAssessment"; ofType: null }
3798
+ }
3799
+ }
3800
+ }
3383
3801
  URL: unknown
3384
3802
  UnknownAdapter: {
3385
3803
  kind: "OBJECT"
@@ -3394,15 +3812,11 @@ type introspection_types = {
3394
3812
  }
3395
3813
  }
3396
3814
  adapterCap: { name: "adapterCap"; type: { kind: "OBJECT"; name: "AdapterCap"; ofType: null } }
3397
- isEnabled: {
3398
- name: "isEnabled"
3399
- type: {
3400
- kind: "NON_NULL"
3401
- name: never
3402
- ofType: { kind: "SCALAR"; name: "Boolean"; ofType: null }
3403
- }
3404
- }
3405
3815
  name: { name: "name"; type: { kind: "SCALAR"; name: "String"; ofType: null } }
3816
+ riskAssessment: {
3817
+ name: "riskAssessment"
3818
+ type: { kind: "OBJECT"; name: "AdapterRiskAssessment"; ofType: null }
3819
+ }
3406
3820
  }
3407
3821
  }
3408
3822
  UnknownCap: {
@@ -3587,15 +4001,11 @@ type introspection_types = {
3587
4001
  }
3588
4002
  }
3589
4003
  adapterCap: { name: "adapterCap"; type: { kind: "OBJECT"; name: "AdapterCap"; ofType: null } }
3590
- isEnabled: {
3591
- name: "isEnabled"
3592
- type: {
3593
- kind: "NON_NULL"
3594
- name: never
3595
- ofType: { kind: "SCALAR"; name: "Boolean"; ofType: null }
3596
- }
3597
- }
3598
4004
  name: { name: "name"; type: { kind: "SCALAR"; name: "String"; ofType: null } }
4005
+ riskAssessment: {
4006
+ name: "riskAssessment"
4007
+ type: { kind: "OBJECT"; name: "AdapterRiskAssessment"; ofType: null }
4008
+ }
3599
4009
  vault: { name: "vault"; type: { kind: "OBJECT"; name: "MorphoVault"; ofType: null } }
3600
4010
  }
3601
4011
  }