graphsense-python 2.9.8__tar.gz → 2.10.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.
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/PKG-INFO +16 -3
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/README.md +15 -2
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/__init__.py +27 -1
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/addresses_api.py +36 -36
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/entities_api.py +36 -36
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/tags_api.py +0 -15
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/txs_api.py +25 -7
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api_client.py +1 -1
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/configuration.py +2 -2
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/__init__.py +13 -0
- graphsense_python-2.10.0/graphsense/models/address_output.py +87 -0
- graphsense_python-2.10.0/graphsense/models/change_heuristics.py +112 -0
- graphsense_python-2.10.0/graphsense/models/coin_join_consensus.py +89 -0
- graphsense_python-2.10.0/graphsense/models/coin_join_heuristics.py +114 -0
- graphsense_python-2.10.0/graphsense/models/consensus_entry.py +93 -0
- graphsense_python-2.10.0/graphsense/models/direct_change_heuristic.py +95 -0
- graphsense_python-2.10.0/graphsense/models/join_market_heuristic.py +91 -0
- graphsense_python-2.10.0/graphsense/models/multi_input_change_heuristic.py +95 -0
- graphsense_python-2.10.0/graphsense/models/one_time_change_heuristic.py +95 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tx_utxo.py +8 -2
- graphsense_python-2.10.0/graphsense/models/utxo_heuristics.py +96 -0
- graphsense_python-2.10.0/graphsense/models/wasabi_heuristic.py +100 -0
- graphsense_python-2.10.0/graphsense/models/whirlpool_coin_join_heuristic.py +93 -0
- graphsense_python-2.10.0/graphsense/models/whirlpool_tx0_heuristic.py +91 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense_python.egg-info/PKG-INFO +16 -3
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense_python.egg-info/SOURCES.txt +13 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/pyproject.toml +1 -1
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/__init__.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/blocks_api.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/bulk_api.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/general_api.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/rates_api.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api/tokens_api.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/api_response.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/compat.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/exceptions.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/__init__.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/actor.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/actor_context.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/address.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/address_tag.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/address_tags.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/address_tx.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/address_tx_utxo.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/address_txs.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/block.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/block_at_date.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/concept.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/currency_stats.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/entity.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/entity_addresses.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/external_conversion.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/http_validation_error.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/label_summary.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/labeled_item_ref.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/link.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/link_utxo.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/links.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/links_inner.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/location_inner.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/neighbor_address.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/neighbor_addresses.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/neighbor_entities.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/neighbor_entity.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/rate.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/rates.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/related_address.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/related_addresses.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_by_currency.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_level1.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_level2.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_level3.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_level4.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_level5.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/search_result_level6.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/stats.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tag.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tag_cloud_entry.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tag_summary.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/taxonomy.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/token_config.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/token_configs.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tx.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tx_account.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tx_ref.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tx_summary.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tx_utxo.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/tx_value.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/user_reported_tag.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/user_tag_report_response.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/validation_error.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/model/values.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/actor.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/actor_context.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/address.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/address_tag.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/address_tags.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/address_tx.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/address_tx_utxo.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/address_txs.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/block.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/block_at_date.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/concept.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/currency_stats.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/entity.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/entity_addresses.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/external_conversion.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/http_validation_error.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/label_summary.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/labeled_item_ref.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/link.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/link_utxo.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/links.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/links_inner.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/location_inner.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/neighbor_address.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/neighbor_addresses.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/neighbor_entities.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/neighbor_entity.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/rate.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/rates.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/related_address.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/related_addresses.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_by_currency.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_level1.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_level2.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_level3.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_level4.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_level5.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/search_result_level6.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/stats.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tag.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tag_cloud_entry.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tag_summary.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/taxonomy.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/token_config.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/token_configs.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tx.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tx_account.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tx_ref.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tx_summary.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/tx_value.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/user_reported_tag.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/user_tag_report_response.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/validation_error.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/models/values.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/py.typed +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense/rest.py +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense_python.egg-info/dependency_links.txt +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense_python.egg-info/requires.txt +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/graphsense_python.egg-info/top_level.txt +0 -0
- {graphsense_python-2.9.8 → graphsense_python-2.10.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: graphsense-python
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.10.0
|
|
4
4
|
Summary: GraphSense API
|
|
5
5
|
Author-email: Iknaio Cryptoasset Analytics GmbH <contact@iknaio.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -21,8 +21,8 @@ GraphSense API provides programmatic access to blockchain analytics data across
|
|
|
21
21
|
|
|
22
22
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
23
23
|
|
|
24
|
-
- API version: 2.
|
|
25
|
-
- Package version: 2.
|
|
24
|
+
- API version: 2.10.0
|
|
25
|
+
- Package version: 2.10.0
|
|
26
26
|
- Generator version: 7.19.0
|
|
27
27
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
28
28
|
For more information, please visit [https://www.iknaio.com/](https://www.iknaio.com/)
|
|
@@ -160,6 +160,7 @@ Class | Method | HTTP request | Description
|
|
|
160
160
|
- [Actor](docs/Actor.md)
|
|
161
161
|
- [ActorContext](docs/ActorContext.md)
|
|
162
162
|
- [Address](docs/Address.md)
|
|
163
|
+
- [AddressOutput](docs/AddressOutput.md)
|
|
163
164
|
- [AddressTag](docs/AddressTag.md)
|
|
164
165
|
- [AddressTags](docs/AddressTags.md)
|
|
165
166
|
- [AddressTx](docs/AddressTx.md)
|
|
@@ -167,12 +168,18 @@ Class | Method | HTTP request | Description
|
|
|
167
168
|
- [AddressTxs](docs/AddressTxs.md)
|
|
168
169
|
- [Block](docs/Block.md)
|
|
169
170
|
- [BlockAtDate](docs/BlockAtDate.md)
|
|
171
|
+
- [ChangeHeuristics](docs/ChangeHeuristics.md)
|
|
172
|
+
- [CoinJoinConsensus](docs/CoinJoinConsensus.md)
|
|
173
|
+
- [CoinJoinHeuristics](docs/CoinJoinHeuristics.md)
|
|
170
174
|
- [Concept](docs/Concept.md)
|
|
175
|
+
- [ConsensusEntry](docs/ConsensusEntry.md)
|
|
171
176
|
- [CurrencyStats](docs/CurrencyStats.md)
|
|
177
|
+
- [DirectChangeHeuristic](docs/DirectChangeHeuristic.md)
|
|
172
178
|
- [Entity](docs/Entity.md)
|
|
173
179
|
- [EntityAddresses](docs/EntityAddresses.md)
|
|
174
180
|
- [ExternalConversion](docs/ExternalConversion.md)
|
|
175
181
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
182
|
+
- [JoinMarketHeuristic](docs/JoinMarketHeuristic.md)
|
|
176
183
|
- [LabelSummary](docs/LabelSummary.md)
|
|
177
184
|
- [LabeledItemRef](docs/LabeledItemRef.md)
|
|
178
185
|
- [Link](docs/Link.md)
|
|
@@ -180,10 +187,12 @@ Class | Method | HTTP request | Description
|
|
|
180
187
|
- [Links](docs/Links.md)
|
|
181
188
|
- [LinksInner](docs/LinksInner.md)
|
|
182
189
|
- [LocationInner](docs/LocationInner.md)
|
|
190
|
+
- [MultiInputChangeHeuristic](docs/MultiInputChangeHeuristic.md)
|
|
183
191
|
- [NeighborAddress](docs/NeighborAddress.md)
|
|
184
192
|
- [NeighborAddresses](docs/NeighborAddresses.md)
|
|
185
193
|
- [NeighborEntities](docs/NeighborEntities.md)
|
|
186
194
|
- [NeighborEntity](docs/NeighborEntity.md)
|
|
195
|
+
- [OneTimeChangeHeuristic](docs/OneTimeChangeHeuristic.md)
|
|
187
196
|
- [Rate](docs/Rate.md)
|
|
188
197
|
- [Rates](docs/Rates.md)
|
|
189
198
|
- [RelatedAddress](docs/RelatedAddress.md)
|
|
@@ -211,8 +220,12 @@ Class | Method | HTTP request | Description
|
|
|
211
220
|
- [TxValue](docs/TxValue.md)
|
|
212
221
|
- [UserReportedTag](docs/UserReportedTag.md)
|
|
213
222
|
- [UserTagReportResponse](docs/UserTagReportResponse.md)
|
|
223
|
+
- [UtxoHeuristics](docs/UtxoHeuristics.md)
|
|
214
224
|
- [ValidationError](docs/ValidationError.md)
|
|
215
225
|
- [Values](docs/Values.md)
|
|
226
|
+
- [WasabiHeuristic](docs/WasabiHeuristic.md)
|
|
227
|
+
- [WhirlpoolCoinJoinHeuristic](docs/WhirlpoolCoinJoinHeuristic.md)
|
|
228
|
+
- [WhirlpoolTx0Heuristic](docs/WhirlpoolTx0Heuristic.md)
|
|
216
229
|
|
|
217
230
|
|
|
218
231
|
<a id="documentation-for-authorization"></a>
|
|
@@ -3,8 +3,8 @@ GraphSense API provides programmatic access to blockchain analytics data across
|
|
|
3
3
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
|
-
- API version: 2.
|
|
7
|
-
- Package version: 2.
|
|
6
|
+
- API version: 2.10.0
|
|
7
|
+
- Package version: 2.10.0
|
|
8
8
|
- Generator version: 7.19.0
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
For more information, please visit [https://www.iknaio.com/](https://www.iknaio.com/)
|
|
@@ -142,6 +142,7 @@ Class | Method | HTTP request | Description
|
|
|
142
142
|
- [Actor](docs/Actor.md)
|
|
143
143
|
- [ActorContext](docs/ActorContext.md)
|
|
144
144
|
- [Address](docs/Address.md)
|
|
145
|
+
- [AddressOutput](docs/AddressOutput.md)
|
|
145
146
|
- [AddressTag](docs/AddressTag.md)
|
|
146
147
|
- [AddressTags](docs/AddressTags.md)
|
|
147
148
|
- [AddressTx](docs/AddressTx.md)
|
|
@@ -149,12 +150,18 @@ Class | Method | HTTP request | Description
|
|
|
149
150
|
- [AddressTxs](docs/AddressTxs.md)
|
|
150
151
|
- [Block](docs/Block.md)
|
|
151
152
|
- [BlockAtDate](docs/BlockAtDate.md)
|
|
153
|
+
- [ChangeHeuristics](docs/ChangeHeuristics.md)
|
|
154
|
+
- [CoinJoinConsensus](docs/CoinJoinConsensus.md)
|
|
155
|
+
- [CoinJoinHeuristics](docs/CoinJoinHeuristics.md)
|
|
152
156
|
- [Concept](docs/Concept.md)
|
|
157
|
+
- [ConsensusEntry](docs/ConsensusEntry.md)
|
|
153
158
|
- [CurrencyStats](docs/CurrencyStats.md)
|
|
159
|
+
- [DirectChangeHeuristic](docs/DirectChangeHeuristic.md)
|
|
154
160
|
- [Entity](docs/Entity.md)
|
|
155
161
|
- [EntityAddresses](docs/EntityAddresses.md)
|
|
156
162
|
- [ExternalConversion](docs/ExternalConversion.md)
|
|
157
163
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
164
|
+
- [JoinMarketHeuristic](docs/JoinMarketHeuristic.md)
|
|
158
165
|
- [LabelSummary](docs/LabelSummary.md)
|
|
159
166
|
- [LabeledItemRef](docs/LabeledItemRef.md)
|
|
160
167
|
- [Link](docs/Link.md)
|
|
@@ -162,10 +169,12 @@ Class | Method | HTTP request | Description
|
|
|
162
169
|
- [Links](docs/Links.md)
|
|
163
170
|
- [LinksInner](docs/LinksInner.md)
|
|
164
171
|
- [LocationInner](docs/LocationInner.md)
|
|
172
|
+
- [MultiInputChangeHeuristic](docs/MultiInputChangeHeuristic.md)
|
|
165
173
|
- [NeighborAddress](docs/NeighborAddress.md)
|
|
166
174
|
- [NeighborAddresses](docs/NeighborAddresses.md)
|
|
167
175
|
- [NeighborEntities](docs/NeighborEntities.md)
|
|
168
176
|
- [NeighborEntity](docs/NeighborEntity.md)
|
|
177
|
+
- [OneTimeChangeHeuristic](docs/OneTimeChangeHeuristic.md)
|
|
169
178
|
- [Rate](docs/Rate.md)
|
|
170
179
|
- [Rates](docs/Rates.md)
|
|
171
180
|
- [RelatedAddress](docs/RelatedAddress.md)
|
|
@@ -193,8 +202,12 @@ Class | Method | HTTP request | Description
|
|
|
193
202
|
- [TxValue](docs/TxValue.md)
|
|
194
203
|
- [UserReportedTag](docs/UserReportedTag.md)
|
|
195
204
|
- [UserTagReportResponse](docs/UserTagReportResponse.md)
|
|
205
|
+
- [UtxoHeuristics](docs/UtxoHeuristics.md)
|
|
196
206
|
- [ValidationError](docs/ValidationError.md)
|
|
197
207
|
- [Values](docs/Values.md)
|
|
208
|
+
- [WasabiHeuristic](docs/WasabiHeuristic.md)
|
|
209
|
+
- [WhirlpoolCoinJoinHeuristic](docs/WhirlpoolCoinJoinHeuristic.md)
|
|
210
|
+
- [WhirlpoolTx0Heuristic](docs/WhirlpoolTx0Heuristic.md)
|
|
198
211
|
|
|
199
212
|
|
|
200
213
|
<a id="documentation-for-authorization"></a>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"""
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
__version__ = "2.
|
|
15
|
+
__version__ = "2.10.0"
|
|
16
16
|
|
|
17
17
|
# Define package exports
|
|
18
18
|
__all__ = [
|
|
@@ -37,6 +37,7 @@ __all__ = [
|
|
|
37
37
|
"Actor",
|
|
38
38
|
"ActorContext",
|
|
39
39
|
"Address",
|
|
40
|
+
"AddressOutput",
|
|
40
41
|
"AddressTag",
|
|
41
42
|
"AddressTags",
|
|
42
43
|
"AddressTx",
|
|
@@ -44,12 +45,18 @@ __all__ = [
|
|
|
44
45
|
"AddressTxs",
|
|
45
46
|
"Block",
|
|
46
47
|
"BlockAtDate",
|
|
48
|
+
"ChangeHeuristics",
|
|
49
|
+
"CoinJoinConsensus",
|
|
50
|
+
"CoinJoinHeuristics",
|
|
47
51
|
"Concept",
|
|
52
|
+
"ConsensusEntry",
|
|
48
53
|
"CurrencyStats",
|
|
54
|
+
"DirectChangeHeuristic",
|
|
49
55
|
"Entity",
|
|
50
56
|
"EntityAddresses",
|
|
51
57
|
"ExternalConversion",
|
|
52
58
|
"HTTPValidationError",
|
|
59
|
+
"JoinMarketHeuristic",
|
|
53
60
|
"LabelSummary",
|
|
54
61
|
"LabeledItemRef",
|
|
55
62
|
"Link",
|
|
@@ -57,10 +64,12 @@ __all__ = [
|
|
|
57
64
|
"Links",
|
|
58
65
|
"LinksInner",
|
|
59
66
|
"LocationInner",
|
|
67
|
+
"MultiInputChangeHeuristic",
|
|
60
68
|
"NeighborAddress",
|
|
61
69
|
"NeighborAddresses",
|
|
62
70
|
"NeighborEntities",
|
|
63
71
|
"NeighborEntity",
|
|
72
|
+
"OneTimeChangeHeuristic",
|
|
64
73
|
"Rate",
|
|
65
74
|
"Rates",
|
|
66
75
|
"RelatedAddress",
|
|
@@ -88,8 +97,12 @@ __all__ = [
|
|
|
88
97
|
"TxValue",
|
|
89
98
|
"UserReportedTag",
|
|
90
99
|
"UserTagReportResponse",
|
|
100
|
+
"UtxoHeuristics",
|
|
91
101
|
"ValidationError",
|
|
92
102
|
"Values",
|
|
103
|
+
"WasabiHeuristic",
|
|
104
|
+
"WhirlpoolCoinJoinHeuristic",
|
|
105
|
+
"WhirlpoolTx0Heuristic",
|
|
93
106
|
]
|
|
94
107
|
|
|
95
108
|
# Import compat module first to apply BaseModel patches
|
|
@@ -121,6 +134,7 @@ from graphsense.exceptions import ApiException as ApiException
|
|
|
121
134
|
from graphsense.models.actor import Actor as Actor
|
|
122
135
|
from graphsense.models.actor_context import ActorContext as ActorContext
|
|
123
136
|
from graphsense.models.address import Address as Address
|
|
137
|
+
from graphsense.models.address_output import AddressOutput as AddressOutput
|
|
124
138
|
from graphsense.models.address_tag import AddressTag as AddressTag
|
|
125
139
|
from graphsense.models.address_tags import AddressTags as AddressTags
|
|
126
140
|
from graphsense.models.address_tx import AddressTx as AddressTx
|
|
@@ -128,12 +142,18 @@ from graphsense.models.address_tx_utxo import AddressTxUtxo as AddressTxUtxo
|
|
|
128
142
|
from graphsense.models.address_txs import AddressTxs as AddressTxs
|
|
129
143
|
from graphsense.models.block import Block as Block
|
|
130
144
|
from graphsense.models.block_at_date import BlockAtDate as BlockAtDate
|
|
145
|
+
from graphsense.models.change_heuristics import ChangeHeuristics as ChangeHeuristics
|
|
146
|
+
from graphsense.models.coin_join_consensus import CoinJoinConsensus as CoinJoinConsensus
|
|
147
|
+
from graphsense.models.coin_join_heuristics import CoinJoinHeuristics as CoinJoinHeuristics
|
|
131
148
|
from graphsense.models.concept import Concept as Concept
|
|
149
|
+
from graphsense.models.consensus_entry import ConsensusEntry as ConsensusEntry
|
|
132
150
|
from graphsense.models.currency_stats import CurrencyStats as CurrencyStats
|
|
151
|
+
from graphsense.models.direct_change_heuristic import DirectChangeHeuristic as DirectChangeHeuristic
|
|
133
152
|
from graphsense.models.entity import Entity as Entity
|
|
134
153
|
from graphsense.models.entity_addresses import EntityAddresses as EntityAddresses
|
|
135
154
|
from graphsense.models.external_conversion import ExternalConversion as ExternalConversion
|
|
136
155
|
from graphsense.models.http_validation_error import HTTPValidationError as HTTPValidationError
|
|
156
|
+
from graphsense.models.join_market_heuristic import JoinMarketHeuristic as JoinMarketHeuristic
|
|
137
157
|
from graphsense.models.label_summary import LabelSummary as LabelSummary
|
|
138
158
|
from graphsense.models.labeled_item_ref import LabeledItemRef as LabeledItemRef
|
|
139
159
|
from graphsense.models.link import Link as Link
|
|
@@ -141,10 +161,12 @@ from graphsense.models.link_utxo import LinkUtxo as LinkUtxo
|
|
|
141
161
|
from graphsense.models.links import Links as Links
|
|
142
162
|
from graphsense.models.links_inner import LinksInner as LinksInner
|
|
143
163
|
from graphsense.models.location_inner import LocationInner as LocationInner
|
|
164
|
+
from graphsense.models.multi_input_change_heuristic import MultiInputChangeHeuristic as MultiInputChangeHeuristic
|
|
144
165
|
from graphsense.models.neighbor_address import NeighborAddress as NeighborAddress
|
|
145
166
|
from graphsense.models.neighbor_addresses import NeighborAddresses as NeighborAddresses
|
|
146
167
|
from graphsense.models.neighbor_entities import NeighborEntities as NeighborEntities
|
|
147
168
|
from graphsense.models.neighbor_entity import NeighborEntity as NeighborEntity
|
|
169
|
+
from graphsense.models.one_time_change_heuristic import OneTimeChangeHeuristic as OneTimeChangeHeuristic
|
|
148
170
|
from graphsense.models.rate import Rate as Rate
|
|
149
171
|
from graphsense.models.rates import Rates as Rates
|
|
150
172
|
from graphsense.models.related_address import RelatedAddress as RelatedAddress
|
|
@@ -172,6 +194,10 @@ from graphsense.models.tx_utxo import TxUtxo as TxUtxo
|
|
|
172
194
|
from graphsense.models.tx_value import TxValue as TxValue
|
|
173
195
|
from graphsense.models.user_reported_tag import UserReportedTag as UserReportedTag
|
|
174
196
|
from graphsense.models.user_tag_report_response import UserTagReportResponse as UserTagReportResponse
|
|
197
|
+
from graphsense.models.utxo_heuristics import UtxoHeuristics as UtxoHeuristics
|
|
175
198
|
from graphsense.models.validation_error import ValidationError as ValidationError
|
|
176
199
|
from graphsense.models.values import Values as Values
|
|
200
|
+
from graphsense.models.wasabi_heuristic import WasabiHeuristic as WasabiHeuristic
|
|
201
|
+
from graphsense.models.whirlpool_coin_join_heuristic import WhirlpoolCoinJoinHeuristic as WhirlpoolCoinJoinHeuristic
|
|
202
|
+
from graphsense.models.whirlpool_tx0_heuristic import WhirlpoolTx0Heuristic as WhirlpoolTx0Heuristic
|
|
177
203
|
|
|
@@ -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
|
|
@@ -1091,10 +1091,10 @@ class EntitiesApi:
|
|
|
1091
1091
|
neighbor: Annotated[StrictInt, Field(description="Neighbor entity ID")],
|
|
1092
1092
|
min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
|
|
1093
1093
|
max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
|
|
1094
|
-
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
|
|
1095
|
-
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
|
|
1094
|
+
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1095
|
+
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1096
1096
|
order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
|
|
1097
|
-
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
|
|
1097
|
+
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
|
|
1098
1098
|
page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
|
|
1099
1099
|
pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
|
|
1100
1100
|
_request_timeout: Union[
|
|
@@ -1124,13 +1124,13 @@ class EntitiesApi:
|
|
|
1124
1124
|
:type min_height: int
|
|
1125
1125
|
:param max_height: Return transactions up to (including) given height
|
|
1126
1126
|
:type max_height: int
|
|
1127
|
-
:param min_date: Min date of txs
|
|
1127
|
+
:param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1128
1128
|
:type min_date: str
|
|
1129
|
-
:param max_date: Max date of txs
|
|
1129
|
+
:param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1130
1130
|
:type max_date: str
|
|
1131
1131
|
:param order: Sorting order
|
|
1132
1132
|
:type order: str
|
|
1133
|
-
:param token_currency: Return transactions of given token or base currency
|
|
1133
|
+
:param token_currency: Return transactions of given token or base currency e.g. 'WETH'
|
|
1134
1134
|
:type token_currency: str
|
|
1135
1135
|
:param page: Resumption token for retrieving the next page
|
|
1136
1136
|
:type page: str
|
|
@@ -1201,10 +1201,10 @@ class EntitiesApi:
|
|
|
1201
1201
|
neighbor: Annotated[StrictInt, Field(description="Neighbor entity ID")],
|
|
1202
1202
|
min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
|
|
1203
1203
|
max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
|
|
1204
|
-
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
|
|
1205
|
-
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
|
|
1204
|
+
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1205
|
+
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1206
1206
|
order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
|
|
1207
|
-
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
|
|
1207
|
+
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
|
|
1208
1208
|
page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
|
|
1209
1209
|
pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
|
|
1210
1210
|
_request_timeout: Union[
|
|
@@ -1234,13 +1234,13 @@ class EntitiesApi:
|
|
|
1234
1234
|
:type min_height: int
|
|
1235
1235
|
:param max_height: Return transactions up to (including) given height
|
|
1236
1236
|
:type max_height: int
|
|
1237
|
-
:param min_date: Min date of txs
|
|
1237
|
+
:param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1238
1238
|
:type min_date: str
|
|
1239
|
-
:param max_date: Max date of txs
|
|
1239
|
+
:param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1240
1240
|
:type max_date: str
|
|
1241
1241
|
:param order: Sorting order
|
|
1242
1242
|
:type order: str
|
|
1243
|
-
:param token_currency: Return transactions of given token or base currency
|
|
1243
|
+
:param token_currency: Return transactions of given token or base currency e.g. 'WETH'
|
|
1244
1244
|
:type token_currency: str
|
|
1245
1245
|
:param page: Resumption token for retrieving the next page
|
|
1246
1246
|
:type page: str
|
|
@@ -1311,10 +1311,10 @@ class EntitiesApi:
|
|
|
1311
1311
|
neighbor: Annotated[StrictInt, Field(description="Neighbor entity ID")],
|
|
1312
1312
|
min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
|
|
1313
1313
|
max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
|
|
1314
|
-
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
|
|
1315
|
-
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
|
|
1314
|
+
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1315
|
+
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1316
1316
|
order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
|
|
1317
|
-
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
|
|
1317
|
+
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
|
|
1318
1318
|
page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
|
|
1319
1319
|
pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
|
|
1320
1320
|
_request_timeout: Union[
|
|
@@ -1344,13 +1344,13 @@ class EntitiesApi:
|
|
|
1344
1344
|
:type min_height: int
|
|
1345
1345
|
:param max_height: Return transactions up to (including) given height
|
|
1346
1346
|
:type max_height: int
|
|
1347
|
-
:param min_date: Min date of txs
|
|
1347
|
+
:param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1348
1348
|
:type min_date: str
|
|
1349
|
-
:param max_date: Max date of txs
|
|
1349
|
+
:param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1350
1350
|
:type max_date: str
|
|
1351
1351
|
:param order: Sorting order
|
|
1352
1352
|
:type order: str
|
|
1353
|
-
:param token_currency: Return transactions of given token or base currency
|
|
1353
|
+
:param token_currency: Return transactions of given token or base currency e.g. 'WETH'
|
|
1354
1354
|
:type token_currency: str
|
|
1355
1355
|
:param page: Resumption token for retrieving the next page
|
|
1356
1356
|
:type page: str
|
|
@@ -1950,10 +1950,10 @@ class EntitiesApi:
|
|
|
1950
1950
|
direction: Annotated[Optional[StrictStr], Field(description="Incoming or outgoing transactions")] = None,
|
|
1951
1951
|
min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
|
|
1952
1952
|
max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
|
|
1953
|
-
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
|
|
1954
|
-
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
|
|
1953
|
+
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1954
|
+
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
1955
1955
|
order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
|
|
1956
|
-
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
|
|
1956
|
+
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
|
|
1957
1957
|
page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
|
|
1958
1958
|
pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
|
|
1959
1959
|
_request_timeout: Union[
|
|
@@ -1983,13 +1983,13 @@ class EntitiesApi:
|
|
|
1983
1983
|
:type min_height: int
|
|
1984
1984
|
:param max_height: Return transactions up to (including) given height
|
|
1985
1985
|
:type max_height: int
|
|
1986
|
-
:param min_date: Min date of txs
|
|
1986
|
+
:param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1987
1987
|
:type min_date: str
|
|
1988
|
-
:param max_date: Max date of txs
|
|
1988
|
+
:param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
1989
1989
|
:type max_date: str
|
|
1990
1990
|
:param order: Sorting order
|
|
1991
1991
|
:type order: str
|
|
1992
|
-
:param token_currency: Return transactions of given token or base currency
|
|
1992
|
+
:param token_currency: Return transactions of given token or base currency e.g. 'WETH'
|
|
1993
1993
|
:type token_currency: str
|
|
1994
1994
|
:param page: Resumption token for retrieving the next page
|
|
1995
1995
|
:type page: str
|
|
@@ -2060,10 +2060,10 @@ class EntitiesApi:
|
|
|
2060
2060
|
direction: Annotated[Optional[StrictStr], Field(description="Incoming or outgoing transactions")] = None,
|
|
2061
2061
|
min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
|
|
2062
2062
|
max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
|
|
2063
|
-
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
|
|
2064
|
-
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
|
|
2063
|
+
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
2064
|
+
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
2065
2065
|
order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
|
|
2066
|
-
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
|
|
2066
|
+
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
|
|
2067
2067
|
page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
|
|
2068
2068
|
pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
|
|
2069
2069
|
_request_timeout: Union[
|
|
@@ -2093,13 +2093,13 @@ class EntitiesApi:
|
|
|
2093
2093
|
:type min_height: int
|
|
2094
2094
|
:param max_height: Return transactions up to (including) given height
|
|
2095
2095
|
:type max_height: int
|
|
2096
|
-
:param min_date: Min date of txs
|
|
2096
|
+
:param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
2097
2097
|
:type min_date: str
|
|
2098
|
-
:param max_date: Max date of txs
|
|
2098
|
+
:param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
2099
2099
|
:type max_date: str
|
|
2100
2100
|
:param order: Sorting order
|
|
2101
2101
|
:type order: str
|
|
2102
|
-
:param token_currency: Return transactions of given token or base currency
|
|
2102
|
+
:param token_currency: Return transactions of given token or base currency e.g. 'WETH'
|
|
2103
2103
|
:type token_currency: str
|
|
2104
2104
|
:param page: Resumption token for retrieving the next page
|
|
2105
2105
|
:type page: str
|
|
@@ -2170,10 +2170,10 @@ class EntitiesApi:
|
|
|
2170
2170
|
direction: Annotated[Optional[StrictStr], Field(description="Incoming or outgoing transactions")] = None,
|
|
2171
2171
|
min_height: Annotated[Optional[StrictInt], Field(description="Return transactions starting from given height")] = None,
|
|
2172
2172
|
max_height: Annotated[Optional[StrictInt], Field(description="Return transactions up to (including) given height")] = None,
|
|
2173
|
-
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs")] = None,
|
|
2174
|
-
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs")] = None,
|
|
2173
|
+
min_date: Annotated[Optional[StrictStr], Field(description="Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
2174
|
+
max_date: Annotated[Optional[StrictStr], Field(description="Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ")] = None,
|
|
2175
2175
|
order: Annotated[Optional[StrictStr], Field(description="Sorting order")] = None,
|
|
2176
|
-
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency")] = None,
|
|
2176
|
+
token_currency: Annotated[Optional[StrictStr], Field(description="Return transactions of given token or base currency e.g. 'WETH'")] = None,
|
|
2177
2177
|
page: Annotated[Optional[StrictStr], Field(description="Resumption token for retrieving the next page")] = None,
|
|
2178
2178
|
pagesize: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items returned in a single page")] = None,
|
|
2179
2179
|
_request_timeout: Union[
|
|
@@ -2203,13 +2203,13 @@ class EntitiesApi:
|
|
|
2203
2203
|
:type min_height: int
|
|
2204
2204
|
:param max_height: Return transactions up to (including) given height
|
|
2205
2205
|
:type max_height: int
|
|
2206
|
-
:param min_date: Min date of txs
|
|
2206
|
+
:param min_date: Min date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
2207
2207
|
:type min_date: str
|
|
2208
|
-
:param max_date: Max date of txs
|
|
2208
|
+
:param max_date: Max date of txs in the format YYYY-MM-DDTHH:MM:SSZ
|
|
2209
2209
|
:type max_date: str
|
|
2210
2210
|
:param order: Sorting order
|
|
2211
2211
|
:type order: str
|
|
2212
|
-
:param token_currency: Return transactions of given token or base currency
|
|
2212
|
+
:param token_currency: Return transactions of given token or base currency e.g. 'WETH'
|
|
2213
2213
|
:type token_currency: str
|
|
2214
2214
|
:param page: Resumption token for retrieving the next page
|
|
2215
2215
|
:type page: str
|