@xchainjs/xchain-thornode 0.1.0-alpha4 → 0.1.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.
@@ -2,7 +2,7 @@
2
2
  * Thornode API
3
3
  * Thornode REST API.
4
4
  *
5
- * The version of the OpenAPI document: 1.89.0
5
+ * The version of the OpenAPI document: 1.98.0
6
6
  * Contact: devs@thorchain.org
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -37,6 +37,44 @@ export interface BanResponse {
37
37
  */
38
38
  'signers'?: Array<string>;
39
39
  }
40
+ /**
41
+ *
42
+ * @export
43
+ * @interface Bucket
44
+ */
45
+ export interface Bucket {
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof Bucket
50
+ */
51
+ 'balance_asset': string;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof Bucket
56
+ */
57
+ 'asset': string;
58
+ /**
59
+ * the total pool liquidity provider units
60
+ * @type {string}
61
+ * @memberof Bucket
62
+ */
63
+ 'LP_units': string;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof Bucket
68
+ */
69
+ 'status': string;
70
+ }
71
+ /**
72
+ *
73
+ * @export
74
+ * @interface BucketsResponse
75
+ */
76
+ export interface BucketsResponse extends Array<Bucket> {
77
+ }
40
78
  /**
41
79
  *
42
80
  * @export
@@ -112,6 +150,118 @@ export interface ConstantsResponse {
112
150
  [key: string]: string;
113
151
  };
114
152
  }
153
+ /**
154
+ *
155
+ * @export
156
+ * @interface InboundAddress
157
+ */
158
+ export interface InboundAddress {
159
+ /**
160
+ *
161
+ * @type {string}
162
+ * @memberof InboundAddress
163
+ */
164
+ 'chain'?: string;
165
+ /**
166
+ *
167
+ * @type {string}
168
+ * @memberof InboundAddress
169
+ */
170
+ 'pub_key'?: string;
171
+ /**
172
+ *
173
+ * @type {string}
174
+ * @memberof InboundAddress
175
+ */
176
+ 'address'?: string;
177
+ /**
178
+ *
179
+ * @type {string}
180
+ * @memberof InboundAddress
181
+ */
182
+ 'router'?: string;
183
+ /**
184
+ * Returns true if trading is unavailable for this chain, either because trading is halted globally or specifically for this chain
185
+ * @type {boolean}
186
+ * @memberof InboundAddress
187
+ */
188
+ 'halted': boolean;
189
+ /**
190
+ * Returns true if trading is paused globally
191
+ * @type {boolean}
192
+ * @memberof InboundAddress
193
+ */
194
+ 'global_trading_paused'?: boolean;
195
+ /**
196
+ * Returns true if trading is paused for this chain
197
+ * @type {boolean}
198
+ * @memberof InboundAddress
199
+ */
200
+ 'chain_trading_paused'?: boolean;
201
+ /**
202
+ * Returns true if LP actions are paused for this chain
203
+ * @type {boolean}
204
+ * @memberof InboundAddress
205
+ */
206
+ 'chain_lp_actions_paused'?: boolean;
207
+ /**
208
+ * The minimum fee rate used by vaults to send outbound TXs. The actual fee rate may be higher. For EVM chains this is returned in gwei (1e9).
209
+ * @type {string}
210
+ * @memberof InboundAddress
211
+ */
212
+ 'gas_rate'?: string;
213
+ /**
214
+ * Units of the gas_rate.
215
+ * @type {string}
216
+ * @memberof InboundAddress
217
+ */
218
+ 'gas_rate_units'?: string;
219
+ /**
220
+ * Avg size of outbound TXs on each chain. For UTXO chains it may be larger than average, as it takes into account vault consolidation txs, which can have many vouts
221
+ * @type {string}
222
+ * @memberof InboundAddress
223
+ */
224
+ 'outbound_tx_size'?: string;
225
+ /**
226
+ * The total outbound fee charged to the user for outbound txs in the gas asset of the chain.
227
+ * @type {string}
228
+ * @memberof InboundAddress
229
+ */
230
+ 'outbound_fee'?: string;
231
+ }
232
+ /**
233
+ *
234
+ * @export
235
+ * @interface InboundAddressesResponse
236
+ */
237
+ export interface InboundAddressesResponse extends Array<InboundAddress> {
238
+ }
239
+ /**
240
+ *
241
+ * @export
242
+ * @interface KeygenMetric
243
+ */
244
+ export interface KeygenMetric {
245
+ /**
246
+ *
247
+ * @type {string}
248
+ * @memberof KeygenMetric
249
+ */
250
+ 'pub_key'?: string;
251
+ /**
252
+ *
253
+ * @type {Array<NodeKeygenMetric>}
254
+ * @memberof KeygenMetric
255
+ */
256
+ 'node_tss_times': Array<NodeKeygenMetric>;
257
+ }
258
+ /**
259
+ *
260
+ * @export
261
+ * @interface KeygenMetricsResponse
262
+ */
263
+ export interface KeygenMetricsResponse extends Array<KeygenMetric> {
264
+ }
115
265
  /**
116
266
  *
117
267
  * @export
@@ -200,6 +350,13 @@ export interface LastBlock {
200
350
  */
