zklighter-perps 1.0.189 → 1.0.190

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.
@@ -65,6 +65,8 @@ models/Fundings.ts
65
65
  models/GeckoContract.ts
66
66
  models/GeckoContracts.ts
67
67
  models/GeckoOrderbook.ts
68
+ models/GeckoTicker.ts
69
+ models/GeckoTickers.ts
68
70
  models/IsWhitelisted.ts
69
71
  models/L1Metadata.ts
70
72
  models/L1ProviderInfo.ts
@@ -1418,6 +1418,7 @@ export const PublicPoolsMetadataFilterEnum = {
1418
1418
  All: 'all',
1419
1419
  User: 'user',
1420
1420
  Protocol: 'protocol',
1421
- AccountIndex: 'account_index'
1421
+ AccountIndex: 'account_index',
1422
+ Stake: 'stake'
1422
1423
  } as const;
1423
1424
  export type PublicPoolsMetadataFilterEnum = typeof PublicPoolsMetadataFilterEnum[keyof typeof PublicPoolsMetadataFilterEnum];
package/apis/GeckoApi.ts CHANGED
@@ -17,6 +17,7 @@ import * as runtime from '../runtime';
17
17
  import type {
18
18
  GeckoContracts,
19
19
  GeckoOrderbook,
20
+ GeckoTickers,
20
21
  ResultCode,
21
22
  } from '../models/index';
