lighter-sdk 0.1.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. lighter/__init__.py +140 -0
  2. lighter/api/__init__.py +11 -0
  3. lighter/api/account_api.py +2371 -0
  4. lighter/api/block_api.py +863 -0
  5. lighter/api/candlestick_api.py +718 -0
  6. lighter/api/info_api.py +282 -0
  7. lighter/api/order_api.py +2734 -0
  8. lighter/api/root_api.py +529 -0
  9. lighter/api/transaction_api.py +3525 -0
  10. lighter/api_client.py +784 -0
  11. lighter/api_response.py +21 -0
  12. lighter/configuration.py +475 -0
  13. lighter/exceptions.py +199 -0
  14. lighter/models/__init__.py +112 -0
  15. lighter/models/account.py +110 -0
  16. lighter/models/account_api_keys.py +104 -0
  17. lighter/models/account_market_stats.py +98 -0
  18. lighter/models/account_metadata.py +94 -0
  19. lighter/models/account_pn_l.py +106 -0
  20. lighter/models/account_position.py +112 -0
  21. lighter/models/account_stats.py +102 -0
  22. lighter/models/accounts.py +106 -0
  23. lighter/models/api_key.py +98 -0
  24. lighter/models/block.py +124 -0
  25. lighter/models/blocks.py +106 -0
  26. lighter/models/bridge_supported_network.py +96 -0
  27. lighter/models/candlestick.py +106 -0
  28. lighter/models/candlesticks.py +106 -0
  29. lighter/models/contract_address.py +94 -0
  30. lighter/models/current_height.py +96 -0
  31. lighter/models/cursor.py +92 -0
  32. lighter/models/deposit_history.py +106 -0
  33. lighter/models/deposit_history_item.py +105 -0
  34. lighter/models/detailed_account.py +152 -0
  35. lighter/models/detailed_accounts.py +106 -0
  36. lighter/models/detailed_candlestick.py +108 -0
  37. lighter/models/enriched_tx.py +129 -0
  38. lighter/models/exchange_stats.py +110 -0
  39. lighter/models/fee_bucket.py +96 -0
  40. lighter/models/funding.py +98 -0
  41. lighter/models/fundings.py +106 -0
  42. lighter/models/is_whitelisted.py +98 -0
  43. lighter/models/l1_provider_info.py +98 -0
  44. lighter/models/layer2_basic_info.py +100 -0
  45. lighter/models/liquidation.py +100 -0
  46. lighter/models/market_info.py +116 -0
  47. lighter/models/next_nonce.py +96 -0
  48. lighter/models/order.py +159 -0
  49. lighter/models/order_book.py +119 -0
  50. lighter/models/order_book_depth.py +115 -0
  51. lighter/models/order_book_detail.py +151 -0
  52. lighter/models/order_book_details.py +104 -0
  53. lighter/models/order_book_orders.py +117 -0
  54. lighter/models/order_book_stats.py +102 -0
  55. lighter/models/order_books.py +104 -0
  56. lighter/models/orders.py +106 -0
  57. lighter/models/pn_l_entry.py +94 -0
  58. lighter/models/position_funding.py +111 -0
  59. lighter/models/price_level.py +94 -0
  60. lighter/models/public_pool.py +128 -0
  61. lighter/models/public_pool_info.py +100 -0
  62. lighter/models/public_pool_share.py +96 -0
  63. lighter/models/public_pools.py +106 -0
  64. lighter/models/req_get_account.py +101 -0
  65. lighter/models/req_get_account_active_orders.py +96 -0
  66. lighter/models/req_get_account_api_keys.py +94 -0
  67. lighter/models/req_get_account_by_l1_address.py +92 -0
  68. lighter/models/req_get_account_inactive_orders.py +103 -0
  69. lighter/models/req_get_account_orders.py +99 -0
  70. lighter/models/req_get_account_pending_txs.py +106 -0
  71. lighter/models/req_get_account_pn_l.py +118 -0
  72. lighter/models/req_get_account_txs.py +111 -0
  73. lighter/models/req_get_block.py +101 -0
  74. lighter/models/req_get_block_txs.py +101 -0
  75. lighter/models/req_get_by_account.py +101 -0
  76. lighter/models/req_get_candlesticks.py +109 -0
  77. lighter/models/req_get_deposit_history.py +106 -0
  78. lighter/models/req_get_fee_bucket.py +92 -0
  79. lighter/models/req_get_fundings.py +107 -0
  80. lighter/models/req_get_l1_tx.py +92 -0
  81. lighter/models/req_get_latest_deposit.py +92 -0
  82. lighter/models/req_get_next_nonce.py +94 -0
  83. lighter/models/req_get_order_book_details.py +92 -0
  84. lighter/models/req_get_order_book_orders.py +95 -0
  85. lighter/models/req_get_order_books.py +92 -0
  86. lighter/models/req_get_public_pools.py +109 -0
  87. lighter/models/req_get_range_with_cursor.py +95 -0
  88. lighter/models/req_get_range_with_index.py +95 -0
  89. lighter/models/req_get_range_with_index_sortable.py +107 -0
  90. lighter/models/req_get_recent_trades.py +95 -0
  91. lighter/models/req_get_trades.py +126 -0
  92. lighter/models/req_get_tx.py +101 -0
  93. lighter/models/req_get_withdraw_history.py +106 -0
  94. lighter/models/req_is_whitelisted.py +92 -0
  95. lighter/models/result_code.py +94 -0
  96. lighter/models/simple_order.py +102 -0
  97. lighter/models/status.py +94 -0
  98. lighter/models/sub_accounts.py +106 -0
  99. lighter/models/ticker.py +103 -0
  100. lighter/models/trade.py +125 -0
  101. lighter/models/trades.py +106 -0
  102. lighter/models/tx.py +121 -0
  103. lighter/models/tx_hash.py +96 -0
  104. lighter/models/tx_hashes.py +96 -0
  105. lighter/models/txs.py +104 -0
  106. lighter/models/validator_info.py +94 -0
  107. lighter/models/withdraw_history.py +110 -0
  108. lighter/models/withdraw_history_cursor.py +94 -0
  109. lighter/models/withdraw_history_item.py +114 -0
  110. lighter/models/zk_lighter_info.py +92 -0
  111. lighter/py.typed +0 -0
  112. lighter/rest.py +215 -0
  113. lighter/signer_client.py +440 -0
  114. lighter/signers/signer-amd64.so +0 -0
  115. lighter/signers/signer-arm64.dylib +0 -0
  116. lighter/transactions/__init__.py +3 -0
  117. lighter/transactions/cancel_order.py +27 -0
  118. lighter/transactions/create_order.py +33 -0
  119. lighter/transactions/withdraw.py +25 -0
  120. lighter/ws_client.py +160 -0
  121. lighter_sdk-0.1.0.dist-info/LICENSE +201 -0
  122. lighter_sdk-0.1.0.dist-info/METADATA +26 -0
  123. lighter_sdk-0.1.0.dist-info/RECORD +125 -0
  124. lighter_sdk-0.1.0.dist-info/WHEEL +5 -0
  125. lighter_sdk-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.2
