graphsense-python 2.10.0__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.10.0 → graphsense_python-2.11.0}/PKG-INFO +35 -4
  2. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/README.md +34 -3
  3. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/__init__.py +12 -2
  4. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/__init__.py +1 -0
  5. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/addresses_api.py +1 -1
  6. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/blocks_api.py +1 -1
  7. {graphsense_python-2.10.0 → 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.10.0 → graphsense_python-2.11.0}/graphsense/api/entities_api.py +19 -13
  10. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/general_api.py +1 -1
  11. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/rates_api.py +1 -1
  12. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/tags_api.py +1 -1
  13. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/tokens_api.py +1 -1
  14. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api/txs_api.py +1 -1
  15. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api_client.py +2 -2
  16. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/configuration.py +3 -3
  17. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/exceptions.py +1 -1
  18. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/__init__.py +5 -1
  19. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/actor.py +1 -1
  20. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/actor_context.py +1 -1
  21. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address.py +10 -6
  22. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address_output.py +1 -1
  23. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address_tag.py +9 -5
  24. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address_tags.py +1 -1
  25. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address_tx.py +1 -1
  26. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address_tx_utxo.py +1 -1
  27. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/address_txs.py +1 -1
  28. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/block.py +1 -1
  29. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/block_at_date.py +1 -1
  30. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/change_heuristics.py +1 -1
  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.10.0 → graphsense_python-2.11.0}/graphsense/models/coin_join_consensus.py +1 -1
  34. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/coin_join_heuristics.py +1 -1
  35. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/concept.py +1 -1
  36. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/consensus_entry.py +1 -1
  37. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/currency_stats.py +1 -1
  38. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/direct_change_heuristic.py +1 -1
  39. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/entity.py +2 -2
  40. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/entity_addresses.py +2 -2
  41. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/external_conversion.py +1 -1
  42. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/http_validation_error.py +1 -1
  43. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/join_market_heuristic.py +1 -1
  44. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/label_summary.py +1 -1
  45. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/labeled_item_ref.py +1 -1
  46. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/link.py +1 -1
  47. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/link_utxo.py +1 -1
  48. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/links.py +1 -1
  49. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/links_inner.py +1 -1
  50. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/location_inner.py +1 -1
  51. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/multi_input_change_heuristic.py +1 -1
  52. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/neighbor_address.py +1 -1
  53. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/neighbor_addresses.py +1 -1
  54. graphsense_python-2.10.0/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.10.0 → 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.10.0 → graphsense_python-2.11.0}/graphsense/models/one_time_change_heuristic.py +1 -1
  59. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/rate.py +1 -1
  60. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/rates.py +1 -1
  61. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/related_address.py +1 -1
  62. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/related_addresses.py +1 -1
  63. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result.py +1 -1
  64. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_by_currency.py +1 -1
  65. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_level1.py +1 -1
  66. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_level2.py +1 -1
  67. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_level3.py +1 -1
  68. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_level4.py +1 -1
  69. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_level5.py +1 -1
  70. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/search_result_level6.py +1 -1
  71. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/stats.py +1 -1
  72. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tag.py +1 -1
  73. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tag_cloud_entry.py +1 -1
  74. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tag_summary.py +1 -1
  75. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/taxonomy.py +1 -1
  76. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/token_config.py +1 -1
  77. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/token_configs.py +1 -1
  78. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tx.py +1 -1
  79. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tx_account.py +1 -1
  80. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tx_ref.py +1 -1
  81. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tx_summary.py +1 -1
  82. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tx_utxo.py +1 -1
  83. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/tx_value.py +1 -1
  84. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/user_reported_tag.py +1 -1
  85. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/user_tag_report_response.py +1 -1
  86. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/utxo_heuristics.py +1 -1
  87. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/validation_error.py +1 -1
  88. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/values.py +1 -1
  89. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/wasabi_heuristic.py +1 -1
  90. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/whirlpool_coin_join_heuristic.py +1 -1
  91. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/models/whirlpool_tx0_heuristic.py +1 -1
  92. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/rest.py +1 -1
  93. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense_python.egg-info/PKG-INFO +35 -4
  94. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense_python.egg-info/SOURCES.txt +5 -0
  95. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/pyproject.toml +1 -1
  96. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/api_response.py +0 -0
  97. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/compat.py +0 -0
  98. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/__init__.py +0 -0
  99. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/actor.py +0 -0
  100. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/actor_context.py +0 -0
  101. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/address.py +0 -0
  102. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/address_tag.py +0 -0
  103. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/address_tags.py +0 -0
  104. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/address_tx.py +0 -0
  105. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/address_tx_utxo.py +0 -0
  106. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/address_txs.py +0 -0
  107. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/block.py +0 -0
  108. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/block_at_date.py +0 -0
  109. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/concept.py +0 -0
  110. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/currency_stats.py +0 -0
  111. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/entity.py +0 -0
  112. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/entity_addresses.py +0 -0
  113. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/external_conversion.py +0 -0
  114. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/http_validation_error.py +0 -0
  115. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/label_summary.py +0 -0
  116. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/labeled_item_ref.py +0 -0
  117. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/link.py +0 -0
  118. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/link_utxo.py +0 -0
  119. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/links.py +0 -0
  120. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/links_inner.py +0 -0
  121. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/location_inner.py +0 -0
  122. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/neighbor_address.py +0 -0
  123. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/neighbor_addresses.py +0 -0
  124. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/neighbor_entities.py +0 -0
  125. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/neighbor_entity.py +0 -0
  126. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/rate.py +0 -0
  127. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/rates.py +0 -0
  128. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/related_address.py +0 -0
  129. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/related_addresses.py +0 -0
  130. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result.py +0 -0
  131. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_by_currency.py +0 -0
  132. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_level1.py +0 -0
  133. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_level2.py +0 -0
  134. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_level3.py +0 -0
  135. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_level4.py +0 -0
  136. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_level5.py +0 -0
  137. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/search_result_level6.py +0 -0
  138. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/stats.py +0 -0
  139. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tag.py +0 -0
  140. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tag_cloud_entry.py +0 -0
  141. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tag_summary.py +0 -0
  142. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/taxonomy.py +0 -0
  143. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/token_config.py +0 -0
  144. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/token_configs.py +0 -0
  145. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tx.py +0 -0
  146. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tx_account.py +0 -0
  147. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tx_ref.py +0 -0
  148. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tx_summary.py +0 -0
  149. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tx_utxo.py +0 -0
  150. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/tx_value.py +0 -0
  151. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/user_reported_tag.py +0 -0
  152. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/user_tag_report_response.py +0 -0
  153. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/validation_error.py +0 -0
  154. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/model/values.py +0 -0
  155. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense/py.typed +0 -0
  156. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense_python.egg-info/dependency_links.txt +0 -0
  157. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense_python.egg-info/requires.txt +0 -0
  158. {graphsense_python-2.10.0 → graphsense_python-2.11.0}/graphsense_python.egg-info/top_level.txt +0 -0
  159. {graphsense_python-2.10.0 → 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.10.0
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.10.0
25
- - Package version: 2.10.0
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
@@ -169,6 +196,8 @@ Class | Method | HTTP request | Description
169
196
  - [Block](docs/Block.md)
170
197
  - [BlockAtDate](docs/BlockAtDate.md)
171
198
  - [ChangeHeuristics](docs/ChangeHeuristics.md)
199
+ - [Cluster](docs/Cluster.md)
200
+ - [ClusterAddresses](docs/ClusterAddresses.md)
172
201
  - [CoinJoinConsensus](docs/CoinJoinConsensus.md)
173
202
  - [CoinJoinHeuristics](docs/CoinJoinHeuristics.md)
174
203
  - [Concept](docs/Concept.md)
@@ -190,6 +219,8 @@ Class | Method | HTTP request | Description
190
219
  - [MultiInputChangeHeuristic](docs/MultiInputChangeHeuristic.md)
191
220
  - [NeighborAddress](docs/NeighborAddress.md)
192
221
  - [NeighborAddresses](docs/NeighborAddresses.md)
222
+ - [NeighborCluster](docs/NeighborCluster.md)
223
+ - [NeighborClusters](docs/NeighborClusters.md)
193
224
  - [NeighborEntities](docs/NeighborEntities.md)
194
225
  - [NeighborEntity](docs/NeighborEntity.md)
195
226
  - [OneTimeChangeHeuristic](docs/OneTimeChangeHeuristic.md)
@@ -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.10.0
7
- - Package version: 2.10.0
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
@@ -151,6 +178,8 @@ Class | Method | HTTP request | Description
151
178
  - [Block](docs/Block.md)
152
179
  - [BlockAtDate](docs/BlockAtDate.md)
153
180
  - [ChangeHeuristics](docs/ChangeHeuristics.md)
181
+ - [Cluster](docs/Cluster.md)
182
+ - [ClusterAddresses](docs/ClusterAddresses.md)
154
183
  - [CoinJoinConsensus](docs/CoinJoinConsensus.md)
155
184
  - [CoinJoinHeuristics](docs/CoinJoinHeuristics.md)
156
185
  - [Concept](docs/Concept.md)
@@ -172,6 +201,8 @@ Class | Method | HTTP request | Description
172
201
  - [MultiInputChangeHeuristic](docs/MultiInputChangeHeuristic.md)
173
202
  - [NeighborAddress](docs/NeighborAddress.md)
174
203
  - [NeighborAddresses](docs/NeighborAddresses.md)
204
+ - [NeighborCluster](docs/NeighborCluster.md)
205
+ - [NeighborClusters](docs/NeighborClusters.md)
175
206
  - [NeighborEntities](docs/NeighborEntities.md)
176
207
  - [NeighborEntity](docs/NeighborEntity.md)
177
208
  - [OneTimeChangeHeuristic](docs/OneTimeChangeHeuristic.md)
@@ -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.10.0"
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",
@@ -46,6 +47,8 @@ __all__ = [
46
47
  "Block",
47
48
  "BlockAtDate",
48
49
  "ChangeHeuristics",
50
+ "Cluster",
51
+ "ClusterAddresses",
49
52
  "CoinJoinConsensus",
50
53
  "CoinJoinHeuristics",
51
54
  "Concept",
@@ -67,6 +70,8 @@ __all__ = [
67
70
  "MultiInputChangeHeuristic",
68
71
  "NeighborAddress",
69
72
  "NeighborAddresses",
73
+ "NeighborCluster",
74
+ "NeighborClusters",
70
75
  "NeighborEntities",
71
76
  "NeighborEntity",
72
77
  "OneTimeChangeHeuristic",
@@ -112,6 +117,7 @@ import graphsense.compat # noqa: F401
112
117
  from graphsense.api.addresses_api import AddressesApi as AddressesApi
113
118
  from graphsense.api.blocks_api import BlocksApi as BlocksApi
114
119
  from graphsense.api.bulk_api import BulkApi as BulkApi
120
+ from graphsense.api.clusters_api import ClustersApi as ClustersApi
115
121
  from graphsense.api.entities_api import EntitiesApi as EntitiesApi
116
122
  from graphsense.api.general_api import GeneralApi as GeneralApi
117
123
  from graphsense.api.rates_api import RatesApi as RatesApi
@@ -143,6 +149,8 @@ from graphsense.models.address_txs import AddressTxs as AddressTxs
143
149
  from graphsense.models.block import Block as Block
144
150
  from graphsense.models.block_at_date import BlockAtDate as BlockAtDate
145
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
146
154
  from graphsense.models.coin_join_consensus import CoinJoinConsensus as CoinJoinConsensus
147
155
  from graphsense.models.coin_join_heuristics import CoinJoinHeuristics as CoinJoinHeuristics
148
156
  from graphsense.models.concept import Concept as Concept
@@ -164,6 +172,8 @@ from graphsense.models.location_inner import LocationInner as LocationInner
164
172
  from graphsense.models.multi_input_change_heuristic import MultiInputChangeHeuristic as MultiInputChangeHeuristic
165
173
  from graphsense.models.neighbor_address import NeighborAddress as NeighborAddress
166
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
167
177
  from graphsense.models.neighbor_entities import NeighborEntities as NeighborEntities
168
178
  from graphsense.models.neighbor_entity import NeighborEntity as NeighborEntity
169
179
  from graphsense.models.one_time_change_heuristic import OneTimeChangeHeuristic as OneTimeChangeHeuristic
@@ -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
@@ -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