201
351
  'thorchain': number;
202
352
  }
353
+ /**
354
+ *
355
+ * @export
356
+ * @interface LastBlockResponse
357
+ */
358
+ export interface LastBlockResponse extends Array<LastBlock> {
359
+ }
203
360
  /**
204
361
  *
205
362
  * @export
@@ -273,6 +430,13 @@ export interface LiquidityProvider {
273
430
  */
274
431
  'asset_deposit_value': string;
275
432
  }
433
+ /**
434
+ *
435
+ * @export
436
+ * @interface LiquidityProviderResponse
437
+ */
438
+ export interface LiquidityProviderResponse extends Array<LiquidityProvider> {
439
+ }
276
440
  /**
277
441
  *
278
442
  * @export
@@ -281,10 +445,10 @@ export interface LiquidityProvider {
281
445
  export interface MetricsResponse {
282
446
  /**
283
447
  *
284
- * @type {Array<object>}
448
+ * @type {KeygenMetricsResponse}
285
449
  * @memberof MetricsResponse
286
450
  */
287
- 'keygen'?: Array<object>;
451
+ 'keygen'?: KeygenMetricsResponse;
288
452
  /**
289
453
  *
290
454
  * @type {KeysignMetrics}
@@ -305,6 +469,14 @@ export interface MimirNodesResponse {
305
469
  */
306
470
  'mimirs'?: Array<MimirVote>;
307
471
  }
472
+ /**
473
+ *
474
+ * @export
475
+ * @interface MimirResponse
476
+ */
477
+ export interface MimirResponse {
478
+ [key: string]: string;
479
+ }
308
480
  /**
309
481
  *
310
482
  * @export
@@ -570,6 +742,25 @@ export interface NodeJail {
570
742
  */
571
743
  'reason'?: string;
572
744
  }
745
+ /**
746
+ *
747
+ * @export
748
+ * @interface NodeKeygenMetric
749
+ */
750
+ export interface NodeKeygenMetric {
751
+ /**
752
+ *
753
+ * @type {string}
754
+ * @memberof NodeKeygenMetric
755
+ */
756
+ 'address'?: string;
757
+ /**
758
+ *
759
+ * @type {string}
760
+ * @memberof NodeKeygenMetric
761
+ */
762
+ 'tss_time'?: string;
763
+ }
573
764
  /**
574
765
  *
575
766
  * @export
@@ -614,6 +805,13 @@ export interface NodePubKeySet {
614
805
  */
615
806
  'ed25519'?: string;
616
807
  }
808
+ /**
809
+ *
810
+ * @export
811
+ * @interface NodesResponse
812
+ */
813
+ export interface NodesResponse extends Array<Node> {
814
+ }
617
815
  /**
618
816
  *
619
817
  * @export
@@ -692,6 +890,13 @@ export declare const ObservedTxStatusEnum: {
692
890
  readonly Incomplete: "incomplete";
693
891
  };
694
892
  export declare type ObservedTxStatusEnum = typeof ObservedTxStatusEnum[keyof typeof ObservedTxStatusEnum];
893
+ /**
894
+ *
895
+ * @export
896
+ * @interface OutboundResponse
897
+ */
898
+ export interface OutboundResponse extends Array<TxOutItem> {
899
+ }
695
900
  /**
696
901
  *
697
902
  * @export
@@ -814,6 +1019,19 @@ export interface Pool {
814
1019
  * @memberof Pool
815
1020
  */
816
1021
  'pending_inbound_asset': string;
1022
+ /**
1023
+ * Returns true if pool is a Savers pool. Savers pools are used for single-sided yield deposits.
1024
+ * @type {boolean}
1025
+ * @memberof Pool
1026
+ */
1027
+ 'is_savers_pool': boolean;
1028
+ }
1029
+ /**
1030
+ *
1031
+ * @export
1032
+ * @interface PoolsResponse
1033
+ */
1034
+ export interface PoolsResponse extends Array<Pool> {
817
1035
  }
818
1036
  /**
819
1037
  *
@@ -846,6 +1064,51 @@ export interface QueueResponse {
846
1064
  */
847
1065
  'scheduled_outbound_value': string;
848
1066
  }
1067
+ /**
1068
+ *
1069
+ * @export
1070
+ * @interface ScheduledResponse
1071
+ */
1072
+ export interface ScheduledResponse extends Array<TxOutItem> {
1073
+ }
1074
+ /**
1075
+ *
1076
+ * @export
1077
+ * @interface Thorname
1078
+ */
1079
+ export interface Thorname {
1080
+ /**
1081
+ *
1082
+ * @type {string}
1083
+ * @memberof Thorname
1084
+ */
1085
+ 'name'?: string;
1086
+ /**
1087
+ *
1088
+ * @type {string}
1089
+ * @memberof Thorname
1090
+ */
1091
+ 'chain'?: string;
1092
+ /**
1093
+ *
1094
+ * @type {string}
1095
+ * @memberof Thorname
1096
+ */
1097
+ 'address'?: string;
1098
+ /**
1099
+ *
1100
+ * @type {number}
1101
+ * @memberof Thorname
1102
+ */
1103
+ 'expire_block_height'?: number;
1104
+ }
1105
+ /**
1106
+ *
1107
+ * @export
1108
+ * @interface ThornameResponse
1109
+ */
1110
+ export interface ThornameResponse extends Array<Thorname> {
1111
+ }
849
1112
  /**
850
1113
  *
851
1114
  * @export
@@ -1252,6 +1515,13 @@ export interface VaultRouter {
1252
1515
  */
