File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,41 @@ def meta(self) -> Meta:
171
171
}
172
172
"""
173
173
return cast (Meta , self .post ("/info" , {"type" : "meta" }))
174
+
175
+ def metaAndAssetCtxs (self ) -> Any :
176
+ """Retrieve exchange MetaAndAssetCtxs
177
+
178
+ POST /info
179
+
180
+ Returns:
181
+ [
182
+ {
183
+ universe: [
184
+ {
185
+ 'maxLeverage': int,
186
+ 'name': str,
187
+ 'onlyIsolated': bool,
188
+ 'szDecimals': int
189
+ },
190
+ ...
191
+ ]
192
+ },
193
+ [
194
+ {
195
+ "dayNtlVlm": str,
196
+ "funding": str,
197
+ "impactPxs": [str, str],
198
+ "markPx": str,
199
+ "midPx": str,
200
+ "openInterest": str,
201
+ "oraclePx": str,
202
+ "premium": str,
203
+ "prevDayPx": str
204
+ },
205
+ ...
206
+ ]
207
+ """
208
+ return self .post ("/info" , {"type" : "metaAndAssetCtxs" })
174
209
175
210
def spot_meta (self ) -> SpotMeta :
176
211
"""Retrieve exchange spot metadata
You can’t perform that action at this time.
0 commit comments