2
+ Name: lighter-sdk
3
+ Version: 0.1.0
4
+ Home-page:
5
+ Author: OpenAPI Generator community
6
+ Author-email: team@openapitools.org
7
+ Keywords: OpenAPI,OpenAPI-Generator,
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: urllib3<2.1.0,>=1.25.3
11
+ Requires-Dist: python-dateutil
12
+ Requires-Dist: aiohttp>=3.0.0
13
+ Requires-Dist: aiohttp-retry>=2.8.3
14
+ Requires-Dist: pydantic>=2
15
+ Requires-Dist: typing-extensions>=4.7.1
16
+ Requires-Dist: websockets>=12.0.0
17
+ Requires-Dist: eth-account>=0.13.4
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: keywords
23
+ Dynamic: requires-dist
24
+
25
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
26
+
@@ -0,0 +1,125 @@
1
+ lighter/__init__.py,sha256=6CWlKsdP_J7NerSTf6OSfZ8iE9NtUXJWpnrYKipXDlc,6790
2
+ lighter/api_client.py,sha256=0EUxxNA2QCxH4IgnB2PiAep1LJr0-oiqHoAhSzin2HM,26856
3
+ lighter/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ lighter/configuration.py,sha256=2cEqVo1sQkfhfDHnSLB2rcXw42hl1TQDvdK1utYplEQ,15657
5
+ lighter/exceptions.py,sha256=OoCylMJIbVwDG7xH74pChKbSUD8ulSF4K6aA90iH6dQ,5960
6
+ lighter/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ lighter/rest.py,sha256=z2JcrDGoyRw0GMks790vIa2L4jx4F8GmYR4uRsnicik,6857
8
+ lighter/signer_client.py,sha256=6KAvhY0yRUZxkc2UJxu9KJQakF5B2HZW5chA_0g207I,15782
9
+ lighter/ws_client.py,sha256=qNaaCkhp6efAtqd2UsYl2WAhfyTLnRgn3TZN8HcR8hY,5627
10
+ lighter/api/__init__.py,sha256=2_9TIGRo5NpG-KKJRnAsdkJKhK1_-rUAvyHdh6g11fs,373
11
+ lighter/api/account_api.py,sha256=5d7o-2c7bC4_1V16-GxspHZBJX15vD7DxBz2gRfN9ek,88938
12
+ lighter/api/block_api.py,sha256=MHctBxOsOEcwYUYJQNjKYshOu8AL1Db6jJHMc2kDcTE,31114
13
+ lighter/api/candlestick_api.py,sha256=-jMgxvz9O2aeBQPyapWzO89TSxkbq43Og66YJqb-bi0,26044
14
+ lighter/api/info_api.py,sha256=gyKCDGDwj2aYInZCKAxzvu6V7Y-CUTJ5Ce9XB0SNNeY,10584
15
+ lighter/api/order_api.py,sha256=dVWZ3A-nS9lTniwN_6hLUw3hQ5zVRj5F8C4rUVpitz4,101841
16
+ lighter/api/root_api.py,sha256=8t99dc928Cd35n3JEGEcrxMvZU2PNopz9FuMfTtIfbw,19387
17
+ lighter/api/transaction_api.py,sha256=mcAytIyIvkroOd8PigE6vw993mRJD5miPraKx_UOnPQ,129364
18
+ lighter/models/__init__.py,sha256=EEk_Ld-X7y-tQrSx3cpM7VZK_QFLnpp1ScmWD9zBbxI,5888
19
+ lighter/models/account.py,sha256=UjtPTiUUYNDeik2bQ1TV3KzzNxvX5yUGnD47DKxtKP0,3565
20
+ lighter/models/account_api_keys.py,sha256=La5ECI2pmRBJvfwdLOLxZjFosM234iZOP-Ny177vMKo,3347
21
+ lighter/models/account_market_stats.py,sha256=0oIrc0pW4bhol6J5TbOOQzVM9bQQNSXwAj9GSC5vQMc,3224
22
+ lighter/models/account_metadata.py,sha256=KdigaMroabxXnvZzQ3qmqsY74Qomtk-zc7PjSKAIlQM,2815
23
+ lighter/models/account_pn_l.py,sha256=F5-I8lUv318pxZ_xtUFh9CtLtcQ7NkOFtwqb05xlvpE,3380
24
+ lighter/models/account_position.py,sha256=XY0M1tk_Ex67xwzmEzIcfx6TsBklWHry2qDLDoCUPCM,3767
25
+ lighter/models/account_stats.py,sha256=12dHaBM5O-Tsj27LespIamDx986c8u_Kj6SkqdEiQS0,3232
26
+ lighter/models/accounts.py,sha256=KMFyn5H6IvVs9Kt7O1vtxzxb8qttG3XYQiym2BvrSDg,3389
27
+ lighter/models/api_key.py,sha256=mEq_2xh-RZ0vV6jPiKhSMGURiiUZmJzm_ymvVQQVPx0,2983
28
+ lighter/models/block.py,sha256=2OCbSA1W0ShPdCqqwCKI-Sk66SepNs64Xb1ZKMHOFK0,4335
29
+ lighter/models/blocks.py,sha256=CrfsfNfXTB7ofYzr09hleIf7IlrGRQlll4KaoX7jsrs,3353
30
+ lighter/models/bridge_supported_network.py,sha256=zqeyl0e9uJ3USapn-J7bG7JVJ5jTMbSm6WCLoHMI5O4,2919
31
+ lighter/models/candlestick.py,sha256=lHLkOiwWe4SJjrsIM3p6GVkdC8nqPvkW0sgJZ6XYrxY,3377
32
+ lighter/models/candlesticks.py,sha256=BxZXYckXRnsAckeNN02ZSOasG9Ycseu3KxvYNjAejtI,3481
33
+ lighter/models/contract_address.py,sha256=eQnxM74nLKbWWejwebHmzmdz7DJHOBk8TSGoXKCJR5U,2799
34
+ lighter/models/current_height.py,sha256=fR81KMqcpmU_ErWgQkEA_xyIw6PrGlRGLWSFt9ZtgPU,2900
35
+ lighter/models/cursor.py,sha256=xuECezTiuqCxcP-RUA1shO7HgMrcfZzn2plWYzg8Ayk,2732
36
+ lighter/models/deposit_history.py,sha256=KorGc-ClM-TeSEgunDwmpAscmWuZjb9IaCGd8eJcoNs,3469
37
+ lighter/models/deposit_history_item.py,sha256=NGgVnL2EiWcdtAIJUUs5Q_Qb3Pb846OBU32F7T0sSNo,3275
38
+ lighter/models/detailed_account.py,sha256=MMzPO0EOlEDT_vyeSkSSsMZtCwud-d0p_tDSezLsShk,5964
39
+ lighter/models/detailed_accounts.py,sha256=57udZtd8UVCkFDh4Ta0-_BeBOlOB4kDXmGi1GQ0PFyc,3462
40
+ lighter/models/detailed_candlestick.py,sha256=sX1__AQ7vIq88TqMliqDHqjHJQZu9kTAN_AUSEs_bRM,3510
41
+ lighter/models/enriched_tx.py,sha256=pYJW7-k-Hp99h2EKoo_S0nboU5hJtlK0UE5E3UYzmQU,4378
42
+ lighter/models/exchange_stats.py,sha256=NMJ9HPuaUoUT7XvxpTQ7pUv9Qyvrvb62rQkgqdBP3mQ,3790
43
+ lighter/models/fee_bucket.py,sha256=S0WCy3heu6vTmj9XNGC8W5g1fww1LNlP0NihYo-ae3c,2878
44
+ lighter/models/funding.py,sha256=BnOZPMWSoVdIRGRb45zCErfgKIbAv2MxGY8vxeKQjew,2932
45
+ lighter/models/fundings.py,sha256=UCnnuNdgY0lvZ49sTzopeIiQFG7xFooMOZKgudy2K6I,3409
46
+ lighter/models/is_whitelisted.py,sha256=qVuXBWwXp4chOrmJU0uwGXJG3SK97gMyjeVtJuqZ8_g,3058
47
+ lighter/models/l1_provider_info.py,sha256=KemSuIr1niTf8zHeMzYDhu7iv8kgcQz-bV9lZa3q1mA,3158
48
+ lighter/models/layer2_basic_info.py,sha256=HZu3fNan5Zrb95omyyloTMmEtVxGb7xWGn6xvd0vTGw,3192
49
+ lighter/models/liquidation.py,sha256=dQ0myTFb8w2SSlzSTsFNuFjqFUXnKdlZkz7wfH4Ngac,3197
50
+ lighter/models/market_info.py,sha256=Vmb6UWC-LnMC8GtPNmb6amkh38LwgzBazMWKjEyXXsM,4216
51
+ lighter/models/next_nonce.py,sha256=TA7cSZNzmzKVSMd4WNNW2nMgQ33cK2EXm1DQTjHKG_A,2876
52
+ lighter/models/order.py,sha256=bvq8JWcjm_1pKVE_N09nTcEo43po7gftAc755p67iHg,6707
53
+ lighter/models/order_book.py,sha256=XDu-lIRSPGVL0__GkwB9CsEDmKFnh0veW2us6wczGnE,4077
54
+ lighter/models/order_book_depth.py,sha256=49JGV20BZ2a6hq_bJVZMEUnog0tUwziYDxOapZNWq_s,3845
55
+ lighter/models/order_book_detail.py,sha256=xuemzQ7Mpz23GuHz5CQ34Py7gn1YKclCABAVlaghpXo,6306
56
+ lighter/models/order_book_details.py,sha256=-CWElxxTkQWvAAKF68_hqjdwtyRgWj61HiiWzvpFyAM,3484
57
+ lighter/models/order_book_orders.py,sha256=SItINRfcRcZgXuHnzAX8G6P_SaeGXPiEdQ0PgrwRoFY,3961
58
+ lighter/models/order_book_stats.py,sha256=7s2NugO2YvKFWntScj78nBslG2s16Q6c0hnaex9WFmk,3477
59
+ lighter/models/order_books.py,sha256=Iwq41qnq5c9m6fQCOIJLEL74uC_eJvllYNzsEZoFiGQ,3366
60
+ lighter/models/orders.py,sha256=d190wbN61WB3wAMpHM_9PZD3uV8MbGC31fOZUPjU2BY,3394
61
+ lighter/models/pn_l_entry.py,sha256=yCwokXYZsEcScoRx5aHqPRFZ-z4oGJYHfD0ffwPASmE,2816
62
+ lighter/models/position_funding.py,sha256=uS7H-zionzickXADJ665TbT2ITpvGo1vvsnUzjRpBvY,3551
63
+ lighter/models/price_level.py,sha256=MeodvlhpbgtkDqF0jVue_isf5xajr1LXb4UrXJHKopU,2766
64
+ lighter/models/public_pool.py,sha256=SJawjf4lz4olorbaakdeLyY7WOWjSCTlGe_hvOxbfpg,4675
65
+ lighter/models/public_pool_info.py,sha256=nKoFpx9jCmX4_Wj0CNkTDimGuf3M9DblMlAjgPcCfvM,3180
66
+ lighter/models/public_pool_share.py,sha256=FfYazOqG8ewKz_ykuVbtqO0aWOHPbhSVmXml5eAYVRQ,2975
67
+ lighter/models/public_pools.py,sha256=R7Qye_algSsuKKvbeACKg_-fGT0aeR7QxBFai5DQIdc,3453
68
+ lighter/models/req_get_account.py,sha256=cs5mdCZ0_J7RCCOTjoxh9l-rin_xyJR1vqFgQ9Rf_pA,3047
69
+ lighter/models/req_get_account_active_orders.py,sha256=qjUmMLFpCKumy1dHwwFDoqi5QbePudGFsNzlQSnCFJk,2969
70
+ lighter/models/req_get_account_api_keys.py,sha256=M_P-YGUFrKG-piXpwxs8Qp0bntxF5rI5-WV6JIb_WZY,2884
71
+ lighter/models/req_get_account_by_l1_address.py,sha256=-IYwabP_tZenv4LJYeWw49T9_z5qOIMjzzsgFGFlXfo,2791
72
+ lighter/models/req_get_account_inactive_orders.py,sha256=4Scrj7rbfEHfl-ON4GhORAQflYQcq1P4ZApdbGHKISU,3430
73
+ lighter/models/req_get_account_orders.py,sha256=Snz9jnVjj7lN9TO91j5edxz1vlj9nt_0qO91Rz-16mk,3129
74
+ lighter/models/req_get_account_pending_txs.py,sha256=4_afmF7c7FX449dumziSKje61NP0LYOlA1JtGr42Fqo,3284
75
+ lighter/models/req_get_account_pn_l.py,sha256=sijkjWknjSZ9kYVt7tZc4Pujiw_PKUzVyM6bHujtZ9Y,3942
76
+ lighter/models/req_get_account_txs.py,sha256=kHRI0dYkWgzpZI86sXHE4XFIUAm5L3I4TpGrxjXdRDY,3507
77
+ lighter/models/req_get_block.py,sha256=2kIsThT48wPZ3LptzmOBxJ0pxHytZZX4OGBxGb3Uno4,3039
78
+ lighter/models/req_get_block_txs.py,sha256=GIgvEMoij9Saj9UlrEO98sfFjNUxzLiR-sbMGHWZV34,3078
79
+ lighter/models/req_get_by_account.py,sha256=E28ulNmvVqAVwCwgLw-QU08yigQRiSSvp7HJke_zbWo,3045
80
+ lighter/models/req_get_candlesticks.py,sha256=EhXxyl_HL7qCuoUWJz5NER614hI8fvJU3WTG6ZTMDY0,3702
81
+ lighter/models/req_get_deposit_history.py,sha256=yS944fLww1a266Vbbwzt0IeOSSHHhPuZgh4YtYGO1Is,3311
82
+ lighter/models/req_get_fee_bucket.py,sha256=mpAYuTSxwuXZ1ni-s3O3yvHIZqcDwLuxy99BLSMG4GI,2758
83
+ lighter/models/req_get_fundings.py,sha256=y-zSxoCIAiml_W1yFmU59qaqr6wZKELXmUrMBAow4LU,3392
84
+ lighter/models/req_get_l1_tx.py,sha256=S57Z7jkxn-5MD0-icU4fnGxeRJb6zyE-_-kmfcDOfQI,2697
85
+ lighter/models/req_get_latest_deposit.py,sha256=4zPZdBC8e9o1rfqNedUwxz9zBrDOn5wCvKnQuQBOQ-U,2766
86
+ lighter/models/req_get_next_nonce.py,sha256=F6LKAVizV4cXIghCEyO5E1zXIg_jv0QT7SRUOGFQ9-E,2859
87
+ lighter/models/req_get_order_book_details.py,sha256=xLVPgJHoJy0ODkvFR4Fb4aBpAIBsdJzc-ZWYpU4uUic,2804
88
+ lighter/models/req_get_order_book_orders.py,sha256=SoEALxrNJ5On0yxE0gaeNo3QMQLGCUpXeKSyimf-OEk,2927
89
+ lighter/models/req_get_order_books.py,sha256=CGz0SudFU9NJeLaCkZFVA4sOUh8g0y28ZSeXRjuUCS0,2774
90
+ lighter/models/req_get_public_pools.py,sha256=W_56ttmzr1TAtXj5Lkcn68YGCRXlxdwimK9WuYT_8Kc,3496
91
+ lighter/models/req_get_range_with_cursor.py,sha256=uG6tSoTr-ArNiCRTGKCXdLhgDI1MxQCtQktnL5hF2LQ,2942
92
+ lighter/models/req_get_range_with_index.py,sha256=hJR1hW8ohEDPAT8NBjvElmNOyA7yp_x44_uhtZEQKPw,2933
93
+ lighter/models/req_get_range_with_index_sortable.py,sha256=_fdEoZnQpqTQelhfGe-3hMEdKGSDxh3buVOJmMLB-a8,3440
94
+ lighter/models/req_get_recent_trades.py,sha256=ns_UAtaEq6rWF6rwW0qevwNekObKmZNiWMWxGMYuNCo,2912
95
+ lighter/models/req_get_trades.py,sha256=kVWV4IApa2AB_MSmzb71L2-3KIglf8XVpRiVUI0Yc2I,4389
96
+ lighter/models/req_get_tx.py,sha256=EX9Jx9-me5IoYvqab4k_aHOIgrI4vGpNhSP6rhR4vXU,3028
97
+ lighter/models/req_get_withdraw_history.py,sha256=DJsAILi5hTpHzNaKMyi62ouZhp1awC0sBbC1gznVTTg,3339
98
+ lighter/models/req_is_whitelisted.py,sha256=EG2uviF18yEtTEFp2X5EqbzqSdt8FXuUm6LAk9HQME0,2751
99
+ lighter/models/result_code.py,sha256=PY_a6_NwTPuEeaapFWScrTbd6oG9C9B67v7HNKb0AyM,2812
100
+ lighter/models/simple_order.py,sha256=Fqz79GIpUOdbrYFjPH3AY9KXdsqdDSFwUA5kw_HNJoU,3290
101
+ lighter/models/status.py,sha256=m4V0wVNDgeNNIsYW375c8o0wmfC3ogdxm0BlOS5nguQ,2774
102
+ lighter/models/sub_accounts.py,sha256=c7RjsalsKVWkUPlDWFPq2KI5Tfm3C2-RgrgH4gtM77U,3460
103
+ lighter/models/ticker.py,sha256=R8iOjVCJA1QOACOsLntjDFoV8I1sGgUioOn_kSVhmxo,3217
104
+ lighter/models/trade.py,sha256=e6_wA0lWDw7TffIXjcZ6g66I_wya-xdFH6VRHA9fZCY,4105
105
+ lighter/models/trades.py,sha256=bpBHHI31sfDQw4tF2np1_XD5bUV1q9dg_riqc91iWn4,3394
106
+ lighter/models/tx.py,sha256=qc_6xSnlm7cahrhlC32QfcHxAdB_hmE_4muD7rv5iBA,3979
107
+ lighter/models/tx_hash.py,sha256=a7lV1asMRZ7DqH4CeFRlFpXBN8VIzsOwmJUyv2gcmik,2869
108
+ lighter/models/tx_hashes.py,sha256=njK8JGE3fCNLjsfBuQckqBJO_VoMCGlQ6TfZtzl0h1o,2885
109
+ lighter/models/txs.py,sha256=FUqsAzMnYGkul6s3EHjwvA3QK5FhzLy3HHm9Yw4uirU,3230
110
+ lighter/models/validator_info.py,sha256=jU9SFrP5gxRsuaNzvWg16o6_Yjoi55ZcZrLHKZtrBuU,2822
111
+ lighter/models/withdraw_history.py,sha256=FJU_NTfCCHkbCrM5Ts5SoZ4GGsj0cISZXp3HtIxhvgY,3805
112
+ lighter/models/withdraw_history_cursor.py,sha256=7MKM4XugNcM6CPA9kBR7r7Cz616gdRJDF40bile76rw,2849
113
+ lighter/models/withdraw_history_item.py,sha256=0fs3DyXx3ibbrZAAt8hCXaktxbEBIEf8iIofaptpEDM,3646
114
+ lighter/models/zk_lighter_info.py,sha256=hrRxn-g4G9XV7sswosO9IJMsyI2RN9MmQjR2dwMohXQ,2760
115
+ lighter/signers/signer-amd64.so,sha256=uvUjoTyj8Dfn1UAU__lpl5AErwYOS2_zIzKZ1wkobXM,11749816
116
+ lighter/signers/signer-arm64.dylib,sha256=PhzxcB6cIqSGdw94q3ji4elUUdBezBQVmO7I28H3nso,7850210
117
+ lighter/transactions/__init__.py,sha256=91ML0sPi2gBFbscSUTHkY7GRdbJNQ5a2kAYbTWegqCc,167
118
+ lighter/transactions/cancel_order.py,sha256=WgiLzMW3AKjsUeOZMY_SGgbuiHlOCYiAyWiIiVle360,894
119
+ lighter/transactions/create_order.py,sha256=K_UpDqZNOIjk1G2pauL4nhzbiob1ITpNZJS51yxsrUw,1156
120
+ lighter/transactions/withdraw.py,sha256=Si5RRZDGfPRBTwepvGEmJlod1lqvYF4HbIFvO0TB2Nc,835
121
+ lighter_sdk-0.1.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
122
+ lighter_sdk-0.1.0.dist-info/METADATA,sha256=fkmUxzhO5lsQRYaCo1uDbdZz5up4nlERXUilXqn4XUI,760
123
+ lighter_sdk-0.1.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
124
+ lighter_sdk-0.1.0.dist-info/top_level.txt,sha256=F2z_pGZeYv1-xXVwZWAeicsMyn_vSMdZKADnKmh0X24,8
125
+ lighter_sdk-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ lighter