You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* wip
* spot api changes
* remove unused files
* manually fix volume_quota_remaining from sendTx and sendBatchTx
* get assets -- HTTP
* get assets -- WS
* batch TXs example -- cancel orders at the end
* get order books example
* create orders configurable for spot
* README & configurable spot markets for sendBatchTx examples
* Update binaries w/ latest release
* Public pools
* system setup for sub-accounts & pools
* fast withdraw example and update binaries
* withdraw example
* transfer notes and cleanup
---------
Co-authored-by: gioto64 <[email protected]>
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
# print the JSON string representation of the object
28
+
print(Asset.to_json())
29
+
30
+
# convert the object into a dict
31
+
asset_dict = asset_instance.to_dict()
32
+
# create an instance of Asset from a dict
33
+
asset_from_dict = Asset.from_dict(asset_dict)
34
+
```
35
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments