graphsense-python 2.9.9__tar.gz → 2.11.0__tar.gz

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.
Files changed (159) hide show
  1. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/PKG-INFO +48 -4
  2. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/README.md +47 -3
  3. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/__init__.py +38 -2
  4. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/__init__.py +1 -0
  5. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/addresses_api.py +37 -37
  6. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/blocks_api.py +1 -1
  7. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/bulk_api.py +1 -1
  8. graphsense_python-2.11.0/graphsense/api/clusters_api.py +2767 -0
  9. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/entities_api.py +55 -49
  10. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/general_api.py +1 -1
  11. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/rates_api.py +1 -1
  12. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/tags_api.py +1 -1
  13. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/tokens_api.py +1 -1
  14. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api/txs_api.py +26 -8
  15. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api_client.py +2 -2
  16. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/configuration.py +3 -3
  17. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/exceptions.py +1 -1
  18. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/__init__.py +18 -1
  19. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/actor.py +1 -1
  20. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/actor_context.py +1 -1
  21. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/address.py +10 -6
  22. graphsense_python-2.11.0/graphsense/models/address_output.py +87 -0
  23. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/address_tag.py +9 -5
  24. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/address_tags.py +1 -1
  25. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/address_tx.py +1 -1
  26. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/address_tx_utxo.py +1 -1
  27. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/address_txs.py +1 -1
  28. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/block.py +1 -1
  29. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/block_at_date.py +1 -1
  30. graphsense_python-2.11.0/graphsense/models/change_heuristics.py +112 -0
  31. graphsense_python-2.11.0/graphsense/models/cluster.py +191 -0
  32. graphsense_python-2.11.0/graphsense/models/cluster_addresses.py +96 -0
  33. graphsense_python-2.11.0/graphsense/models/coin_join_consensus.py +89 -0
  34. graphsense_python-2.11.0/graphsense/models/coin_join_heuristics.py +114 -0
  35. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/concept.py +1 -1
  36. graphsense_python-2.11.0/graphsense/models/consensus_entry.py +93 -0
  37. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/currency_stats.py +1 -1
  38. graphsense_python-2.11.0/graphsense/models/direct_change_heuristic.py +95 -0
  39. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/entity.py +2 -2
  40. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/entity_addresses.py +2 -2
  41. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/external_conversion.py +1 -1
  42. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/http_validation_error.py +1 -1
  43. graphsense_python-2.11.0/graphsense/models/join_market_heuristic.py +91 -0
  44. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/label_summary.py +1 -1
  45. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/labeled_item_ref.py +1 -1
  46. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/link.py +1 -1
  47. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/link_utxo.py +1 -1
  48. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/links.py +1 -1
  49. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/links_inner.py +1 -1
  50. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/location_inner.py +1 -1
  51. graphsense_python-2.11.0/graphsense/models/multi_input_change_heuristic.py +95 -0
  52. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/neighbor_address.py +1 -1
  53. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/neighbor_addresses.py +1 -1
  54. graphsense_python-2.9.9/graphsense/models/neighbor_entity.py → graphsense_python-2.11.0/graphsense/models/neighbor_cluster.py +5 -5
  55. graphsense_python-2.11.0/graphsense/models/neighbor_clusters.py +96 -0
  56. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/neighbor_entities.py +2 -2
  57. graphsense_python-2.11.0/graphsense/models/neighbor_entity.py +114 -0
  58. graphsense_python-2.11.0/graphsense/models/one_time_change_heuristic.py +95 -0
  59. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/rate.py +1 -1
  60. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/rates.py +1 -1
  61. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/related_address.py +1 -1
  62. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/related_addresses.py +1 -1
  63. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result.py +1 -1
  64. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_by_currency.py +1 -1
  65. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_level1.py +1 -1
  66. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_level2.py +1 -1
  67. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_level3.py +1 -1
  68. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_level4.py +1 -1
  69. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_level5.py +1 -1
  70. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/search_result_level6.py +1 -1
  71. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/stats.py +1 -1
  72. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tag.py +1 -1
  73. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tag_cloud_entry.py +1 -1
  74. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tag_summary.py +1 -1
  75. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/taxonomy.py +1 -1
  76. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/token_config.py +1 -1
  77. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/token_configs.py +1 -1
  78. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tx.py +1 -1
  79. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tx_account.py +1 -1
  80. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tx_ref.py +1 -1
  81. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tx_summary.py +1 -1
  82. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tx_utxo.py +9 -3
  83. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/tx_value.py +1 -1
  84. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/user_reported_tag.py +1 -1
  85. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/user_tag_report_response.py +1 -1
  86. graphsense_python-2.11.0/graphsense/models/utxo_heuristics.py +96 -0
  87. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/validation_error.py +1 -1
  88. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/models/values.py +1 -1
  89. graphsense_python-2.11.0/graphsense/models/wasabi_heuristic.py +100 -0
  90. graphsense_python-2.11.0/graphsense/models/whirlpool_coin_join_heuristic.py +93 -0
  91. graphsense_python-2.11.0/graphsense/models/whirlpool_tx0_heuristic.py +91 -0
  92. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/rest.py +1 -1
  93. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense_python.egg-info/PKG-INFO +48 -4
  94. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense_python.egg-info/SOURCES.txt +18 -0
  95. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/pyproject.toml +1 -1
  96. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/api_response.py +0 -0
  97. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/compat.py +0 -0
  98. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/__init__.py +0 -0
  99. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/actor.py +0 -0
  100. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/actor_context.py +0 -0
  101. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/address.py +0 -0
  102. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/address_tag.py +0 -0
  103. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/address_tags.py +0 -0
  104. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/address_tx.py +0 -0
  105. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/address_tx_utxo.py +0 -0
  106. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/address_txs.py +0 -0
  107. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/block.py +0 -0
  108. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/block_at_date.py +0 -0
  109. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/concept.py +0 -0
  110. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/currency_stats.py +0 -0
  111. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/entity.py +0 -0
  112. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/entity_addresses.py +0 -0
  113. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/external_conversion.py +0 -0
  114. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/http_validation_error.py +0 -0
  115. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/label_summary.py +0 -0
  116. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/labeled_item_ref.py +0 -0
  117. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/link.py +0 -0
  118. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/link_utxo.py +0 -0
  119. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/links.py +0 -0
  120. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/links_inner.py +0 -0
  121. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/location_inner.py +0 -0
  122. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/neighbor_address.py +0 -0
  123. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/neighbor_addresses.py +0 -0
  124. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/neighbor_entities.py +0 -0
  125. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/neighbor_entity.py +0 -0
  126. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/rate.py +0 -0
  127. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/rates.py +0 -0
  128. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/related_address.py +0 -0
  129. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/related_addresses.py +0 -0
  130. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result.py +0 -0
  131. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_by_currency.py +0 -0
  132. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_level1.py +0 -0
  133. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_level2.py +0 -0
  134. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_level3.py +0 -0
  135. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_level4.py +0 -0
  136. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_level5.py +0 -0
  137. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/search_result_level6.py +0 -0
  138. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/stats.py +0 -0
  139. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tag.py +0 -0
  140. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tag_cloud_entry.py +0 -0
  141. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tag_summary.py +0 -0
  142. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/taxonomy.py +0 -0
  143. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/token_config.py +0 -0
  144. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/token_configs.py +0 -0
  145. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tx.py +0 -0
  146. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tx_account.py +0 -0
  147. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tx_ref.py +0 -0
  148. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tx_summary.py +0 -0
  149. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tx_utxo.py +0 -0
  150. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/tx_value.py +0 -0
  151. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/user_reported_tag.py +0 -0
  152. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/user_tag_report_response.py +0 -0
  153. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/validation_error.py +0 -0
  154. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/model/values.py +0 -0
  155. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense/py.typed +0 -0
  156. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense_python.egg-info/dependency_links.txt +0 -0
  157. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense_python.egg-info/requires.txt +0 -0
  158. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/graphsense_python.egg-info/top_level.txt +0 -0
  159. {graphsense_python-2.9.9 → graphsense_python-2.11.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphsense-python
3
- Version: 2.9.9
3
+ Version: 2.11.0
4
4
  Summary: GraphSense API
5
5
  Author-email: Iknaio Cryptoasset Analytics GmbH <contact@iknaio.com>
6
6
  License-Expression: MIT
@@ -17,12 +17,32 @@ Requires-Dist: pydantic>=2
17
17
  Requires-Dist: typing-extensions>=4.7.1
18
18
 
19
19
  # graphsense-python
20
- GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation.
20
+ GraphSense API provides programmatic access to blockchain analytics data across
21
+ multiple ledgers. Use it to explore addresses, clusters, blocks, transactions,
22
+ tags, token activity, and exchange-rate context, and to integrate investigation
23
+ workflows into your own applications and automation.
24
+
25
+ ## Versioning and deprecation policy
26
+
27
+ The API follows semantic versioning. Minor releases are additive and
28
+ backwards-compatible; breaking changes only happen in major releases, which
29
+ are rare and announced in advance.
30
+
31
+ Deprecated endpoints and fields remain fully functional for at least six
32
+ months after they are marked deprecated. During that window they are
33
+ highlighted with a strikethrough in the docs and in generated clients, and
34
+ responses from deprecated endpoints carry a `Deprecation` HTTP header that
35
+ client tooling can detect. Replacement endpoints and fields are always
36
+ introduced before the deprecated surface is removed.
37
+
38
+ See the [full versioning and deprecation policy](https://github.com/graphsense/graphsense-lib/blob/master/README.md#rest-api-evolution-and-deprecation-policy)
39
+ for details.
40
+
21
41
 
22
42
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
23
43
 
24
- - API version: 2.9.9
25
- - Package version: 2.9.9
44
+ - API version: 2.11.0
45
+ - Package version: 2.11.0
26
46
  - Generator version: 7.19.0
27
47
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
28
48
  For more information, please visit [https://www.iknaio.com/](https://www.iknaio.com/)
@@ -129,6 +149,13 @@ Class | Method | HTTP request | Description
129
149
  *BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs | List transactions in a block
130
150
  *BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} | Stream bulk operation results as CSV
131
151
  *BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} | Stream bulk operation results as JSON
152
+ *ClustersApi* | [**get_cluster**](docs/ClustersApi.md#get_cluster) | **GET** /{currency}/clusters/{cluster} | Get cluster details
153
+ *ClustersApi* | [**list_address_tags_by_cluster**](docs/ClustersApi.md#list_address_tags_by_cluster) | **GET** /{currency}/clusters/{cluster}/tags | List cluster address tags
154
+ *ClustersApi* | [**list_cluster_addresses**](docs/ClustersApi.md#list_cluster_addresses) | **GET** /{currency}/clusters/{cluster}/addresses | List cluster addresses
155
+ *ClustersApi* | [**list_cluster_links**](docs/ClustersApi.md#list_cluster_links) | **GET** /{currency}/clusters/{cluster}/links | List transactions between clusters
156
+ *ClustersApi* | [**list_cluster_neighbors**](docs/ClustersApi.md#list_cluster_neighbors) | **GET** /{currency}/clusters/{cluster}/neighbors | List neighboring clusters
157
+ *ClustersApi* | [**list_cluster_txs**](docs/ClustersApi.md#list_cluster_txs) | **GET** /{currency}/clusters/{cluster}/txs | List cluster transactions
158
+ *ClustersApi* | [**search_cluster_neighbors**](docs/ClustersApi.md#search_cluster_neighbors) | **GET** /{currency}/clusters/{cluster}/search | Search cluster neighborhood
132
159
  *EntitiesApi* | [**get_entity**](docs/EntitiesApi.md#get_entity) | **GET** /{currency}/entities/{entity} | Get entity details
133
160
  *EntitiesApi* | [**list_address_tags_by_entity**](docs/EntitiesApi.md#list_address_tags_by_entity) | **GET** /{currency}/entities/{entity}/tags | List entity address tags
134
161
  *EntitiesApi* | [**list_entity_addresses**](docs/EntitiesApi.md#list_entity_addresses) | **GET** /{currency}/entities/{entity}/addresses | List entity addresses
@@ -160,6 +187,7 @@ Class | Method | HTTP request | Description
160
187
  - [Actor](docs/Actor.md)
161
188
  - [ActorContext](docs/ActorContext.md)
162
189
  - [Address](docs/Address.md)
190
+ - [AddressOutput](docs/AddressOutput.md)
163
191
  - [AddressTag](docs/AddressTag.md)
164
192
  - [AddressTags](docs/AddressTags.md)
165
193
  - [AddressTx](docs/AddressTx.md)
@@ -167,12 +195,20 @@ Class | Method | HTTP request | Description
167
195
  - [AddressTxs](docs/AddressTxs.md)
168
196
  - [Block](docs/Block.md)
169
197
  - [BlockAtDate](docs/BlockAtDate.md)
198
+ - [ChangeHeuristics](docs/ChangeHeuristics.md)
199
+ - [Cluster](docs/Cluster.md)
200
+ - [ClusterAddresses](docs/ClusterAddresses.md)
201
+ - [CoinJoinConsensus](docs/CoinJoinConsensus.md)
202
+ - [CoinJoinHeuristics](docs/CoinJoinHeuristics.md)
170
203
  - [Concept](docs/Concept.md)
204
+ - [ConsensusEntry](docs/ConsensusEntry.md)
171
205
  - [CurrencyStats](docs/CurrencyStats.md)
206
+ - [DirectChangeHeuristic](docs/DirectChangeHeuristic.md)
172
207
  - [Entity](docs/Entity.md)
173
208
  - [EntityAddresses](docs/EntityAddresses.md)
174
209
  - [ExternalConversion](docs/ExternalConversion.md)
175
210
  - [HTTPValidationError](docs/HTTPValidationError.md)
211
+ - [JoinMarketHeuristic](docs/JoinMarketHeuristic.md)
176
212
  - [LabelSummary](docs/LabelSummary.md)
177
213
  - [LabeledItemRef](docs/LabeledItemRef.md)
178
214
  - [Link](docs/Link.md)
@@ -180,10 +216,14 @@ Class | Method | HTTP request | Description
180
216
  - [Links](docs/Links.md)
181
217
  - [LinksInner](docs/LinksInner.md)
182
218
  - [LocationInner](docs/LocationInner.md)
219
+ - [MultiInputChangeHeuristic](docs/MultiInputChangeHeuristic.md)
183
220
  - [NeighborAddress](docs/NeighborAddress.md)
184
221
  - [NeighborAddresses](docs/NeighborAddresses.md)
222
+ - [NeighborCluster](docs/NeighborCluster.md)
223
+ - [NeighborClusters](docs/NeighborClusters.md)
185
224
  - [NeighborEntities](docs/NeighborEntities.md)
186
225
  - [NeighborEntity](docs/NeighborEntity.md)
226
+ - [OneTimeChangeHeuristic](docs/OneTimeChangeHeuristic.md)
187
227
  - [Rate](docs/Rate.md)
188
228
  - [Rates](docs/Rates.md)
189
229
  - [RelatedAddress](docs/RelatedAddress.md)
@@ -211,8 +251,12 @@ Class | Method | HTTP request | Description
211
251
  - [TxValue](docs/TxValue.md)
212
252
  - [UserReportedTag](docs/UserReportedTag.md)
213
253
  - [UserTagReportResponse](docs/UserTagReportResponse.md)
254
+ - [UtxoHeuristics](docs/UtxoHeuristics.md)
214
255
  - [ValidationError](docs/ValidationError.md)
215
256
  - [Values](docs/Values.md)
257
+ - [WasabiHeuristic](docs/WasabiHeuristic.md)
258
+ - [WhirlpoolCoinJoinHeuristic](docs/WhirlpoolCoinJoinHeuristic.md)
259
+ - [WhirlpoolTx0Heuristic](docs/WhirlpoolTx0Heuristic.md)
216
260
 
217
261
 
218
262
  <a id="documentation-for-authorization"></a>
@@ -1,10 +1,30 @@
1
1
  # graphsense-python
2
- GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation.
2
+ GraphSense API provides programmatic access to blockchain analytics data across
3
+ multiple ledgers. Use it to explore addresses, clusters, blocks, transactions,
4
+ tags, token activity, and exchange-rate context, and to integrate investigation
5
+ workflows into your own applications and automation.
6
+
7
+ ## Versioning and deprecation policy
8
+
9
+ The API follows semantic versioning. Minor releases are additive and
10
+ backwards-compatible; breaking changes only happen in major releases, which
11
+ are rare and announced in advance.
12
+
13
+ Deprecated endpoints and fields remain fully functional for at least six
14
+ months after they are marked deprecated. During that window they are
15
+ highlighted with a strikethrough in the docs and in generated clients, and
16
+ responses from deprecated endpoints carry a `Deprecation` HTTP header that
17
+ client tooling can detect. Replacement endpoints and fields are always
18
+ introduced before the deprecated surface is removed.
19
+
20
+ See the [full versioning and deprecation policy](https://github.com/graphsense/graphsense-lib/blob/master/README.md#rest-api-evolution-and-deprecation-policy)
21
+ for details.
22
+
3
23
 
4
24
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
25
 
6
- - API version: 2.9.9
7
- - Package version: 2.9.9
26
+ - API version: 2.11.0
27
+ - Package version: 2.11.0
8
28
  - Generator version: 7.19.0
9
29
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
30
  For more information, please visit [https://www.iknaio.com/](https://www.iknaio.com/)
@@ -111,6 +131,13 @@ Class | Method | HTTP request | Description
111
131
  *BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs | List transactions in a block
112
132
  *BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} | Stream bulk operation results as CSV
113
133
  *BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} | Stream bulk operation results as JSON
134
+ *ClustersApi* | [**get_cluster**](docs/ClustersApi.md#get_cluster) | **GET** /{currency}/clusters/{cluster} | Get cluster details
135
+ *ClustersApi* | [**list_address_tags_by_cluster**](docs/ClustersApi.md#list_address_tags_by_cluster) | **GET** /{currency}/clusters/{cluster}/tags | List cluster address tags
136
+ *ClustersApi* | [**list_cluster_addresses**](docs/ClustersApi.md#list_cluster_addresses) | **GET** /{currency}/clusters/{cluster}/addresses | List cluster addresses
137
+ *ClustersApi* | [**list_cluster_links**](docs/ClustersApi.md#list_cluster_links) | **GET** /{currency}/clusters/{cluster}/links | List transactions between clusters
138
+ *ClustersApi* | [**list_cluster_neighbors**](docs/ClustersApi.md#list_cluster_neighbors) | **GET** /{currency}/clusters/{cluster}/neighbors | List neighboring clusters
139
+ *ClustersApi* | [**list_cluster_txs**](docs/ClustersApi.md#list_cluster_txs) | **GET** /{currency}/clusters/{cluster}/txs | List cluster transactions
140
+ *ClustersApi* | [**search_cluster_neighbors**](docs/ClustersApi.md#search_cluster_neighbors) | **GET** /{currency}/clusters/{cluster}/search | Search cluster neighborhood
114
141
  *EntitiesApi* | [**get_entity**](docs/EntitiesApi.md#get_entity) | **GET** /{currency}/entities/{entity} | Get entity details
115
142
  *EntitiesApi* | [**list_address_tags_by_entity**](docs/EntitiesApi.md#list_address_tags_by_entity) | **GET** /{currency}/entities/{entity}/tags | List entity address tags
116
143
  *EntitiesApi* | [**list_entity_addresses**](docs/EntitiesApi.md#list_entity_addresses) | **GET** /{currency}/entities/{entity}/addresses | List entity addresses
@@ -142,6 +169,7 @@ Class | Method | HTTP request | Description
142
169
  - [Actor](docs/Actor.md)
143
170
  - [ActorContext](docs/ActorContext.md)
144
171
  - [Address](docs/Address.md)
172
+ - [AddressOutput](docs/AddressOutput.md)
145
173
  - [AddressTag](docs/AddressTag.md)
146
174
  - [AddressTags](docs/AddressTags.md)
147
175
  - [AddressTx](docs/AddressTx.md)
@@ -149,12 +177,20 @@ Class | Method | HTTP request | Description
149
177
  - [AddressTxs](docs/AddressTxs.md)
150
178
  - [Block](docs/Block.md)
151
179
  - [BlockAtDate](docs/BlockAtDate.md)
180
+ - [ChangeHeuristics](docs/ChangeHeuristics.md)
181
+ - [Cluster](docs/Cluster.md)
182
+ - [ClusterAddresses](docs/ClusterAddresses.md)
183
+ - [CoinJoinConsensus](docs/CoinJoinConsensus.md)
184
+ - [CoinJoinHeuristics](docs/CoinJoinHeuristics.md)
152
185
  - [Concept](docs/Concept.md)
186
+ - [ConsensusEntry](docs/ConsensusEntry.md)
153
187
  - [CurrencyStats](docs/CurrencyStats.md)
188
+ - [DirectChangeHeuristic](docs/DirectChangeHeuristic.md)
154
189
  - [Entity](docs/Entity.md)
155
190
  - [EntityAddresses](docs/EntityAddresses.md)
156
191
  - [ExternalConversion](docs/ExternalConversion.md)
157
192
  - [HTTPValidationError](docs/HTTPValidationError.md)
193
+ - [JoinMarketHeuristic](docs/JoinMarketHeuristic.md)
158
194
  - [LabelSummary](docs/LabelSummary.md)
159
195
  - [LabeledItemRef](docs/LabeledItemRef.md)
160
196
  - [Link](docs/Link.md)
@@ -162,10 +198,14 @@ Class | Method | HTTP request | Description
162
198
  - [Links](docs/Links.md)
163
199
  - [LinksInner](docs/LinksInner.md)
164
200
  - [LocationInner](docs/LocationInner.md)
201
+ - [MultiInputChangeHeuristic](docs/MultiInputChangeHeuristic.md)
165
202
  - [NeighborAddress](docs/NeighborAddress.md)
166
203
  - [NeighborAddresses](docs/NeighborAddresses.md)
204
+ - [NeighborCluster](docs/NeighborCluster.md)
205
+ - [NeighborClusters](docs/NeighborClusters.md)
167
206
  - [NeighborEntities](docs/NeighborEntities.md)
168
207
  - [NeighborEntity](docs/NeighborEntity.md)
208
+ - [OneTimeChangeHeuristic](docs/OneTimeChangeHeuristic.md)
169
209
  - [Rate](docs/Rate.md)
170
210
  - [Rates](docs/Rates.md)
171
211
  - [RelatedAddress](docs/RelatedAddress.md)
@@ -193,8 +233,12 @@ Class | Method | HTTP request | Description
193
233
  - [TxValue](docs/TxValue.md)
194
234
  - [UserReportedTag](docs/UserReportedTag.md)
195
235
  - [UserTagReportResponse](docs/UserTagReportResponse.md)
236
+ - [UtxoHeuristics](docs/UtxoHeuristics.md)
196
237
  - [ValidationError](docs/ValidationError.md)
197
238
  - [Values](docs/Values.md)
239
+ - [WasabiHeuristic](docs/WasabiHeuristic.md)
240
+ - [WhirlpoolCoinJoinHeuristic](docs/WhirlpoolCoinJoinHeuristic.md)
241
+ - [WhirlpoolTx0Heuristic](docs/WhirlpoolTx0Heuristic.md)
198
242
 
199
243
 
200
244
  <a id="documentation-for-authorization"></a>
@@ -5,20 +5,21 @@
5
5
  """
6
6
  GraphSense API
7
7
 
8
- GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. # noqa: E501
8
+ GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, clusters, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. ## Versioning and deprecation policy The API follows semantic versioning. Minor releases are additive and backwards-compatible; breaking changes only happen in major releases, which are rare and announced in advance. Deprecated endpoints and fields remain fully functional for at least six months after they are marked deprecated. During that window they are highlighted with a strikethrough in the docs and in generated clients, and responses from deprecated endpoints carry a `Deprecation` HTTP header that client tooling can detect. Replacement endpoints and fields are always introduced before the deprecated surface is removed. See the [full versioning and deprecation policy](https://github.com/graphsense/graphsense-lib/blob/master/README.md#rest-api-evolution-and-deprecation-policy) for details. # noqa: E501
9
9
 
10
10
  Contact: contact@iknaio.com
11
11
  Generated by: https://openapi-generator.tech
12
12
  """
13
13
 
14
14
 
15
- __version__ = "2.9.9"
15
+ __version__ = "2.11.0"
16
16
 
17
17
  # Define package exports
18
18
  __all__ = [
19
19
  "AddressesApi",
20
20
  "BlocksApi",
21
21
  "BulkApi",
22
+ "ClustersApi",
22
23
  "EntitiesApi",
23
24
  "GeneralApi",
24
25
  "RatesApi",
@@ -37,6 +38,7 @@ __all__ = [
37
38
  "Actor",
38
39
  "ActorContext",
39
40
  "Address",
41
+ "AddressOutput",
40
42
  "AddressTag",
41
43
  "AddressTags",
42
44
  "AddressTx",
@@ -44,12 +46,20 @@ __all__ = [
44
46
  "AddressTxs",
45
47
  "Block",
46
48
  "BlockAtDate",
49
+ "ChangeHeuristics",
50
+ "Cluster",
51
+ "ClusterAddresses",
52
+ "CoinJoinConsensus",
53
+ "CoinJoinHeuristics",
47
54
  "Concept",
55
+ "ConsensusEntry",
48
56
  "CurrencyStats",
57
+ "DirectChangeHeuristic",
49
58
  "Entity",
50
59
  "EntityAddresses",
51
60
  "ExternalConversion",
52
61
  "HTTPValidationError",
62
+ "JoinMarketHeuristic",
53
63
  "LabelSummary",
54
64
  "LabeledItemRef",
55
65
  "Link",
@@ -57,10 +67,14 @@ __all__ = [
57
67
  "Links",
58
68
  "LinksInner",
59
69
  "LocationInner",
70
+ "MultiInputChangeHeuristic",
60
71
  "NeighborAddress",
61
72
  "NeighborAddresses",
73
+ "NeighborCluster",
74
+ "NeighborClusters",
62
75
  "NeighborEntities",
63
76
  "NeighborEntity",
77
+ "OneTimeChangeHeuristic",
64
78
  "Rate",
65
79
  "Rates",
66
80
  "RelatedAddress",
@@ -88,8 +102,12 @@ __all__ = [
88
102
  "TxValue",
89
103
  "UserReportedTag",
90
104
  "UserTagReportResponse",
105
+ "UtxoHeuristics",
91
106
  "ValidationError",
92
107
  "Values",
108
+ "WasabiHeuristic",
109
+ "WhirlpoolCoinJoinHeuristic",
110
+ "WhirlpoolTx0Heuristic",
93
111
  ]
94
112
 
95
113
  # Import compat module first to apply BaseModel patches
@@ -99,6 +117,7 @@ import graphsense.compat # noqa: F401
99
117
  from graphsense.api.addresses_api import AddressesApi as AddressesApi
100
118
  from graphsense.api.blocks_api import BlocksApi as BlocksApi
101
119
  from graphsense.api.bulk_api import BulkApi as BulkApi
120
+ from graphsense.api.clusters_api import ClustersApi as ClustersApi
102
121
  from graphsense.api.entities_api import EntitiesApi as EntitiesApi
103
122
  from graphsense.api.general_api import GeneralApi as GeneralApi
104
123
  from graphsense.api.rates_api import RatesApi as RatesApi
@@ -121,6 +140,7 @@ from graphsense.exceptions import ApiException as ApiException
121
140
  from graphsense.models.actor import Actor as Actor
122
141
  from graphsense.models.actor_context import ActorContext as ActorContext
123
142
  from graphsense.models.address import Address as Address
143
+ from graphsense.models.address_output import AddressOutput as AddressOutput
124
144
  from graphsense.models.address_tag import AddressTag as AddressTag
125
145
  from graphsense.models.address_tags import AddressTags as AddressTags
126
146
  from graphsense.models.address_tx import AddressTx as AddressTx
@@ -128,12 +148,20 @@ from graphsense.models.address_tx_utxo import AddressTxUtxo as AddressTxUtxo
128
148
  from graphsense.models.address_txs import AddressTxs as AddressTxs
129
149
  from graphsense.models.block import Block as Block
130
150
  from graphsense.models.block_at_date import BlockAtDate as BlockAtDate
151
+ from graphsense.models.change_heuristics import ChangeHeuristics as ChangeHeuristics
152
+ from graphsense.models.cluster import Cluster as Cluster
153
+ from graphsense.models.cluster_addresses import ClusterAddresses as ClusterAddresses
154
+ from graphsense.models.coin_join_consensus import CoinJoinConsensus as CoinJoinConsensus
155
+ from graphsense.models.coin_join_heuristics import CoinJoinHeuristics as CoinJoinHeuristics
131
156
  from graphsense.models.concept import Concept as Concept
157
+ from graphsense.models.consensus_entry import ConsensusEntry as ConsensusEntry
132
158
  from graphsense.models.currency_stats import CurrencyStats as CurrencyStats
159
+ from graphsense.models.direct_change_heuristic import DirectChangeHeuristic as DirectChangeHeuristic
133
160
  from graphsense.models.entity import Entity as Entity
134
161
  from graphsense.models.entity_addresses import EntityAddresses as EntityAddresses
135
162
  from graphsense.models.external_conversion import ExternalConversion as ExternalConversion
136
163
  from graphsense.models.http_validation_error import HTTPValidationError as HTTPValidationError
164
+ from graphsense.models.join_market_heuristic import JoinMarketHeuristic as JoinMarketHeuristic
137
165
  from graphsense.models.label_summary import LabelSummary as LabelSummary
138
166
  from graphsense.models.labeled_item_ref import LabeledItemRef as LabeledItemRef
139
167
  from graphsense.models.link import Link as Link
@@ -141,10 +169,14 @@ from graphsense.models.link_utxo import LinkUtxo as LinkUtxo
141
169
  from graphsense.models.links import Links as Links
142
170
  from graphsense.models.links_inner import LinksInner as LinksInner
143
171
  from graphsense.models.location_inner import LocationInner as LocationInner
172
+ from graphsense.models.multi_input_change_heuristic import MultiInputChangeHeuristic as MultiInputChangeHeuristic
144
173
  from graphsense.models.neighbor_address import NeighborAddress as NeighborAddress
145
174
  from graphsense.models.neighbor_addresses import NeighborAddresses as NeighborAddresses
175
+ from graphsense.models.neighbor_cluster import NeighborCluster as NeighborCluster
176
+ from graphsense.models.neighbor_clusters import NeighborClusters as NeighborClusters
146
177
  from graphsense.models.neighbor_entities import NeighborEntities as NeighborEntities
147
178
  from graphsense.models.neighbor_entity import NeighborEntity as NeighborEntity
179
+ from graphsense.models.one_time_change_heuristic import OneTimeChangeHeuristic as OneTimeChangeHeuristic
148
180
  from graphsense.models.rate import Rate as Rate
149
181
  from graphsense.models.rates import Rates as Rates
150
182
  from graphsense.models.related_address import RelatedAddress as RelatedAddress
@@ -172,6 +204,10 @@ from graphsense.models.tx_utxo import TxUtxo as TxUtxo
172
204
  from graphsense.models.tx_value import TxValue as TxValue
173
205
  from graphsense.models.user_reported_tag import UserReportedTag as UserReportedTag
174
206
  from graphsense.models.user_tag_report_response import UserTagReportResponse as UserTagReportResponse
207
+ from graphsense.models.utxo_heuristics import UtxoHeuristics as UtxoHeuristics
175
208
  from graphsense.models.validation_error import ValidationError as ValidationError
176
209
  from graphsense.models.values import Values as Values
210
+ from graphsense.models.wasabi_heuristic import WasabiHeuristic as WasabiHeuristic
211
+ from graphsense.models.whirlpool_coin_join_heuristic import WhirlpoolCoinJoinHeuristic as WhirlpoolCoinJoinHeuristic
212
+ from graphsense.models.whirlpool_tx0_heuristic import WhirlpoolTx0Heuristic as WhirlpoolTx0Heuristic
177
213
 
@@ -4,6 +4,7 @@
4
4
  from graphsense.api.addresses_api import AddressesApi
5
5
  from graphsense.api.blocks_api import BlocksApi
6
6
  from graphsense.api.bulk_api import BulkApi
7
+ from graphsense.api.clusters_api import ClustersApi
7
8
  from graphsense.api.entities_api import EntitiesApi
8
9
  from graphsense.api.general_api import GeneralApi
9
10
  from graphsense.api.rates_api import RatesApi
@@ -3,7 +3,7 @@
3
3
  """
4
4
  GraphSense API
5
5
 
6
- GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. # noqa: E501
6
+ GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, clusters, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. ## Versioning and deprecation policy The API follows semantic versioning. Minor releases are additive and backwards-compatible; breaking changes only happen in major releases, which are rare and announced in advance. Deprecated endpoints and fields remain fully functional for at least six months after they are marked deprecated. During that window they are highlighted with a strikethrough in the docs and in generated clients, and responses from deprecated endpoints carry a `Deprecation` HTTP header that client tooling can detect. Replacement endpoints and fields are always introduced before the deprecated surface is removed. See the [full versioning and deprecation policy](https://github.com/graphsense/graphsense-lib/blob/master/README.md#rest-api-evolution-and-deprecation-policy) for details. # noqa: E501
7
7
 
8
8
  Contact: contact@iknaio.com
9
9
  Generated by: https://openapi-generator.tech
@@ -1039,10 +1039,10 @@ class AddressesApi:
1039
1039
  neighbor: Annotated[StrictStr, Field(description="Neighbor address")],
1040
1040
  min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
1041
1041
  max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
1042
- min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
1043
- max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
1042
+ min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1043
+ max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1044
1044
  order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
1045
- token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
1045
+ token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
1046
1046
  page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
1047
1047
  pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
1048
1048
  _request_timeout: Union[
@@ -1072,13 +1072,13 @@ class AddressesApi:
1072
1072
  :type min_height: int
1073
1073
  :param max_height: Return transactions up to (including) given height
1074
1074
  :type max_height: int
1075
- :param min_date: Min date of txs
1075
+ :param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1076
1076
  :type min_date: str
1077
- :param max_date: Max date of txs
1077
+ :param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1078
1078
  :type max_date: str
1079
1079
  :param order: Sorting order
1080
1080
  :type order: str
1081
- :param token_currency: Return transactions of given token or base currency
1081
+ :param token_currency: Return transactions of given token or base currency e.g. 'WETH'
1082
1082
  :type token_currency: str
1083
1083
  :param page: Resumption token for retrieving the next page
1084
1084
  :type page: str
@@ -1148,10 +1148,10 @@ class AddressesApi:
1148
1148
  neighbor: Annotated[StrictStr, Field(description="Neighbor address")],
1149
1149
  min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
1150
1150
  max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
1151
- min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
1152
- max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
1151
+ min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1152
+ max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1153
1153
  order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
1154
- token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
1154
+ token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
1155
1155
  page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
1156
1156
  pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
1157
1157
  _request_timeout: Union[
@@ -1181,13 +1181,13 @@ class AddressesApi:
1181
1181
  :type min_height: int
1182
1182
  :param max_height: Return transactions up to (including) given height
1183
1183
  :type max_height: int
1184
- :param min_date: Min date of txs
1184
+ :param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1185
1185
  :type min_date: str
1186
- :param max_date: Max date of txs
1186
+ :param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1187
1187
  :type max_date: str
1188
1188
  :param order: Sorting order
1189
1189
  :type order: str
1190
- :param token_currency: Return transactions of given token or base currency
1190
+ :param token_currency: Return transactions of given token or base currency e.g. 'WETH'
1191
1191
  :type token_currency: str
1192
1192
  :param page: Resumption token for retrieving the next page
1193
1193
  :type page: str
@@ -1257,10 +1257,10 @@ class AddressesApi:
1257
1257
  neighbor: Annotated[StrictStr, Field(description="Neighbor address")],
1258
1258
  min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
1259
1259
  max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
1260
- min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
1261
- max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
1260
+ min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1261
+ max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1262
1262
  order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
1263
- token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
1263
+ token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
1264
1264
  page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
1265
1265
  pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
1266
1266
  _request_timeout: Union[
@@ -1290,13 +1290,13 @@ class AddressesApi:
1290
1290
  :type min_height: int
1291
1291
  :param max_height: Return transactions up to (including) given height
1292
1292
  :type max_height: int
1293
- :param min_date: Min date of txs
1293
+ :param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1294
1294
  :type min_date: str
1295
- :param max_date: Max date of txs
1295
+ :param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1296
1296
  :type max_date: str
1297
1297
  :param order: Sorting order
1298
1298
  :type order: str
1299
- :param token_currency: Return transactions of given token or base currency
1299
+ :param token_currency: Return transactions of given token or base currency e.g. 'WETH'
1300
1300
  :type token_currency: str
1301
1301
  :param page: Resumption token for retrieving the next page
1302
1302
  :type page: str
@@ -1858,10 +1858,10 @@ class AddressesApi:
1858
1858
  direction: Annotated[Optional[StrictStr], Field(description="Incoming or outgoing transactions")] = None,
1859
1859
  min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
1860
1860
  max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
1861
- min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
1862
- max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
1861
+ min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1862
+ max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1863
1863
  order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
1864
- token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
1864
+ token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
1865
1865
  page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
1866
1866
  pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
1867
1867
  _request_timeout: Union[
@@ -1891,13 +1891,13 @@ class AddressesApi:
1891
1891
  :type min_height: int
1892
1892
  :param max_height: Return transactions up to (including) given height
1893
1893
  :type max_height: int
1894
- :param min_date: Min date of txs
1894
+ :param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1895
1895
  :type min_date: str
1896
- :param max_date: Max date of txs
1896
+ :param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
1897
1897
  :type max_date: str
1898
1898
  :param order: Sorting order
1899
1899
  :type order: str
1900
- :param token_currency: Return transactions of given token or base currency
1900
+ :param token_currency: Return transactions of given token or base currency e.g. 'WETH'
1901
1901
  :type token_currency: str
1902
1902
  :param page: Resumption token for retrieving the next page
1903
1903
  :type page: str
@@ -1968,10 +1968,10 @@ class AddressesApi:
1968
1968
  direction: Annotated[Optional[StrictStr], Field(description="Incoming or outgoing transactions")] = None,
1969
1969
  min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
1970
1970
  max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
1971
- min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
1972
- max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
1971
+ min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1972
+ max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
1973
1973
  order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
1974
- token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
1974
+ token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
1975
1975
  page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
1976
1976
  pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
1977
1977
  _request_timeout: Union[
@@ -2001,13 +2001,13 @@ class AddressesApi:
2001
2001
  :type min_height: int
2002
2002
  :param max_height: Return transactions up to (including) given height
2003
2003
  :type max_height: int
2004
- :param min_date: Min date of txs
2004
+ :param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
2005
2005
  :type min_date: str
2006
- :param max_date: Max date of txs
2006
+ :param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
2007
2007
  :type max_date: str
2008
2008
  :param order: Sorting order
2009
2009
  :type order: str
2010
- :param token_currency: Return transactions of given token or base currency
2010
+ :param token_currency: Return transactions of given token or base currency e.g. 'WETH'
2011
2011
  :type token_currency: str
2012
2012
  :param page: Resumption token for retrieving the next page
2013
2013
  :type page: str
@@ -2078,10 +2078,10 @@ class AddressesApi:
2078
2078
  direction: Annotated[Optional[StrictStr], Field(description="Incoming or outgoing transactions")] = None,
2079
2079
  min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
2080
2080
  max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
2081
- min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
2082
- max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
2081
+ min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
2082
+ max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
2083
2083
  order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
2084
- token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
2084
+ token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
2085
2085
  page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
2086
2086
  pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
2087
2087
  _request_timeout: Union[
@@ -2111,13 +2111,13 @@ class AddressesApi:
2111
2111
  :type min_height: int
2112
2112
  :param max_height: Return transactions up to (including) given height
2113
2113
  :type max_height: int
2114
- :param min_date: Min date of txs
2114
+ :param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
2115
2115
  :type min_date: str
2116
- :param max_date: Max date of txs
2116
+ :param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
2117
2117
  :type max_date: str
2118
2118
  :param order: Sorting order
2119
2119
  :type order: str
2120
- :param token_currency: Return transactions of given token or base currency
2120
+ :param token_currency: Return transactions of given token or base currency e.g. 'WETH'
2121
2121
  :type token_currency: str
2122
2122
  :param page: Resumption token for retrieving the next page
2123
2123
  :type page: str
@@ -3,7 +3,7 @@
3
3
  """
4
4
  GraphSense API
5
5
 
6
- GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. # noqa: E501
6
+ GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, clusters, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. ## Versioning and deprecation policy The API follows semantic versioning. Minor releases are additive and backwards-compatible; breaking changes only happen in major releases, which are rare and announced in advance. Deprecated endpoints and fields remain fully functional for at least six months after they are marked deprecated. During that window they are highlighted with a strikethrough in the docs and in generated clients, and responses from deprecated endpoints carry a `Deprecation` HTTP header that client tooling can detect. Replacement endpoints and fields are always introduced before the deprecated surface is removed. See the [full versioning and deprecation policy](https://github.com/graphsense/graphsense-lib/blob/master/README.md#rest-api-evolution-and-deprecation-policy) for details. # noqa: E501
7
7
 
8
8
  Contact: contact@iknaio.com
9
9
  Generated by: https://openapi-generator.tech
@@ -3,7 +3,7 @@
3
3
  """
4
4
  GraphSense API
5
5
 
6
- GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. # noqa: E501
6
+ GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, clusters, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. ## Versioning and deprecation policy The API follows semantic versioning. Minor releases are additive and backwards-compatible; breaking changes only happen in major releases, which are rare and announced in advance. Deprecated endpoints and fields remain fully functional for at least six months after they are marked deprecated. During that window they are highlighted with a strikethrough in the docs and in generated clients, and responses from deprecated endpoints carry a `Deprecation` HTTP header that client tooling can detect. Replacement endpoints and fields are always introduced before the deprecated surface is removed. See the [full versioning and deprecation policy](https://github.com/graphsense/graphsense-lib/blob/master/README.md#rest-api-evolution-and-deprecation-policy) for details. # noqa: E501
7
7
 
8
8
  Contact: contact@iknaio.com
9
9
  Generated by: https://openapi-generator.tech