1253
1516
  'router'?: string;
1254
1517
  }
1518
+ /**
1519
+ *
1520
+ * @export
1521
+ * @interface VaultsResponse
1522
+ */
1523
+ export interface VaultsResponse extends Array<Vault> {
1524
+ }
1255
1525
  /**
1256
1526
  *
1257
1527
  * @export
@@ -1364,7 +1634,7 @@ export declare const LiquidityProvidersApiFp: (configuration?: Configuration | u
1364
1634
  * @param {*} [options] Override http request option.
1365
1635
  * @throws {RequiredError}
1366
1636
  */
1367
- liquidityProvider(asset: string, address: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<LiquidityProvider>>>;
1637
+ liquidityProvider(asset: string, address: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LiquidityProviderResponse>>;
1368
1638
  /**
1369
1639
  * Returns all liquidity provider information for an asset.
1370
1640
  * @param {string} asset
@@ -1372,7 +1642,7 @@ export declare const LiquidityProvidersApiFp: (configuration?: Configuration | u
1372
1642
  * @param {*} [options] Override http request option.
1373
1643
  * @throws {RequiredError}
1374
1644
  */
1375
- liquidityProviders(asset: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<LiquidityProvider>>>;
1645
+ liquidityProviders(asset: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LiquidityProviderResponse>>;
1376
1646
  };
1377
1647
  /**
1378
1648
  * LiquidityProvidersApi - factory interface
@@ -1387,7 +1657,7 @@ export declare const LiquidityProvidersApiFactory: (configuration?: Configuratio
1387
1657
  * @param {*} [options] Override http request option.
1388
1658
  * @throws {RequiredError}
1389
1659
  */
1390
- liquidityProvider(asset: string, address: string, height?: number | undefined, options?: any): AxiosPromise<Array<LiquidityProvider>>;
1660
+ liquidityProvider(asset: string, address: string, height?: number | undefined, options?: any): AxiosPromise<LiquidityProviderResponse>;
1391
1661
  /**
1392
1662
  * Returns all liquidity provider information for an asset.
1393
1663
  * @param {string} asset
@@ -1395,7 +1665,7 @@ export declare const LiquidityProvidersApiFactory: (configuration?: Configuratio
1395
1665
  * @param {*} [options] Override http request option.
1396
1666
  * @throws {RequiredError}
1397
1667
  */
1398
- liquidityProviders(asset: string, height?: number | undefined, options?: any): AxiosPromise<Array<LiquidityProvider>>;
1668
+ liquidityProviders(asset: string, height?: number | undefined, options?: any): AxiosPromise<LiquidityProviderResponse>;
1399
1669
  };
1400
1670
  /**
1401
1671
  * LiquidityProvidersApi - object-oriented interface
@@ -1413,7 +1683,7 @@ export declare class LiquidityProvidersApi extends BaseAPI {
1413
1683
  * @throws {RequiredError}
1414
1684
  * @memberof LiquidityProvidersApi
1415
1685
  */
1416
- liquidityProvider(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LiquidityProvider[], any>>;
1686
+ liquidityProvider(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LiquidityProviderResponse, any>>;
1417
1687
  /**
1418
1688
  * Returns all liquidity provider information for an asset.
1419
1689
  * @param {string} asset
@@ -1422,7 +1692,7 @@ export declare class LiquidityProvidersApi extends BaseAPI {
1422
1692
  * @throws {RequiredError}
1423
1693
  * @memberof LiquidityProvidersApi
1424
1694
  */
1425
- liquidityProviders(asset: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LiquidityProvider[], any>>;
1695
+ liquidityProviders(asset: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LiquidityProviderResponse, any>>;
1426
1696
  }
1427
1697
  /**
1428
1698
  * MimirApi - axios parameter creator
@@ -1478,18 +1748,14 @@ export declare const MimirApiFp: (configuration?: Configuration | undefined) =>
1478
1748
  * @param {*} [options] Override http request option.
1479
1749
  * @throws {RequiredError}
1480
1750
  */
1481
- mimir(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<{
1482
- [key: string]: string;
1483
- }>>;
1751
+ mimir(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MimirResponse>>;
1484
1752
  /**
1485
1753
  * Returns current admin mimir configuration.
1486
1754
  * @param {number} [height] optional block height, defaults to current tip
1487
1755
  * @param {*} [options] Override http request option.
1488
1756
  * @throws {RequiredError}
1489
1757
  */
1490
- mimirAdmin(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<{
1491
- [key: string]: string;
1492
- }>>;
1758
+ mimirAdmin(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MimirResponse>>;
1493
1759
  /**
1494
1760
  * Returns current active mimir configuration for the provided key.
1495
1761
  * @param {string} key the mimir key to lookup
@@ -1505,9 +1771,7 @@ export declare const MimirApiFp: (configuration?: Configuration | undefined) =>
1505
1771
  * @param {*} [options] Override http request option.
1506
1772
  * @throws {RequiredError}
1507
1773
  */
1508
- mimirNode(address: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<{
1509
- [key: string]: string;
1510
- }>>;
1774
+ mimirNode(address: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MimirResponse>>;
1511
1775
  /**
1512
1776
  * Returns current node mimir votes.
1513
1777
  * @param {number} [height] optional block height, defaults to current tip
@@ -1527,18 +1791,14 @@ export declare const MimirApiFactory: (configuration?: Configuration | undefined
1527
1791
  * @param {*} [options] Override http request option.
1528
1792
  * @throws {RequiredError}
1529
1793
  */
1530
- mimir(height?: number | undefined, options?: any): AxiosPromise<{
1531
- [key: string]: string;
1532
- }>;
1794
+ mimir(height?: number | undefined, options?: any): AxiosPromise<MimirResponse>;
1533
1795
  /**
1534
1796
  * Returns current admin mimir configuration.
1535
1797
  * @param {number} [height] optional block height, defaults to current tip
1536
1798
  * @param {*} [options] Override http request option.
1537
1799
  * @throws {RequiredError}
1538
1800
  */
1539
- mimirAdmin(height?: number | undefined, options?: any): AxiosPromise<{
1540
- [key: string]: string;
1541
- }>;
1801
+ mimirAdmin(height?: number | undefined, options?: any): AxiosPromise<MimirResponse>;
1542
1802
  /**
1543
1803
  * Returns current active mimir configuration for the provided key.
1544
1804
  * @param {string} key the mimir key to lookup
@@ -1554,9 +1814,7 @@ export declare const MimirApiFactory: (configuration?: Configuration | undefined
1554
1814
  * @param {*} [options] Override http request option.
1555
1815
  * @throws {RequiredError}
1556
1816
  */
1557
- mimirNode(address: string, height?: number | undefined, options?: any): AxiosPromise<{
1558
- [key: string]: string;
1559
- }>;
1817
+ mimirNode(address: string, height?: number | undefined, options?: any): AxiosPromise<MimirResponse>;
1560
1818
  /**
1561
1819
  * Returns current node mimir votes.
1562
1820
  * @param {number} [height] optional block height, defaults to current tip
@@ -1579,9 +1837,7 @@ export declare class MimirApi extends BaseAPI {
1579
1837
  * @throws {RequiredError}
1580
1838
  * @memberof MimirApi
1581
1839
  */
1582
- mimir(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<{
1583
- [key: string]: string;
1584
- }, any>>;
1840
+ mimir(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MimirResponse, any>>;
1585
1841
  /**
1586
1842
  * Returns current admin mimir configuration.
1587
1843
  * @param {number} [height] optional block height, defaults to current tip
@@ -1589,9 +1845,7 @@ export declare class MimirApi extends BaseAPI {
1589
1845
  * @throws {RequiredError}
1590
1846
  * @memberof MimirApi
1591
1847
  */
1592
- mimirAdmin(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<{
1593
- [key: string]: string;
1594
- }, any>>;
1848
+ mimirAdmin(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MimirResponse, any>>;
1595
1849
  /**
1596
1850
  * Returns current active mimir configuration for the provided key.
1597
1851
  * @param {string} key the mimir key to lookup
@@ -1609,9 +1863,7 @@ export declare class MimirApi extends BaseAPI {
1609
1863
  * @throws {RequiredError}
1610
1864
  * @memberof MimirApi
1611
1865
  */
1612
- mimirNode(address: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<{
1613
- [key: string]: string;
1614
- }, any>>;
1866
+ mimirNode(address: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MimirResponse, any>>;
1615
1867
  /**
1616
1868
  * Returns current node mimir votes.
1617
1869
  * @param {number} [height] optional block height, defaults to current tip
@@ -1711,14 +1963,14 @@ export declare const NetworkApiFp: (configuration?: Configuration | undefined) =
1711
1963
  * @param {*} [options] Override http request option.
1712
1964
  * @throws {RequiredError}
1713
1965
  */
1714
- inboundAddresses(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<object>>>;
1966
+ inboundAddresses(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<InboundAddressesResponse>>;
1715
1967
  /**
1716
1968
  * Returns the last block information for all chains.
1717
1969
  * @param {number} [height] optional block height, defaults to current tip
1718
1970
  * @param {*} [options] Override http request option.
1719
1971
  * @throws {RequiredError}
1720
1972
  */
1721
- lastblock(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<LastBlock>>>;
1973
+ lastblock(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LastBlockResponse>>;
1722
1974
  /**
1723
1975
  * Returns the last block information for the provided chain.
1724
1976
  * @param {string} chain
@@ -1726,7 +1978,7 @@ export declare const NetworkApiFp: (configuration?: Configuration | undefined) =
1726
1978
  * @param {*} [options] Override http request option.
1727
1979
  * @throws {RequiredError}
1728
1980
  */
1729
- lastblockChain(chain: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<LastBlock>>>;
1981
+ lastblockChain(chain: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LastBlockResponse>>;
1730
1982
  /**
1731
1983
  * Returns network overview statistics.
1732
1984
  * @param {number} [height] optional block height, defaults to current tip
@@ -1775,14 +2027,14 @@ export declare const NetworkApiFactory: (configuration?: Configuration | undefin
1775
2027
  * @param {*} [options] Override http request option.
1776
2028
  * @throws {RequiredError}
1777
2029
  */
1778
- inboundAddresses(height?: number | undefined, options?: any): AxiosPromise<Array<object>>;
2030
+ inboundAddresses(height?: number | undefined, options?: any): AxiosPromise<InboundAddressesResponse>;
1779
2031
  /**
1780
2032
  * Returns the last block information for all chains.
1781
2033
  * @param {number} [height] optional block height, defaults to current tip
1782
2034
  * @param {*} [options] Override http request option.
1783
2035
  * @throws {RequiredError}
1784
2036
  */
1785
- lastblock(height?: number | undefined, options?: any): AxiosPromise<Array<LastBlock>>;
2037
+ lastblock(height?: number | undefined, options?: any): AxiosPromise<LastBlockResponse>;
1786
2038
  /**
1787
2039
  * Returns the last block information for the provided chain.
1788
2040
  * @param {string} chain
@@ -1790,7 +2042,7 @@ export declare const NetworkApiFactory: (configuration?: Configuration | undefin
1790
2042
  * @param {*} [options] Override http request option.
1791
2043
  * @throws {RequiredError}
1792
2044
  */
1793
- lastblockChain(chain: string, height?: number | undefined, options?: any): AxiosPromise<Array<LastBlock>>;
2045
+ lastblockChain(chain: string, height?: number | undefined, options?: any): AxiosPromise<LastBlockResponse>;
1794
2046
  /**
1795
2047
  * Returns network overview statistics.
1796
2048
  * @param {number} [height] optional block height, defaults to current tip
@@ -1844,7 +2096,7 @@ export declare class NetworkApi extends BaseAPI {
1844
2096
  * @throws {RequiredError}
1845
2097
  * @memberof NetworkApi
1846
2098
  */
1847
- inboundAddresses(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
2099
+ inboundAddresses(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundAddressesResponse, any>>;
1848
2100
  /**
1849
2101
  * Returns the last block information for all chains.
1850
2102
  * @param {number} [height] optional block height, defaults to current tip
@@ -1852,7 +2104,7 @@ export declare class NetworkApi extends BaseAPI {
1852
2104
  * @throws {RequiredError}
1853
2105
  * @memberof NetworkApi
1854
2106
  */
1855
- lastblock(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LastBlock[], any>>;
2107
+ lastblock(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LastBlockResponse, any>>;
1856
2108
  /**
1857
2109
  * Returns the last block information for the provided chain.
1858
2110
  * @param {string} chain
@@ -1861,7 +2113,7 @@ export declare class NetworkApi extends BaseAPI {
1861
2113
  * @throws {RequiredError}
1862
2114
  * @memberof NetworkApi
1863
2115
  */
1864
- lastblockChain(chain: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LastBlock[], any>>;
2116
+ lastblockChain(chain: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LastBlockResponse, any>>;
1865
2117
  /**
1866
2118
  * Returns network overview statistics.
1867
2119
  * @param {number} [height] optional block height, defaults to current tip
@@ -1927,7 +2179,7 @@ export declare const NodesApiFp: (configuration?: Configuration | undefined) =>
1927
2179
  * @param {*} [options] Override http request option.
1928
2180
  * @throws {RequiredError}
1929
2181
  */
1930
- nodes(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<Node>>>;
2182
+ nodes(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<NodesResponse>>;
1931
2183
  };
1932
2184
  /**
1933
2185
  * NodesApi - factory interface
@@ -1948,7 +2200,7 @@ export declare const NodesApiFactory: (configuration?: Configuration | undefined
1948
2200
  * @param {*} [options] Override http request option.
1949
2201
  * @throws {RequiredError}
1950
2202
  */
1951
- nodes(height?: number | undefined, options?: any): AxiosPromise<Array<Node>>;
2203
+ nodes(height?: number | undefined, options?: any): AxiosPromise<NodesResponse>;
1952
2204
  };
1953
2205
  /**
1954
2206
  * NodesApi - object-oriented interface
@@ -1973,7 +2225,7 @@ export declare class NodesApi extends BaseAPI {
1973
2225
  * @throws {RequiredError}
1974
2226
  * @memberof NodesApi
1975
2227
  */
1976
- nodes(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Node[], any>>;
2228
+ nodes(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NodesResponse, any>>;
1977
2229
  }
1978
2230
  /**
1979
2231
  * POLApi - axios parameter creator
@@ -2070,7 +2322,7 @@ export declare const PoolsApiFp: (configuration?: Configuration | undefined) =>
2070
2322
  * @param {*} [options] Override http request option.
2071
2323
  * @throws {RequiredError}
2072
2324
  */
2073
- pools(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<Pool>>>;
2325
+ pools(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PoolsResponse>>;
2074
2326
  };
2075
2327
  /**
2076
2328
  * PoolsApi - factory interface
@@ -2091,7 +2343,7 @@ export declare const PoolsApiFactory: (configuration?: Configuration | undefined
2091
2343
  * @param {*} [options] Override http request option.
2092
2344
  * @throws {RequiredError}
2093
2345
  */
2094
- pools(height?: number | undefined, options?: any): AxiosPromise<Array<Pool>>;
2346
+ pools(height?: number | undefined, options?: any): AxiosPromise<PoolsResponse>;
2095
2347
  };
2096
2348
  /**
2097
2349
  * PoolsApi - object-oriented interface
@@ -2116,7 +2368,7 @@ export declare class PoolsApi extends BaseAPI {
2116
2368
  * @throws {RequiredError}
2117
2369
  * @memberof PoolsApi
2118
2370
  */
2119
- pools(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Pool[], any>>;
2371
+ pools(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PoolsResponse, any>>;
2120
2372
  }
2121
2373
  /**
2122
2374
  * QueueApi - axios parameter creator
@@ -2163,14 +2415,14 @@ export declare const QueueApiFp: (configuration?: Configuration | undefined) =>
2163
2415
  * @param {*} [options] Override http request option.
2164
2416
  * @throws {RequiredError}
2165
2417
  */
2166
- queueOutbound(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<TxOutItem>>>;
2418
+ queueOutbound(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OutboundResponse>>;
2167
2419
  /**
2168
2420
  * Returns the scheduled queue.
2169
2421
  * @param {number} [height] optional block height, defaults to current tip
2170
2422
  * @param {*} [options] Override http request option.
2171
2423
  * @throws {RequiredError}
2172
2424
  */
2173
- queueScheduled(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<TxOutItem>>>;
2425
+ queueScheduled(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ScheduledResponse>>;
2174
2426
  };
2175
2427
  /**
2176
2428
  * QueueApi - factory interface
@@ -2190,14 +2442,14 @@ export declare const QueueApiFactory: (configuration?: Configuration | undefined
2190
2442
  * @param {*} [options] Override http request option.
2191
2443
  * @throws {RequiredError}
2192
2444
  */
2193
- queueOutbound(height?: number | undefined, options?: any): AxiosPromise<Array<TxOutItem>>;
2445
+ queueOutbound(height?: number | undefined, options?: any): AxiosPromise<OutboundResponse>;
2194
2446
  /**
2195
2447
  * Returns the scheduled queue.
2196
2448
  * @param {number} [height] optional block height, defaults to current tip
2197
2449
  * @param {*} [options] Override http request option.
2198
2450
  * @throws {RequiredError}
2199
2451
  */
2200
- queueScheduled(height?: number | undefined, options?: any): AxiosPromise<Array<TxOutItem>>;
2452
+ queueScheduled(height?: number | undefined, options?: any): AxiosPromise<ScheduledResponse>;
2201
2453
  };
2202
2454
  /**
2203
2455
  * QueueApi - object-oriented interface
@@ -2221,7 +2473,7 @@ export declare class QueueApi extends BaseAPI {
2221
2473
  * @throws {RequiredError}
2222
2474
  * @memberof QueueApi
2223
2475
  */
2224
- queueOutbound(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TxOutItem[], any>>;
2476
+ queueOutbound(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundResponse, any>>;
2225
2477
  /**
2226
2478
  * Returns the scheduled queue.
2227
2479
  * @param {number} [height] optional block height, defaults to current tip
@@ -2229,7 +2481,103 @@ export declare class QueueApi extends BaseAPI {
2229
2481
  * @throws {RequiredError}
2230
2482
  * @memberof QueueApi
2231
2483
  */
2232
- queueScheduled(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TxOutItem[], any>>;
2484
+ queueScheduled(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ScheduledResponse, any>>;
2485
+ }
2486
+ /**
2487
+ * SaversApi - axios parameter creator
2488
+ * @export
2489
+ */
2490
+ export declare const SaversApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
2491
+ /**
2492
+ * Returns the saver position given then savers pool and address.
2493
+ * @param {string} asset
2494
+ * @param {string} address
2495
+ * @param {number} [height] optional block height, defaults to current tip
2496
+ * @param {*} [options] Override http request option.
2497
+ * @throws {RequiredError}
2498
+ */
2499
+ saver: (asset: string, address: string, height?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2500
+ /**
2501
+ * Returns all savers for the savers pool.
2502
+ * @param {string} asset
2503
+ * @param {number} [height] optional block height, defaults to current tip
2504
+ * @param {*} [options] Override http request option.
2505
+ * @throws {RequiredError}
2506
+ */
2507
+ savers: (asset: string, height?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2508
+ };
2509
+ /**
2510
+ * SaversApi - functional programming interface
2511
+ * @export
2512
+ */
2513
+ export declare const SaversApiFp: (configuration?: Configuration | undefined) => {
2514
+ /**
2515
+ * Returns the saver position given then savers pool and address.
2516
+ * @param {string} asset
2517
+ * @param {string} address
2518
+ * @param {number} [height] optional block height, defaults to current tip
2519
+ * @param {*} [options] Override http request option.
2520
+ * @throws {RequiredError}
2521
+ */
2522
+ saver(asset: string, address: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LiquidityProviderResponse>>;
2523
+ /**
2524
+ * Returns all savers for the savers pool.
2525
+ * @param {string} asset
2526
+ * @param {number} [height] optional block height, defaults to current tip
2527
+ * @param {*} [options] Override http request option.
2528
+ * @throws {RequiredError}
2529
+ */
2530
+ savers(asset: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LiquidityProviderResponse>>;
2531
+ };
2532
+ /**
2533
+ * SaversApi - factory interface
2534
+ * @export
2535
+ */
2536
+ export declare const SaversApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
2537
+ /**
2538
+ * Returns the saver position given then savers pool and address.
2539
+ * @param {string} asset
2540
+ * @param {string} address
2541
+ * @param {number} [height] optional block height, defaults to current tip
2542
+ * @param {*} [options] Override http request option.
2543
+ * @throws {RequiredError}
2544
+ */
2545
+ saver(asset: string, address: string, height?: number | undefined, options?: any): AxiosPromise<LiquidityProviderResponse>;
2546
+ /**
2547
+ * Returns all savers for the savers pool.
2548
+ * @param {string} asset
2549
+ * @param {number} [height] optional block height, defaults to current tip
2550
+ * @param {*} [options] Override http request option.
2551
+ * @throws {RequiredError}
2552
+ */
2553
+ savers(asset: string, height?: number | undefined, options?: any): AxiosPromise<LiquidityProviderResponse>;
2554
+ };
2555
+ /**
2556
+ * SaversApi - object-oriented interface
2557
+ * @export
2558
+ * @class SaversApi
2559
+ * @extends {BaseAPI}
2560
+ */
2561
+ export declare class SaversApi extends BaseAPI {
2562
+ /**
2563
+ * Returns the saver position given then savers pool and address.
2564
+ * @param {string} asset
2565
+ * @param {string} address
2566
+ * @param {number} [height] optional block height, defaults to current tip
2567
+ * @param {*} [options] Override http request option.
2568
+ * @throws {RequiredError}
2569
+ * @memberof SaversApi
2570
+ */
2571
+ saver(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LiquidityProviderResponse, any>>;
2572
+ /**
2573
+ * Returns all savers for the savers pool.
2574
+ * @param {string} asset
2575
+ * @param {number} [height] optional block height, defaults to current tip
2576
+ * @param {*} [options] Override http request option.
2577
+ * @throws {RequiredError}
2578
+ * @memberof SaversApi
2579
+ */
2580
+ savers(asset: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LiquidityProviderResponse, any>>;
2233
2581
  }
2234
2582
  /**
2235
2583
  * TSSApi - axios parameter creator
@@ -2286,7 +2634,7 @@ export declare const TSSApiFp: (configuration?: Configuration | undefined) => {
2286
2634
  * @param {*} [options] Override http request option.
2287
2635
  * @throws {RequiredError}
2288
2636
  */
2289
- keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
2637
+ keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<KeysignResponse>>;
2290
2638
  /**
2291
2639
  * Returns keygen and keysign metrics for current vaults.
2292
2640
  * @param {number} [height] optional block height, defaults to current tip
@@ -2301,7 +2649,7 @@ export declare const TSSApiFp: (configuration?: Configuration | undefined) => {
2301
2649
  * @param {*} [options] Override http request option.
2302
2650
  * @throws {RequiredError}
2303
2651
  */
2304
- metricsKeygen(pubkey: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<object>>>;
2652
+ metricsKeygen(pubkey: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<KeygenMetricsResponse>>;
2305
2653
  };
2306
2654
  /**
2307
2655
  * TSSApi - factory interface
@@ -2322,7 +2670,7 @@ export declare const TSSApiFactory: (configuration?: Configuration | undefined,
2322
2670
  * @param {*} [options] Override http request option.
2323
2671
  * @throws {RequiredError}
2324
2672
  */
2325
- keysignPubkey(height: number, pubkey: string, options?: any): AxiosPromise<void>;
2673
+ keysignPubkey(height: number, pubkey: string, options?: any): AxiosPromise<KeysignResponse>;
2326
2674
  /**
2327
2675
  * Returns keygen and keysign metrics for current vaults.
2328
2676
  * @param {number} [height] optional block height, defaults to current tip
@@ -2337,7 +2685,7 @@ export declare const TSSApiFactory: (configuration?: Configuration | undefined,
2337
2685
  * @param {*} [options] Override http request option.
2338
2686
  * @throws {RequiredError}
2339
2687
  */
2340
- metricsKeygen(pubkey: string, height?: number | undefined, options?: any): AxiosPromise<Array<object>>;
2688
+ metricsKeygen(pubkey: string, height?: number | undefined, options?: any): AxiosPromise<KeygenMetricsResponse>;
2341
2689
  };
2342
2690
  /**
2343
2691
  * TSSApi - object-oriented interface
@@ -2362,7 +2710,7 @@ export declare class TSSApi extends BaseAPI {
2362
2710
  * @throws {RequiredError}
2363
2711
  * @memberof TSSApi
2364
2712
  */
2365
- keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2713
+ keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeysignResponse, any>>;
2366
2714
  /**
2367
2715
  * Returns keygen and keysign metrics for current vaults.
2368
2716
  * @param {number} [height] optional block height, defaults to current tip
@@ -2379,7 +2727,7 @@ export declare class TSSApi extends BaseAPI {
2379
2727
  * @throws {RequiredError}
2380
2728
  * @memberof TSSApi
2381
2729
  */
2382
- metricsKeygen(pubkey: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
2730
+ metricsKeygen(pubkey: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeygenMetricsResponse, any>>;
2383
2731
  }
2384
2732
  /**
2385
2733
  * ThornamesApi - axios parameter creator
@@ -2407,7 +2755,7 @@ export declare const ThornamesApiFp: (configuration?: Configuration | undefined)
2407
2755
  * @param {*} [options] Override http request option.
2408
2756
  * @throws {RequiredError}
2409
2757
  */
2410
- thorname(name: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<object>>>;
2758
+ thorname(name: string, height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ThornameResponse>>;
2411
2759
  };
2412
2760
  /**
2413
2761
  * ThornamesApi - factory interface
@@ -2421,7 +2769,7 @@ export declare const ThornamesApiFactory: (configuration?: Configuration | undef
2421
2769
  * @param {*} [options] Override http request option.
2422
2770
  * @throws {RequiredError}
2423
2771
  */
2424
- thorname(name: string, height?: number | undefined, options?: any): AxiosPromise<Array<object>>;
2772
+ thorname(name: string, height?: number | undefined, options?: any): AxiosPromise<ThornameResponse>;
2425
2773
  };
2426
2774
  /**
2427
2775
  * ThornamesApi - object-oriented interface
@@ -2438,7 +2786,7 @@ export declare class ThornamesApi extends BaseAPI {
2438
2786
  * @throws {RequiredError}
2439
2787
  * @memberof ThornamesApi
2440
2788
  */
2441
- thorname(name: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
2789
+ thorname(name: string, height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ThornameResponse, any>>;
2442
2790
  }
2443
2791
  /**
2444
2792
  * TransactionsApi - axios parameter creator
@@ -2578,7 +2926,7 @@ export declare const VaultsApiFp: (configuration?: Configuration | undefined) =>
2578
2926
  * @param {*} [options] Override http request option.
2579
2927
  * @throws {RequiredError}
2580
2928
  */
2581
- asgard(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<Vault>>>;
2929
+ asgard(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<VaultsResponse>>;
2582
2930
  /**
2583
2931
  * Returns the vault for the provided pubkey.
2584
2932
  * @param {string} pubkey
@@ -2600,7 +2948,7 @@ export declare const VaultsApiFp: (configuration?: Configuration | undefined) =>
2600
2948
  * @param {*} [options] Override http request option.
2601
2949
  * @throws {RequiredError}
2602
2950
  */
2603
- yggdrasil(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<Vault>>>;
2951
+ yggdrasil(height?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<VaultsResponse>>;
2604
2952
  };
2605
2953
  /**
2606
2954
  * VaultsApi - factory interface
@@ -2613,7 +2961,7 @@ export declare const VaultsApiFactory: (configuration?: Configuration | undefine
2613
2961
  * @param {*} [options] Override http request option.
2614
2962
  * @throws {RequiredError}
2615
2963
  */
2616
- asgard(height?: number | undefined, options?: any): AxiosPromise<Array<Vault>>;
2964
+ asgard(height?: number | undefined, options?: any): AxiosPromise<VaultsResponse>;
2617
2965
  /**
2618
2966
  * Returns the vault for the provided pubkey.
2619
2967
  * @param {string} pubkey
@@ -2635,7 +2983,7 @@ export declare const VaultsApiFactory: (configuration?: Configuration | undefine
2635
2983
  * @param {*} [options] Override http request option.
2636
2984
  * @throws {RequiredError}
2637
2985
  */
2638
- yggdrasil(height?: number | undefined, options?: any): AxiosPromise<Array<Vault>>;
2986
+ yggdrasil(height?: number | undefined, options?: any): AxiosPromise<VaultsResponse>;
2639
2987
  };
2640
2988
  /**
2641
2989
  * VaultsApi - object-oriented interface
@@ -2651,7 +2999,7 @@ export declare class VaultsApi extends BaseAPI {
2651
2999
  * @throws {RequiredError}
2652
3000
  * @memberof VaultsApi
2653
3001
  */
2654
- asgard(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Vault[], any>>;
3002
+ asgard(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<VaultsResponse, any>>;
2655
3003
  /**
2656
3004
  * Returns the vault for the provided pubkey.
2657
3005
  * @param {string} pubkey
@@ -2676,5 +3024,5 @@ export declare class VaultsApi extends BaseAPI {
2676
3024
  * @throws {RequiredError}
2677
3025
  * @memberof VaultsApi
2678
3026
  */
2679
- yggdrasil(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Vault[], any>>;
3027
+ yggdrasil(height?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<VaultsResponse, any>>;
2680
3028
  }