22
23
  import {
@@ -24,6 +25,8 @@ import {
24
25
  GeckoContractsToJSON,
25
26
  GeckoOrderbookFromJSON,
26
27
  GeckoOrderbookToJSON,
28
+ GeckoTickersFromJSON,
29
+ GeckoTickersToJSON,
27
30
  ResultCodeFromJSON,
28
31
  ResultCodeToJSON,
29
32
  } from '../models/index';
@@ -37,6 +40,10 @@ export interface GeckoOrderbookRequest {
37
40
  ticker_id: string;
38
41
  }
39
42
 
43
+ export interface GeckoTickersRequest {
44
+ auth: string;
45
+ }
46
+
40
47
  /**
41
48
  *
42
49
  */
@@ -131,4 +138,43 @@ export class GeckoApi extends runtime.BaseAPI {
131
138
  return await response.value();
132
139
  }
133
140
 
141
+ /**
142
+ * Coin Gecko Spot Tickers
143
+ * gecko_tickers
144
+ */
145
+ async geckoTickersRaw(requestParameters: GeckoTickersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GeckoTickers>> {
146
+ if (requestParameters['auth'] == null) {
147
+ throw new runtime.RequiredError(
148
+ 'auth',
149
+ 'Required parameter "auth" was null or undefined when calling geckoTickers().'
150
+ );
151
+ }
152
+
153
+ const queryParameters: any = {};
154
+
155
+ const headerParameters: runtime.HTTPHeaders = {};
156
+
157
+ if (requestParameters['auth'] != null) {
158
+ headerParameters['auth'] = String(requestParameters['auth']);
159
+ }
160
+
161
+ const response = await this.request({
162
+ path: `/api/v1/gecko/tickers`,
163
+ method: 'GET',
164
+ headers: headerParameters,
165
+ query: queryParameters,
166
+ }, initOverrides);
167
+
168
+ return new runtime.JSONApiResponse(response, (jsonValue) => GeckoTickersFromJSON(jsonValue));
169
+ }
170
+
171
+ /**
172
+ * Coin Gecko Spot Tickers
173
+ * gecko_tickers
174
+ */
175
+ async geckoTickers(requestParameters: GeckoTickersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GeckoTickers> {
176
+ const response = await this.geckoTickersRaw(requestParameters, initOverrides);
177
+ return await response.value();
178
+ }
179
+
134
180
  }
@@ -0,0 +1,151 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ *
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document:
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface GeckoTicker
20
+ */
21
+ export interface GeckoTicker {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof GeckoTicker
26
+ */
27
+ ticker_id: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof GeckoTicker
32
+ */
33
+ base_currency: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof GeckoTicker
38
+ */
39
+ target_currency: string;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof GeckoTicker
44
+ */
45
+ last_price: number;
46
+ /**
47
+ *
48
+ * @type {number}
49
+ * @memberof GeckoTicker
50
+ */
51
+ base_volume: number;
52
+ /**
53
+ *
54
+ * @type {number}
55
+ * @memberof GeckoTicker
56
+ */
57
+ target_volume: number;
58
+ /**
59
+ *
60
+ * @type {string}
61
+ * @memberof GeckoTicker
62
+ */
63
+ pool_id: string;
64
+ /**
65
+ *
66
+ * @type {number}
67
+ * @memberof GeckoTicker
68
+ */
69
+ bid: number;
70
+ /**
71
+ *
72
+ * @type {number}
73
+ * @memberof GeckoTicker
74
+ */
75
+ ask: number;
76
+ /**
77
+ *
78
+ * @type {number}
79
+ * @memberof GeckoTicker
80
+ */
81
+ high: number;
82
+ /**
83
+ *
84
+ * @type {number}
85
+ * @memberof GeckoTicker
86
+ */
87
+ low: number;
88
+ }
89
+
90
+ /**
91
+ * Check if a given object implements the GeckoTicker interface.
92
+ */
93
+ export function instanceOfGeckoTicker(value: object): value is GeckoTicker {
94
+ if (!('ticker_id' in value) || value['ticker_id'] === undefined) return false;
95
+ if (!('base_currency' in value) || value['base_currency'] === undefined) return false;
96
+ if (!('target_currency' in value) || value['target_currency'] === undefined) return false;
97
+ if (!('last_price' in value) || value['last_price'] === undefined) return false;
98
+ if (!('base_volume' in value) || value['base_volume'] === undefined) return false;
99
+ if (!('target_volume' in value) || value['target_volume'] === undefined) return false;
100
+ if (!('pool_id' in value) || value['pool_id'] === undefined) return false;
101
+ if (!('bid' in value) || value['bid'] === undefined) return false;
102
+ if (!('ask' in value) || value['ask'] === undefined) return false;
103
+ if (!('high' in value) || value['high'] === undefined) return false;
104
+ if (!('low' in value) || value['low'] === undefined) return false;
105
+ return true;
106
+ }
107
+
108
+ export function GeckoTickerFromJSON(json: any): GeckoTicker {
109
+ return GeckoTickerFromJSONTyped(json, false);
110
+ }
111
+
112
+ export function GeckoTickerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeckoTicker {
113
+ if (json == null) {
114
+ return json;
115
+ }
116
+ return {
117
+
118
+ 'ticker_id': json['ticker_id'],
119
+ 'base_currency': json['base_currency'],
120
+ 'target_currency': json['target_currency'],
121
+ 'last_price': json['last_price'],
122
+ 'base_volume': json['base_volume'],
123
+ 'target_volume': json['target_volume'],
124
+ 'pool_id': json['pool_id'],
125
+ 'bid': json['bid'],
126
+ 'ask': json['ask'],
127
+ 'high': json['high'],
128
+ 'low': json['low'],
129
+ };
130
+ }
131
+
132
+ export function GeckoTickerToJSON(value?: GeckoTicker | null): any {
133
+ if (value == null) {
134
+ return value;
135
+ }
136
+ return {
137
+
138
+ 'ticker_id': value['ticker_id'],
139
+ 'base_currency': value['base_currency'],
140
+ 'target_currency': value['target_currency'],
141
+ 'last_price': value['last_price'],
142
+ 'base_volume': value['base_volume'],
143
+ 'target_volume': value['target_volume'],
144
+ 'pool_id': value['pool_id'],
145
+ 'bid': value['bid'],
146
+ 'ask': value['ask'],
147
+ 'high': value['high'],
148
+ 'low': value['low'],
149
+ };
150
+ }
151
+
@@ -0,0 +1,68 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ *
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document:
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { GeckoTicker } from './GeckoTicker';
17
+ import {
18
+ GeckoTickerFromJSON,
19
+ GeckoTickerFromJSONTyped,
20
+ GeckoTickerToJSON,
21
+ } from './GeckoTicker';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GeckoTickers
27
+ */
28
+ export interface GeckoTickers {
29
+ /**
30
+ *
31
+ * @type {Array<GeckoTicker>}
32
+ * @memberof GeckoTickers
33
+ */
34
+ tickers: Array<GeckoTicker>;
35
+ }
36
+
37
+ /**
38
+ * Check if a given object implements the GeckoTickers interface.
39
+ */
40
+ export function instanceOfGeckoTickers(value: object): value is GeckoTickers {
41
+ if (!('tickers' in value) || value['tickers'] === undefined) return false;
42
+ return true;
43
+ }
44
+
45
+ export function GeckoTickersFromJSON(json: any): GeckoTickers {
46
+ return GeckoTickersFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function GeckoTickersFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeckoTickers {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'tickers': ((json['tickers'] as Array<any>).map(GeckoTickerFromJSON)),
56
+ };
57
+ }
58
+
59
+ export function GeckoTickersToJSON(value?: GeckoTickers | null): any {
60
+ if (value == null) {
61
+ return value;
62
+ }
63
+ return {
64
+
65
+ 'tickers': ((value['tickers'] as Array<any>).map(GeckoTickerToJSON)),
66
+ };
67
+ }
68
+
@@ -32,11 +32,17 @@ export interface PublicPoolShare {
32
32
  */
33
33
  shares_amount: number;
34
34
  /**
35
- *
35
+ * For public pools and insurance fund
36
36
  * @type {string}
37
37
  * @memberof PublicPoolShare
38
38
  */
39
39
  entry_usdc: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof PublicPoolShare
44
+ */
45
+ principal_amount: string;
40
46
  }
41
47
 
42
48
  /**
@@ -46,6 +52,7 @@ export function instanceOfPublicPoolShare(value: object): value is PublicPoolSha
46
52
  if (!('public_pool_index' in value) || value['public_pool_index'] === undefined) return false;
47
53
  if (!('shares_amount' in value) || value['shares_amount'] === undefined) return false;
48
54
  if (!('entry_usdc' in value) || value['entry_usdc'] === undefined) return false;
55
+ if (!('principal_amount' in value) || value['principal_amount'] === undefined) return false;
49
56
  return true;
50
57
  }
51
58
 
@@ -62,6 +69,7 @@ export function PublicPoolShareFromJSONTyped(json: any, ignoreDiscriminator: boo
62
69
  'public_pool_index': json['public_pool_index'],
63
70
  'shares_amount': json['shares_amount'],
64
71
  'entry_usdc': json['entry_usdc'],
72
+ 'principal_amount': json['principal_amount'],
65
73
  };
66
74
  }
67
75
 
@@ -74,6 +82,7 @@ export function PublicPoolShareToJSON(value?: PublicPoolShare | null): any {
74
82
  'public_pool_index': value['public_pool_index'],
75
83
  'shares_amount': value['shares_amount'],
76
84
  'entry_usdc': value['entry_usdc'],
85
+ 'principal_amount': value['principal_amount'],
77
86
  };
78
87
  }
79
88
 
@@ -59,7 +59,8 @@ export const ReqGetPublicPoolsMetadataFilterEnum = {
59
59
  All: 'all',
60
60
  User: 'user',
61
61
  Protocol: 'protocol',
62
- AccountIndex: 'account_index'
62
+ AccountIndex: 'account_index',
63
+ Stake: 'stake'
63
64
  } as const;
64
65
  export type ReqGetPublicPoolsMetadataFilterEnum = typeof ReqGetPublicPoolsMetadataFilterEnum[keyof typeof ReqGetPublicPoolsMetadataFilterEnum];
65
66
 
@@ -110,7 +110,11 @@ export const TransferHistoryItemTypeEnum = {
110
110
  L2BurnSharesOutflow: 'L2BurnSharesOutflow',
111
111
  L2MintSharesInflow: 'L2MintSharesInflow',
112
112
  L2MintSharesOutflow: 'L2MintSharesOutflow',
113
- L2SelfTransfer: 'L2SelfTransfer'
113
+ L2SelfTransfer: 'L2SelfTransfer',
114
+ L2StakeAssetInflow: 'L2StakeAssetInflow',
115
+ L2StakeAssetOutflow: 'L2StakeAssetOutflow',
116
+ L2UnstakeAssetInflow: 'L2UnstakeAssetInflow',
117
+ L2UnstakeAssetOutflow: 'L2UnstakeAssetOutflow'
114
118
  } as const;
115
119
  export type TransferHistoryItemTypeEnum = typeof TransferHistoryItemTypeEnum[keyof typeof TransferHistoryItemTypeEnum];
116
120
 
package/models/index.ts CHANGED
@@ -51,6 +51,8 @@ export * from './Fundings';
51
51
  export * from './GeckoContract';
52
52
  export * from './GeckoContracts';
53
53
  export * from './GeckoOrderbook';
54
+ export * from './GeckoTicker';
55
+ export * from './GeckoTickers';
54
56
  export * from './IsWhitelisted';
55
57
  export * from './L1Metadata';
56
58
  export * from './L1ProviderInfo';
package/openapi.json CHANGED
@@ -1698,6 +1698,38 @@
1698
1698
  "description": "Coin Gecko Orderbook"
1699
1699
  }
1700
1700
  },
1701
+ "/api/v1/gecko/tickers": {
1702
+ "get": {
1703
+ "summary": "gecko_tickers",
1704
+ "operationId": "gecko_tickers",
1705
+ "responses": {
1706
+ "200": {
1707
+ "description": "A successful response.",
1708
+ "schema": {
1709
+ "$ref": "#/definitions/GeckoTickers"
1710
+ }
1711
+ },
1712
+ "400": {
1713
+ "description": "Bad request",
1714
+ "schema": {
1715
+ "$ref": "#/definitions/ResultCode"
1716
+ }
1717
+ }
1718
+ },
1719
+ "parameters": [
1720
+ {
1721
+ "name": "auth",
1722
+ "in": "header",
1723
+ "required": true,
1724
+ "type": "string"
1725
+ }
1726
+ ],
1727
+ "tags": [
1728
+ "gecko"
1729
+ ],
1730
+ "description": "Coin Gecko Spot Tickers"
1731
+ }
1732
+ },
1701
1733
  "/api/v1/geoLocation": {
1702
1734
  "get": {
1703
1735
  "summary": "geoLocation",
@@ -2429,7 +2461,8 @@
2429
2461
  "all",
2430
2462
  "user",
2431
2463
  "protocol",
2432
- "account_index"
2464
+ "account_index",
2465
+ "stake"
2433
2466
  ]
2434
2467
  },
2435
2468
  {
@@ -5830,6 +5863,80 @@
5830
5863
  "asks"
5831
5864
  ]
5832
5865
  },
5866
+ "GeckoTicker": {
5867
+ "type": "object",
5868
+ "properties": {
5869
+ "ticker_id": {
5870
+ "type": "string"
5871
+ },
5872
+ "base_currency": {
5873
+ "type": "string"
5874
+ },
5875
+ "target_currency": {
5876
+ "type": "string"
5877
+ },
5878
+ "last_price": {
5879
+ "type": "number",
5880
+ "format": "double"
5881
+ },
5882
+ "base_volume": {
5883
+ "type": "number",
5884
+ "format": "double"
5885
+ },
5886
+ "target_volume": {
5887
+ "type": "number",
5888
+ "format": "double"
5889
+ },
5890
+ "pool_id": {
5891
+ "type": "string"
5892
+ },
5893
+ "bid": {
5894
+ "type": "number",
5895
+ "format": "double"
5896
+ },
5897
+ "ask": {
5898
+ "type": "number",
5899
+ "format": "double"
5900
+ },
5901
+ "high": {
5902
+ "type": "number",
5903
+ "format": "double"
5904
+ },
5905
+ "low": {
5906
+ "type": "number",
5907
+ "format": "double"
5908
+ }
5909
+ },
5910
+ "title": "GeckoTicker",
5911
+ "required": [
5912
+ "ticker_id",
5913
+ "base_currency",
5914
+ "target_currency",
5915
+ "last_price",
5916
+ "base_volume",
5917
+ "target_volume",
5918
+ "pool_id",
5919
+ "bid",
5920
+ "ask",
5921
+ "high",
5922
+ "low"
5923
+ ]
5924
+ },
5925
+ "GeckoTickers": {
5926
+ "type": "object",
5927
+ "properties": {
5928
+ "tickers": {
5929
+ "type": "array",
5930
+ "items": {
5931
+ "$ref": "#/definitions/GeckoTicker"
5932
+ }
5933
+ }
5934
+ },
5935
+ "title": "GeckoTickers",
5936
+ "required": [
5937
+ "tickers"
5938
+ ]
5939
+ },
5833
5940
  "IsWhitelisted": {
5834
5941
  "type": "object",
5835
5942
  "properties": {
@@ -7414,6 +7521,11 @@
7414
7521
  "example": "3000"
7415
7522
  },
7416
7523
  "entry_usdc": {
7524
+ "type": "string",
7525
+ "example": "3000",
7526
+ "description": " For public pools and insurance fund"
7527
+ },
7528
+ "principal_amount": {
7417
7529
  "type": "string",
7418
7530
  "example": "3000"
7419
7531
  }
@@ -7422,7 +7534,8 @@
7422
7534
  "required": [
7423
7535
  "public_pool_index",
7424
7536
  "shares_amount",
7425
- "entry_usdc"
7537
+ "entry_usdc",
7538
+ "principal_amount"
7426
7539
  ]
7427
7540
  },
7428
7541
  "ReferralCode": {
@@ -8275,6 +8388,10 @@
8275
8388
  "ticker_id"
8276
8389
  ]
8277
8390
  },
8391
+ "ReqGetGeckoTickers": {
8392
+ "type": "object",
8393
+ "title": "ReqGetGeckoTickers"
8394
+ },
8278
8395
  "ReqGetL1Metadata": {
8279
8396
  "type": "object",
8280
8397
  "properties": {
@@ -8505,7 +8622,8 @@
8505
8622
  "all",
8506
8623
  "user",
8507
8624
  "protocol",
8508
- "account_index"
8625
+ "account_index",
8626
+ "stake"
8509
8627
  ]
8510
8628
  },
8511
8629
  "index": {
@@ -10116,7 +10234,11 @@
10116
10234
  "L2BurnSharesOutflow",
10117
10235
  "L2MintSharesInflow",
10118
10236
  "L2MintSharesOutflow",
10119
- "L2SelfTransfer"
10237
+ "L2SelfTransfer",
10238
+ "L2StakeAssetInflow",
10239
+ "L2StakeAssetOutflow",
10240
+ "L2UnstakeAssetInflow",
10241
+ "L2UnstakeAssetOutflow"
10120
10242
  ]
10121
10243
  },
10122
10244
  "from_l1_address": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zklighter-perps",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "description": "zkLighter Perps SDK",
5
5
  "main": "index.ts",
6
6
  "directories": {