@berachain/graphql 0.2.4-beta.5 → 0.2.4-beta.6
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.
- package/dist/bend/whisk.codegen.cjs +271 -18
- package/dist/bend/whisk.codegen.d.cts +541 -2
- package/dist/bend/whisk.codegen.d.ts +541 -2
- package/dist/bend/whisk.codegen.mjs +268 -15
- package/dist/honey/honey.codegen.cjs +26 -13
- package/dist/honey/honey.codegen.d.cts +21 -13
- package/dist/honey/honey.codegen.d.ts +21 -13
- package/dist/honey/honey.codegen.mjs +26 -13
- package/package.json +1 -1
|
@@ -1371,6 +1371,42 @@ type VaultSummaryFragmentFragment = {
|
|
|
1371
1371
|
};
|
|
1372
1372
|
}>;
|
|
1373
1373
|
};
|
|
1374
|
+
supplyApy1d: {
|
|
1375
|
+
__typename?: 'Apy';
|
|
1376
|
+
base: number;
|
|
1377
|
+
total: number;
|
|
1378
|
+
fee: number;
|
|
1379
|
+
rewards: Array<{
|
|
1380
|
+
__typename?: 'Reward';
|
|
1381
|
+
apr: number;
|
|
1382
|
+
asset: {
|
|
1383
|
+
__typename?: 'Token';
|
|
1384
|
+
address: `0x${string}`;
|
|
1385
|
+
symbol: string;
|
|
1386
|
+
decimals: number;
|
|
1387
|
+
icon: string | null;
|
|
1388
|
+
category: TokenCategory | null;
|
|
1389
|
+
};
|
|
1390
|
+
}>;
|
|
1391
|
+
};
|
|
1392
|
+
supplyApy7d: {
|
|
1393
|
+
__typename?: 'Apy';
|
|
1394
|
+
base: number;
|
|
1395
|
+
total: number;
|
|
1396
|
+
fee: number;
|
|
1397
|
+
rewards: Array<{
|
|
1398
|
+
__typename?: 'Reward';
|
|
1399
|
+
apr: number;
|
|
1400
|
+
asset: {
|
|
1401
|
+
__typename?: 'Token';
|
|
1402
|
+
address: `0x${string}`;
|
|
1403
|
+
symbol: string;
|
|
1404
|
+
decimals: number;
|
|
1405
|
+
icon: string | null;
|
|
1406
|
+
category: TokenCategory | null;
|
|
1407
|
+
};
|
|
1408
|
+
}>;
|
|
1409
|
+
};
|
|
1374
1410
|
marketAllocations: Array<{
|
|
1375
1411
|
__typename?: 'MorphoVaultMarketAllocation';
|
|
1376
1412
|
vaultSupplyShare: number;
|
|
@@ -1489,6 +1525,42 @@ type MarketSummaryFragmentFragment = {
|
|
|
1489
1525
|
};
|
|
1490
1526
|
}>;
|
|
1491
1527
|
};
|
|
1528
|
+
borrowApy1d: {
|
|
1529
|
+
__typename?: 'Apy';
|
|
1530
|
+
base: number;
|
|
1531
|
+
total: number;
|
|
1532
|
+
fee: number;
|
|
1533
|
+
rewards: Array<{
|
|
1534
|
+
__typename?: 'Reward';
|
|
1535
|
+
apr: number;
|
|
1536
|
+
asset: {
|
|
1537
|
+
__typename?: 'Token';
|
|
1538
|
+
address: `0x${string}`;
|
|
1539
|
+
symbol: string;
|
|
1540
|
+
decimals: number;
|
|
1541
|
+
icon: string | null;
|
|
1542
|
+
category: TokenCategory | null;
|
|
1543
|
+
};
|
|
1544
|
+
}>;
|
|
1545
|
+
};
|
|
1546
|
+
borrowApy7d: {
|
|
1547
|
+
__typename?: 'Apy';
|
|
1548
|
+
base: number;
|
|
1549
|
+
total: number;
|
|
1550
|
+
fee: number;
|
|
1551
|
+
rewards: Array<{
|
|
1552
|
+
__typename?: 'Reward';
|
|
1553
|
+
apr: number;
|
|
1554
|
+
asset: {
|
|
1555
|
+
__typename?: 'Token';
|
|
1556
|
+
address: `0x${string}`;
|
|
1557
|
+
symbol: string;
|
|
1558
|
+
decimals: number;
|
|
1559
|
+
icon: string | null;
|
|
1560
|
+
category: TokenCategory | null;
|
|
1561
|
+
};
|
|
1562
|
+
}>;
|
|
1563
|
+
};
|
|
1492
1564
|
vaultAllocations: Array<{
|
|
1493
1565
|
__typename?: 'MorphoVaultMarketAllocation';
|
|
1494
1566
|
vault: {
|
|
@@ -1578,6 +1650,42 @@ type VaultSummariesQuery = {
|
|
|
1578
1650
|
};
|
|
1579
1651
|
}>;
|
|
1580
1652
|
};
|
|
1653
|
+
supplyApy1d: {
|
|
1654
|
+
__typename?: 'Apy';
|
|
1655
|
+
base: number;
|
|
1656
|
+
total: number;
|
|
1657
|
+
fee: number;
|
|
1658
|
+
rewards: Array<{
|
|
1659
|
+
__typename?: 'Reward';
|
|
1660
|
+
apr: number;
|
|
1661
|
+
asset: {
|
|
1662
|
+
__typename?: 'Token';
|
|
1663
|
+
address: `0x${string}`;
|
|
1664
|
+
symbol: string;
|
|
1665
|
+
decimals: number;
|
|
1666
|
+
icon: string | null;
|
|
1667
|
+
category: TokenCategory | null;
|
|
1668
|
+
};
|
|
1669
|
+
}>;
|
|
1670
|
+
};
|
|
1671
|
+
supplyApy7d: {
|
|
1672
|
+
__typename?: 'Apy';
|
|
1673
|
+
base: number;
|
|
1674
|
+
total: number;
|
|
1675
|
+
fee: number;
|
|
1676
|
+
rewards: Array<{
|
|
1677
|
+
__typename?: 'Reward';
|
|
1678
|
+
apr: number;
|
|
1679
|
+
asset: {
|
|
1680
|
+
__typename?: 'Token';
|
|
1681
|
+
address: `0x${string}`;
|
|
1682
|
+
symbol: string;
|
|
1683
|
+
decimals: number;
|
|
1684
|
+
icon: string | null;
|
|
1685
|
+
category: TokenCategory | null;
|
|
1686
|
+
};
|
|
1687
|
+
}>;
|
|
1688
|
+
};
|
|
1581
1689
|
marketAllocations: Array<{
|
|
1582
1690
|
__typename?: 'MorphoVaultMarketAllocation';
|
|
1583
1691
|
vaultSupplyShare: number;
|
|
@@ -1710,6 +1818,42 @@ type MarketSummariesQuery = {
|
|
|
1710
1818
|
};
|
|
1711
1819
|
}>;
|
|
1712
1820
|
};
|
|
1821
|
+
borrowApy1d: {
|
|
1822
|
+
__typename?: 'Apy';
|
|
1823
|
+
base: number;
|
|
1824
|
+
total: number;
|
|
1825
|
+
fee: number;
|
|
1826
|
+
rewards: Array<{
|
|
1827
|
+
__typename?: 'Reward';
|
|
1828
|
+
apr: number;
|
|
1829
|
+
asset: {
|
|
1830
|
+
__typename?: 'Token';
|
|
1831
|
+
address: `0x${string}`;
|
|
1832
|
+
symbol: string;
|
|
1833
|
+
decimals: number;
|
|
1834
|
+
icon: string | null;
|
|
1835
|
+
category: TokenCategory | null;
|
|
1836
|
+
};
|
|
1837
|
+
}>;
|
|
1838
|
+
};
|
|
1839
|
+
borrowApy7d: {
|
|
1840
|
+
__typename?: 'Apy';
|
|
1841
|
+
base: number;
|
|
1842
|
+
total: number;
|
|
1843
|
+
fee: number;
|
|
1844
|
+
rewards: Array<{
|
|
1845
|
+
__typename?: 'Reward';
|
|
1846
|
+
apr: number;
|
|
1847
|
+
asset: {
|
|
1848
|
+
__typename?: 'Token';
|
|
1849
|
+
address: `0x${string}`;
|
|
1850
|
+
symbol: string;
|
|
1851
|
+
decimals: number;
|
|
1852
|
+
icon: string | null;
|
|
1853
|
+
category: TokenCategory | null;
|
|
1854
|
+
};
|
|
1855
|
+
}>;
|
|
1856
|
+
};
|
|
1713
1857
|
vaultAllocations: Array<{
|
|
1714
1858
|
__typename?: 'MorphoVaultMarketAllocation';
|
|
1715
1859
|
vault: {
|
|
@@ -1751,10 +1895,38 @@ type VaultQuery = {
|
|
|
1751
1895
|
supplyApy1d: {
|
|
1752
1896
|
__typename?: 'Apy';
|
|
1753
1897
|
total: number;
|
|
1898
|
+
base: number;
|
|
1899
|
+
fee: number;
|
|
1900
|
+
rewards: Array<{
|
|
1901
|
+
__typename?: 'Reward';
|
|
1902
|
+
apr: number;
|
|
1903
|
+
asset: {
|
|
1904
|
+
__typename?: 'Token';
|
|
1905
|
+
address: `0x${string}`;
|
|
1906
|
+
symbol: string;
|
|
1907
|
+
decimals: number;
|
|
1908
|
+
icon: string | null;
|
|
1909
|
+
category: TokenCategory | null;
|
|
1910
|
+
};
|
|
1911
|
+
}>;
|
|
1754
1912
|
};
|
|
1755
1913
|
supplyApy7d: {
|
|
1756
1914
|
__typename?: 'Apy';
|
|
1757
1915
|
total: number;
|
|
1916
|
+
base: number;
|
|
1917
|
+
fee: number;
|
|
1918
|
+
rewards: Array<{
|
|
1919
|
+
__typename?: 'Reward';
|
|
1920
|
+
apr: number;
|
|
1921
|
+
asset: {
|
|
1922
|
+
__typename?: 'Token';
|
|
1923
|
+
address: `0x${string}`;
|
|
1924
|
+
symbol: string;
|
|
1925
|
+
decimals: number;
|
|
1926
|
+
icon: string | null;
|
|
1927
|
+
category: TokenCategory | null;
|
|
1928
|
+
};
|
|
1929
|
+
}>;
|
|
1758
1930
|
};
|
|
1759
1931
|
supplyApy30d: {
|
|
1760
1932
|
__typename?: 'Apy';
|
|
@@ -1825,8 +1997,8 @@ type VaultQuery = {
|
|
|
1825
1997
|
};
|
|
1826
1998
|
supplyApy: {
|
|
1827
1999
|
__typename?: 'Apy';
|
|
1828
|
-
base: number;
|
|
1829
2000
|
total: number;
|
|
2001
|
+
base: number;
|
|
1830
2002
|
fee: number;
|
|
1831
2003
|
rewards: Array<{
|
|
1832
2004
|
__typename?: 'Reward';
|
|
@@ -2059,6 +2231,42 @@ type MarketQuery = {
|
|
|
2059
2231
|
};
|
|
2060
2232
|
}>;
|
|
2061
2233
|
};
|
|
2234
|
+
borrowApy1d: {
|
|
2235
|
+
__typename?: 'Apy';
|
|
2236
|
+
base: number;
|
|
2237
|
+
total: number;
|
|
2238
|
+
fee: number;
|
|
2239
|
+
rewards: Array<{
|
|
2240
|
+
__typename?: 'Reward';
|
|
2241
|
+
apr: number;
|
|
2242
|
+
asset: {
|
|
2243
|
+
__typename?: 'Token';
|
|
2244
|
+
address: `0x${string}`;
|
|
2245
|
+
symbol: string;
|
|
2246
|
+
decimals: number;
|
|
2247
|
+
icon: string | null;
|
|
2248
|
+
category: TokenCategory | null;
|
|
2249
|
+
};
|
|
2250
|
+
}>;
|
|
2251
|
+
};
|
|
2252
|
+
borrowApy7d: {
|
|
2253
|
+
__typename?: 'Apy';
|
|
2254
|
+
base: number;
|
|
2255
|
+
total: number;
|
|
2256
|
+
fee: number;
|
|
2257
|
+
rewards: Array<{
|
|
2258
|
+
__typename?: 'Reward';
|
|
2259
|
+
apr: number;
|
|
2260
|
+
asset: {
|
|
2261
|
+
__typename?: 'Token';
|
|
2262
|
+
address: `0x${string}`;
|
|
2263
|
+
symbol: string;
|
|
2264
|
+
decimals: number;
|
|
2265
|
+
icon: string | null;
|
|
2266
|
+
category: TokenCategory | null;
|
|
2267
|
+
};
|
|
2268
|
+
}>;
|
|
2269
|
+
};
|
|
2062
2270
|
} | null>;
|
|
2063
2271
|
};
|
|
2064
2272
|
};
|
|
@@ -2179,6 +2387,333 @@ type SupportedMarketIdsQuery = {
|
|
|
2179
2387
|
} | null>;
|
|
2180
2388
|
};
|
|
2181
2389
|
};
|
|
2390
|
+
type VaultHistoryDataQueryVariables = Exact<{
|
|
2391
|
+
chainId: Scalars['ChainId']['input'];
|
|
2392
|
+
vaultId: Scalars['Address']['input'];
|
|
2393
|
+
}>;
|
|
2394
|
+
type VaultHistoryDataQuery = {
|
|
2395
|
+
__typename?: 'Query';
|
|
2396
|
+
morphoVaults: {
|
|
2397
|
+
__typename?: 'MorphoVaultPage';
|
|
2398
|
+
items: Array<{
|
|
2399
|
+
__typename?: 'MorphoVault';
|
|
2400
|
+
historical: {
|
|
2401
|
+
__typename?: 'MorphoVaultHistorical';
|
|
2402
|
+
daily: Array<{
|
|
2403
|
+
__typename?: 'MorphoVaultHistoricalEntry';
|
|
2404
|
+
bucketTimestamp: number;
|
|
2405
|
+
supplyApy1d: {
|
|
2406
|
+
__typename?: 'Apy';
|
|
2407
|
+
total: number;
|
|
2408
|
+
};
|
|
2409
|
+
supplyApy30d: {
|
|
2410
|
+
__typename?: 'Apy';
|
|
2411
|
+
total: number;
|
|
2412
|
+
};
|
|
2413
|
+
supplyApy7d: {
|
|
2414
|
+
__typename?: 'Apy';
|
|
2415
|
+
total: number;
|
|
2416
|
+
};
|
|
2417
|
+
totalSupplied: {
|
|
2418
|
+
__typename?: 'TokenAmount';
|
|
2419
|
+
usd: number | null;
|
|
2420
|
+
raw: string;
|
|
2421
|
+
formatted: string;
|
|
2422
|
+
};
|
|
2423
|
+
}>;
|
|
2424
|
+
hourly: Array<{
|
|
2425
|
+
__typename?: 'MorphoVaultHistoricalEntry';
|
|
2426
|
+
bucketTimestamp: number;
|
|
2427
|
+
supplyApy1d: {
|
|
2428
|
+
__typename?: 'Apy';
|
|
2429
|
+
total: number;
|
|
2430
|
+
};
|
|
2431
|
+
supplyApy30d: {
|
|
2432
|
+
__typename?: 'Apy';
|
|
2433
|
+
total: number;
|
|
2434
|
+
};
|
|
2435
|
+
supplyApy7d: {
|
|
2436
|
+
__typename?: 'Apy';
|
|
2437
|
+
total: number;
|
|
2438
|
+
};
|
|
2439
|
+
totalSupplied: {
|
|
2440
|
+
__typename?: 'TokenAmount';
|
|
2441
|
+
usd: number | null;
|
|
2442
|
+
raw: string;
|
|
2443
|
+
formatted: string;
|
|
2444
|
+
};
|
|
2445
|
+
}>;
|
|
2446
|
+
} | null;
|
|
2447
|
+
} | null>;
|
|
2448
|
+
};
|
|
2449
|
+
};
|
|
2450
|
+
type VaultMarketAllocationHistoryDataQueryVariables = Exact<{
|
|
2451
|
+
chainId: Scalars['ChainId']['input'];
|
|
2452
|
+
vaultId: Scalars['Address']['input'];
|
|
2453
|
+
}>;
|
|
2454
|
+
type VaultMarketAllocationHistoryDataQuery = {
|
|
2455
|
+
__typename?: 'Query';
|
|
2456
|
+
morphoVaults: {
|
|
2457
|
+
__typename?: 'MorphoVaultPage';
|
|
2458
|
+
items: Array<{
|
|
2459
|
+
__typename?: 'MorphoVault';
|
|
2460
|
+
name: string;
|
|
2461
|
+
marketAllocations: Array<{
|
|
2462
|
+
__typename?: 'MorphoVaultMarketAllocation';
|
|
2463
|
+
enabled: boolean;
|
|
2464
|
+
market: {
|
|
2465
|
+
__typename?: 'MorphoMarket';
|
|
2466
|
+
name: string;
|
|
2467
|
+
marketId: `0x${string}`;
|
|
2468
|
+
utilization: number;
|
|
2469
|
+
historical: {
|
|
2470
|
+
__typename?: 'MorphoMarketHistorical';
|
|
2471
|
+
daily: Array<{
|
|
2472
|
+
__typename?: 'MorphoMarketHistoricalEntry';
|
|
2473
|
+
bucketTimestamp: number;
|
|
2474
|
+
borrowApy1d: {
|
|
2475
|
+
__typename?: 'Apy';
|
|
2476
|
+
total: number;
|
|
2477
|
+
};
|
|
2478
|
+
borrowApy30d: {
|
|
2479
|
+
__typename?: 'Apy';
|
|
2480
|
+
total: number;
|
|
2481
|
+
};
|
|
2482
|
+
borrowApy7d: {
|
|
2483
|
+
__typename?: 'Apy';
|
|
2484
|
+
total: number;
|
|
2485
|
+
};
|
|
2486
|
+
supplyApy1d: {
|
|
2487
|
+
__typename?: 'Apy';
|
|
2488
|
+
total: number;
|
|
2489
|
+
};
|
|
2490
|
+
supplyApy7d: {
|
|
2491
|
+
__typename?: 'Apy';
|
|
2492
|
+
total: number;
|
|
2493
|
+
};
|
|
2494
|
+
supplyApy30d: {
|
|
2495
|
+
__typename?: 'Apy';
|
|
2496
|
+
total: number;
|
|
2497
|
+
};
|
|
2498
|
+
totalBorrowed: {
|
|
2499
|
+
__typename?: 'TokenAmount';
|
|
2500
|
+
formatted: string;
|
|
2501
|
+
raw: string;
|
|
2502
|
+
usd: number | null;
|
|
2503
|
+
};
|
|
2504
|
+
totalCollateral: {
|
|
2505
|
+
__typename?: 'TokenAmount';
|
|
2506
|
+
formatted: string;
|
|
2507
|
+
raw: string;
|
|
2508
|
+
usd: number | null;
|
|
2509
|
+
};
|
|
2510
|
+
totalSupplied: {
|
|
2511
|
+
__typename?: 'TokenAmount';
|
|
2512
|
+
formatted: string;
|
|
2513
|
+
raw: string;
|
|
2514
|
+
usd: number | null;
|
|
2515
|
+
};
|
|
2516
|
+
}>;
|
|
2517
|
+
hourly: Array<{
|
|
2518
|
+
__typename?: 'MorphoMarketHistoricalEntry';
|
|
2519
|
+
bucketTimestamp: number;
|
|
2520
|
+
borrowApy1d: {
|
|
2521
|
+
__typename?: 'Apy';
|
|
2522
|
+
total: number;
|
|
2523
|
+
};
|
|
2524
|
+
borrowApy30d: {
|
|
2525
|
+
__typename?: 'Apy';
|
|
2526
|
+
total: number;
|
|
2527
|
+
};
|
|
2528
|
+
borrowApy7d: {
|
|
2529
|
+
__typename?: 'Apy';
|
|
2530
|
+
total: number;
|
|
2531
|
+
};
|
|
2532
|
+
supplyApy1d: {
|
|
2533
|
+
__typename?: 'Apy';
|
|
2534
|
+
total: number;
|
|
2535
|
+
};
|
|
2536
|
+
supplyApy7d: {
|
|
2537
|
+
__typename?: 'Apy';
|
|
2538
|
+
total: number;
|
|
2539
|
+
};
|
|
2540
|
+
supplyApy30d: {
|
|
2541
|
+
__typename?: 'Apy';
|
|
2542
|
+
total: number;
|
|
2543
|
+
};
|
|
2544
|
+
totalBorrowed: {
|
|
2545
|
+
__typename?: 'TokenAmount';
|
|
2546
|
+
formatted: string;
|
|
2547
|
+
raw: string;
|
|
2548
|
+
usd: number | null;
|
|
2549
|
+
};
|
|
2550
|
+
totalCollateral: {
|
|
2551
|
+
__typename?: 'TokenAmount';
|
|
2552
|
+
formatted: string;
|
|
2553
|
+
raw: string;
|
|
2554
|
+
usd: number | null;
|
|
2555
|
+
};
|
|
2556
|
+
totalSupplied: {
|
|
2557
|
+
__typename?: 'TokenAmount';
|
|
2558
|
+
formatted: string;
|
|
2559
|
+
raw: string;
|
|
2560
|
+
usd: number | null;
|
|
2561
|
+
};
|
|
2562
|
+
}>;
|
|
2563
|
+
} | null;
|
|
2564
|
+
};
|
|
2565
|
+
vault: {
|
|
2566
|
+
__typename?: 'MorphoVault';
|
|
2567
|
+
decimals: number;
|
|
2568
|
+
asset: {
|
|
2569
|
+
__typename?: 'Token';
|
|
2570
|
+
decimals: number;
|
|
2571
|
+
};
|
|
2572
|
+
};
|
|
2573
|
+
}>;
|
|
2574
|
+
} | null>;
|
|
2575
|
+
};
|
|
2576
|
+
};
|
|
2577
|
+
type MarketHistoryDataQueryVariables = Exact<{
|
|
2578
|
+
chainId: Scalars['ChainId']['input'];
|
|
2579
|
+
marketId: Scalars['Hex']['input'];
|
|
2580
|
+
}>;
|
|
2581
|
+
type MarketHistoryDataQuery = {
|
|
2582
|
+
__typename?: 'Query';
|
|
2583
|
+
morphoMarkets: {
|
|
2584
|
+
__typename?: 'MorphoMarketPage';
|
|
2585
|
+
items: Array<{
|
|
2586
|
+
__typename?: 'MorphoMarket';
|
|
2587
|
+
historical: {
|
|
2588
|
+
__typename?: 'MorphoMarketHistorical';
|
|
2589
|
+
daily: Array<{
|
|
2590
|
+
__typename?: 'MorphoMarketHistoricalEntry';
|
|
2591
|
+
bucketTimestamp: number;
|
|
2592
|
+
borrowApy1d: {
|
|
2593
|
+
__typename?: 'Apy';
|
|
2594
|
+
total: number;
|
|
2595
|
+
};
|
|
2596
|
+
borrowApy30d: {
|
|
2597
|
+
__typename?: 'Apy';
|
|
2598
|
+
total: number;
|
|
2599
|
+
};
|
|
2600
|
+
borrowApy7d: {
|
|
2601
|
+
__typename?: 'Apy';
|
|
2602
|
+
total: number;
|
|
2603
|
+
};
|
|
2604
|
+
supplyApy1d: {
|
|
2605
|
+
__typename?: 'Apy';
|
|
2606
|
+
total: number;
|
|
2607
|
+
};
|
|
2608
|
+
supplyApy7d: {
|
|
2609
|
+
__typename?: 'Apy';
|
|
2610
|
+
total: number;
|
|
2611
|
+
};
|
|
2612
|
+
supplyApy30d: {
|
|
2613
|
+
__typename?: 'Apy';
|
|
2614
|
+
total: number;
|
|
2615
|
+
};
|
|
2616
|
+
totalBorrowed: {
|
|
2617
|
+
__typename?: 'TokenAmount';
|
|
2618
|
+
formatted: string;
|
|
2619
|
+
raw: string;
|
|
2620
|
+
usd: number | null;
|
|
2621
|
+
};
|
|
2622
|
+
totalCollateral: {
|
|
2623
|
+
__typename?: 'TokenAmount';
|
|
2624
|
+
formatted: string;
|
|
2625
|
+
raw: string;
|
|
2626
|
+
usd: number | null;
|
|
2627
|
+
};
|
|
2628
|
+
totalSupplied: {
|
|
2629
|
+
__typename?: 'TokenAmount';
|
|
2630
|
+
formatted: string;
|
|
2631
|
+
raw: string;
|
|
2632
|
+
usd: number | null;
|
|
2633
|
+
};
|
|
2634
|
+
}>;
|
|
2635
|
+
hourly: Array<{
|
|
2636
|
+
__typename?: 'MorphoMarketHistoricalEntry';
|
|
2637
|
+
bucketTimestamp: number;
|
|
2638
|
+
borrowApy1d: {
|
|
2639
|
+
__typename?: 'Apy';
|
|
2640
|
+
total: number;
|
|
2641
|
+
};
|
|
2642
|
+
borrowApy30d: {
|
|
2643
|
+
__typename?: 'Apy';
|
|
2644
|
+
total: number;
|
|
2645
|
+
};
|
|
2646
|
+
borrowApy7d: {
|
|
2647
|
+
__typename?: 'Apy';
|
|
2648
|
+
total: number;
|
|
2649
|
+
};
|
|
2650
|
+
supplyApy1d: {
|
|
2651
|
+
__typename?: 'Apy';
|
|
2652
|
+
total: number;
|
|
2653
|
+
};
|
|
2654
|
+
supplyApy7d: {
|
|
2655
|
+
__typename?: 'Apy';
|
|
2656
|
+
total: number;
|
|
2657
|
+
};
|
|
2658
|
+
supplyApy30d: {
|
|
2659
|
+
__typename?: 'Apy';
|
|
2660
|
+
total: number;
|
|
2661
|
+
};
|
|
2662
|
+
totalBorrowed: {
|
|
2663
|
+
__typename?: 'TokenAmount';
|
|
2664
|
+
formatted: string;
|
|
2665
|
+
raw: string;
|
|
2666
|
+
usd: number | null;
|
|
2667
|
+
};
|
|
2668
|
+
totalCollateral: {
|
|
2669
|
+
__typename?: 'TokenAmount';
|
|
2670
|
+
formatted: string;
|
|
2671
|
+
raw: string;
|
|
2672
|
+
usd: number | null;
|
|
2673
|
+
};
|
|
2674
|
+
totalSupplied: {
|
|
2675
|
+
__typename?: 'TokenAmount';
|
|
2676
|
+
formatted: string;
|
|
2677
|
+
raw: string;
|
|
2678
|
+
usd: number | null;
|
|
2679
|
+
};
|
|
2680
|
+
}>;
|
|
2681
|
+
} | null;
|
|
2682
|
+
} | null>;
|
|
2683
|
+
};
|
|
2684
|
+
};
|
|
2685
|
+
type MarketIbrHistoryDataQueryVariables = Exact<{
|
|
2686
|
+
chainId: Scalars['ChainId']['input'];
|
|
2687
|
+
marketId: Scalars['Hex']['input'];
|
|
2688
|
+
}>;
|
|
2689
|
+
type MarketIbrHistoryDataQuery = {
|
|
2690
|
+
__typename?: 'Query';
|
|
2691
|
+
morphoMarkets: {
|
|
2692
|
+
__typename?: 'MorphoMarketPage';
|
|
2693
|
+
items: Array<{
|
|
2694
|
+
__typename?: 'MorphoMarket';
|
|
2695
|
+
historical: {
|
|
2696
|
+
__typename?: 'MorphoMarketHistorical';
|
|
2697
|
+
daily: Array<{
|
|
2698
|
+
__typename?: 'MorphoMarketHistoricalEntry';
|
|
2699
|
+
bucketTimestamp: number;
|
|
2700
|
+
borrowApyInstantaneous: {
|
|
2701
|
+
__typename?: 'Apy';
|
|
2702
|
+
total: number;
|
|
2703
|
+
};
|
|
2704
|
+
}>;
|
|
2705
|
+
hourly: Array<{
|
|
2706
|
+
__typename?: 'MorphoMarketHistoricalEntry';
|
|
2707
|
+
bucketTimestamp: number;
|
|
2708
|
+
borrowApyInstantaneous: {
|
|
2709
|
+
__typename?: 'Apy';
|
|
2710
|
+
total: number;
|
|
2711
|
+
};
|
|
2712
|
+
}>;
|
|
2713
|
+
} | null;
|
|
2714
|
+
} | null>;
|
|
2715
|
+
};
|
|
2716
|
+
};
|
|
2182
2717
|
declare const ChainInfoFragment: graphql.DocumentNode;
|
|
2183
2718
|
declare const TokenInfoFragment: graphql.DocumentNode;
|
|
2184
2719
|
declare const CuratorInfoFragment: graphql.DocumentNode;
|
|
@@ -2216,6 +2751,10 @@ declare const Market: graphql.DocumentNode;
|
|
|
2216
2751
|
declare const VaultPositions: graphql.DocumentNode;
|
|
2217
2752
|
declare const MarketPositions: graphql.DocumentNode;
|
|
2218
2753
|
declare const SupportedMarketIds: graphql.DocumentNode;
|
|
2754
|
+
declare const VaultHistoryData: graphql.DocumentNode;
|
|
2755
|
+
declare const VaultMarketAllocationHistoryData: graphql.DocumentNode;
|
|
2756
|
+
declare const MarketHistoryData: graphql.DocumentNode;
|
|
2757
|
+
declare const MarketIbrHistoryData: graphql.DocumentNode;
|
|
2219
2758
|
interface PossibleTypesResultData {
|
|
2220
2759
|
possibleTypes: {
|
|
2221
2760
|
[key: string]: string[];
|
|
@@ -2223,4 +2762,4 @@ interface PossibleTypesResultData {
|
|
|
2223
2762
|
}
|
|
2224
2763
|
declare const result: PossibleTypesResultData;
|
|
2225
2764
|
|
|
2226
|
-
export { type Adapter, type AdapterCap, type AeraVault, type AeraVaultFilter, type AeraVaultPage, type AeraVaultPosition, type AeraVaultPositionFilter, type AeraVaultPositionPage, type Apy, ApyFragment, type ApyFragmentFragment, ApySide, ApyTimeframe, type Cap, type Chain, type ChainFilter, ChainInfoFragment, type ChainInfoFragmentFragment, type CollateralExposureCap, type Curator, CuratorInfoFragment, type CuratorInfoFragmentFragment, type Erc4626Vault, type Erc4626VaultApyArgs, type Erc4626VaultFilter, type Erc4626VaultKey, type Erc4626VaultPage, Erc4626VaultProtocol, type Exact, type GenericErc4626Vault, type GenericErc4626VaultApyArgs, type Identity, IdentityResolver, type IdentityResolverOutput, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, Market, MarketPositions, type MarketPositionsQuery, type MarketPositionsQueryVariables, type MarketQuery, type MarketQueryVariables, MarketSummaries, type MarketSummariesQuery, type MarketSummariesQueryVariables, MarketSummaryFragment, type MarketSummaryFragmentFragment, type MarketV1Adapter, type MarketV1ExposureCap, type Maybe, type MerklAccountReward, MerklAction, type MerklRewardInput, type MorphoIrm, type MorphoIrmCurvePoint, type MorphoMarket, type MorphoMarketFilter, type MorphoMarketHistorical, type MorphoMarketHistoricalEntry, type MorphoMarketPage, type MorphoMarketPosition, type MorphoMarketPositionFilter, type MorphoMarketPositionPage, type MorphoVault, type MorphoVaultApyArgs, type MorphoVaultFilter, type MorphoVaultHistorical, type MorphoVaultHistoricalEntry, type MorphoVaultMarketAllocation, type MorphoVaultMetadata, type MorphoVaultPage, type MorphoVaultPosition, type MorphoVaultPositionFilter, type MorphoVaultPositionPage, type MorphoVaultV2, type MorphoVaultV2ApyArgs, type OnchainAmount, type PageInfo, type PossibleTypesResultData, type Protocol, type Query, type QueryAeraVaultPositionsArgs, type QueryAeraVaultsArgs, type QueryChainsArgs, type QueryErc4626VaultsArgs, type QueryIdentitiesArgs, type QueryIdentityArgs, type QueryMerklAccountRewardsArgs, type QueryMorphoMarketPositionsArgs, type QueryMorphoMarketsArgs, type QueryMorphoVaultPositionsArgs, type QueryMorphoVaultsArgs, type QueryTokenHoldingsArgs, type QueryTokensArgs, type QueryVaultsArgs, type Reward, type Scalars, SupportedMarketIds, type SupportedMarketIdsQuery, type SupportedMarketIdsQueryVariables, type Token, type TokenAmount, TokenCategory, type TokenHistorical, type TokenHistoricalEntry, type TokenHolding, type TokenHoldingInput, TokenInfoFragment, type TokenInfoFragmentFragment, type TokenInput, type UnknownAdapter, type UnknownCap, Vault, type VaultInput, VaultPositions, type VaultPositionsQuery, type VaultPositionsQueryVariables, VaultProtocol, type VaultQuery, type VaultQueryVariables, VaultSummaries, type VaultSummariesQuery, type VaultSummariesQueryVariables, VaultSummaryFragment, type VaultSummaryFragmentFragment, VaultType, type VaultV1Adapter, result as default };
|
|
2765
|
+
export { type Adapter, type AdapterCap, type AeraVault, type AeraVaultFilter, type AeraVaultPage, type AeraVaultPosition, type AeraVaultPositionFilter, type AeraVaultPositionPage, type Apy, ApyFragment, type ApyFragmentFragment, ApySide, ApyTimeframe, type Cap, type Chain, type ChainFilter, ChainInfoFragment, type ChainInfoFragmentFragment, type CollateralExposureCap, type Curator, CuratorInfoFragment, type CuratorInfoFragmentFragment, type Erc4626Vault, type Erc4626VaultApyArgs, type Erc4626VaultFilter, type Erc4626VaultKey, type Erc4626VaultPage, Erc4626VaultProtocol, type Exact, type GenericErc4626Vault, type GenericErc4626VaultApyArgs, type Identity, IdentityResolver, type IdentityResolverOutput, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, Market, MarketHistoryData, type MarketHistoryDataQuery, type MarketHistoryDataQueryVariables, MarketIbrHistoryData, type MarketIbrHistoryDataQuery, type MarketIbrHistoryDataQueryVariables, MarketPositions, type MarketPositionsQuery, type MarketPositionsQueryVariables, type MarketQuery, type MarketQueryVariables, MarketSummaries, type MarketSummariesQuery, type MarketSummariesQueryVariables, MarketSummaryFragment, type MarketSummaryFragmentFragment, type MarketV1Adapter, type MarketV1ExposureCap, type Maybe, type MerklAccountReward, MerklAction, type MerklRewardInput, type MorphoIrm, type MorphoIrmCurvePoint, type MorphoMarket, type MorphoMarketFilter, type MorphoMarketHistorical, type MorphoMarketHistoricalEntry, type MorphoMarketPage, type MorphoMarketPosition, type MorphoMarketPositionFilter, type MorphoMarketPositionPage, type MorphoVault, type MorphoVaultApyArgs, type MorphoVaultFilter, type MorphoVaultHistorical, type MorphoVaultHistoricalEntry, type MorphoVaultMarketAllocation, type MorphoVaultMetadata, type MorphoVaultPage, type MorphoVaultPosition, type MorphoVaultPositionFilter, type MorphoVaultPositionPage, type MorphoVaultV2, type MorphoVaultV2ApyArgs, type OnchainAmount, type PageInfo, type PossibleTypesResultData, type Protocol, type Query, type QueryAeraVaultPositionsArgs, type QueryAeraVaultsArgs, type QueryChainsArgs, type QueryErc4626VaultsArgs, type QueryIdentitiesArgs, type QueryIdentityArgs, type QueryMerklAccountRewardsArgs, type QueryMorphoMarketPositionsArgs, type QueryMorphoMarketsArgs, type QueryMorphoVaultPositionsArgs, type QueryMorphoVaultsArgs, type QueryTokenHoldingsArgs, type QueryTokensArgs, type QueryVaultsArgs, type Reward, type Scalars, SupportedMarketIds, type SupportedMarketIdsQuery, type SupportedMarketIdsQueryVariables, type Token, type TokenAmount, TokenCategory, type TokenHistorical, type TokenHistoricalEntry, type TokenHolding, type TokenHoldingInput, TokenInfoFragment, type TokenInfoFragmentFragment, type TokenInput, type UnknownAdapter, type UnknownCap, Vault, VaultHistoryData, type VaultHistoryDataQuery, type VaultHistoryDataQueryVariables, type VaultInput, VaultMarketAllocationHistoryData, type VaultMarketAllocationHistoryDataQuery, type VaultMarketAllocationHistoryDataQueryVariables, VaultPositions, type VaultPositionsQuery, type VaultPositionsQueryVariables, VaultProtocol, type VaultQuery, type VaultQueryVariables, VaultSummaries, type VaultSummariesQuery, type VaultSummariesQueryVariables, VaultSummaryFragment, type VaultSummaryFragmentFragment, VaultType, type VaultV1Adapter, result as default };
|