graphsense-python 1.4.2__tar.gz → 1.8.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-1.4.2 → graphsense_python-1.8.0}/PKG-INFO +19 -9
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/README.md +14 -7
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/__init__.py +2 -2
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/addresses_api.py +196 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/blocks_api.py +130 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/bulk_api.py +11 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/entities_api.py +39 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/general_api.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/rates_api.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/tags_api.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/tokens_api.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/txs_api.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api_client.py +2 -2
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/configuration.py +3 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/exceptions.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/actor.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/actor_context.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/actors.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address_tag.py +12 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address_tag_all_of.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address_tags.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address_tx.py +13 -5
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address_tx_utxo.py +3 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/address_txs.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/block.py +3 -3
- graphsense_python-1.8.0/graphsense/model/block_at_date.py +274 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/concept.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/currency_stats.py +3 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/entity.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/entity_addresses.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/height.py +1 -1
- graphsense_python-1.8.0/graphsense/model/label_summary.py +311 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/labeled_item_ref.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/labeled_item_refs.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/link.py +13 -5
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/link_utxo.py +3 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/links.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/neighbor_address.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/neighbor_addresses.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/neighbor_entities.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/neighbor_entity.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/rate.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/rates.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_by_currency.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_labels.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_leaf.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_level1.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_level2.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_level3.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_level4.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_level5.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/search_result_level6.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/stats.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tag.py +12 -1
- graphsense_python-1.8.0/graphsense/model/tag_cloud_entry.py +268 -0
- graphsense_python-1.8.0/graphsense/model/tag_summary.py +296 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/taxonomy.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/token_config.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/token_configs.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/token_values.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx.py +13 -5
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx_account.py +19 -7
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx_ref.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx_summary.py +3 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx_utxo.py +3 -3
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx_value.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/tx_values.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/txs_account.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/values.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model_utils.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/models/__init__.py +4 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/rest.py +1 -1
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense_python.egg-info/PKG-INFO +19 -9
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense_python.egg-info/SOURCES.txt +5 -62
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/setup.py +10 -3
- graphsense-python-1.4.2/test/test_actor.py +0 -40
- graphsense-python-1.4.2/test/test_actor_context.py +0 -36
- graphsense-python-1.4.2/test/test_actors.py +0 -38
- graphsense-python-1.4.2/test/test_address.py +0 -44
- graphsense-python-1.4.2/test/test_address_tag.py +0 -40
- graphsense-python-1.4.2/test/test_address_tag_all_of.py +0 -36
- graphsense-python-1.4.2/test/test_address_tags.py +0 -38
- graphsense-python-1.4.2/test/test_address_tx.py +0 -44
- graphsense-python-1.4.2/test/test_address_tx_utxo.py +0 -40
- graphsense-python-1.4.2/test/test_address_txs.py +0 -38
- graphsense-python-1.4.2/test/test_addresses_api.py +0 -71
- graphsense-python-1.4.2/test/test_block.py +0 -38
- graphsense-python-1.4.2/test/test_blocks_api.py +0 -43
- graphsense-python-1.4.2/test/test_bulk_api.py +0 -43
- graphsense-python-1.4.2/test/test_concept.py +0 -36
- graphsense-python-1.4.2/test/test_currency_stats.py +0 -36
- graphsense-python-1.4.2/test/test_entities_api.py +0 -78
- graphsense-python-1.4.2/test/test_entity.py +0 -46
- graphsense-python-1.4.2/test/test_entity_addresses.py +0 -38
- graphsense-python-1.4.2/test/test_general_api.py +0 -43
- graphsense-python-1.4.2/test/test_height.py +0 -36
- graphsense-python-1.4.2/test/test_labeled_item_ref.py +0 -36
- graphsense-python-1.4.2/test/test_labeled_item_refs.py +0 -38
- graphsense-python-1.4.2/test/test_link.py +0 -44
- graphsense-python-1.4.2/test/test_link_utxo.py +0 -40
- graphsense-python-1.4.2/test/test_links.py +0 -38
- graphsense-python-1.4.2/test/test_neighbor_address.py +0 -42
- graphsense-python-1.4.2/test/test_neighbor_addresses.py +0 -38
- graphsense-python-1.4.2/test/test_neighbor_entities.py +0 -38
- graphsense-python-1.4.2/test/test_neighbor_entity.py +0 -42
- graphsense-python-1.4.2/test/test_rate.py +0 -36
- graphsense-python-1.4.2/test/test_rates.py +0 -40
- graphsense-python-1.4.2/test/test_rates_api.py +0 -36
- graphsense-python-1.4.2/test/test_search_result.py +0 -42
- graphsense-python-1.4.2/test/test_search_result_by_currency.py +0 -36
- graphsense-python-1.4.2/test/test_search_result_labels.py +0 -36
- graphsense-python-1.4.2/test/test_search_result_leaf.py +0 -40
- graphsense-python-1.4.2/test/test_search_result_level1.py +0 -42
- graphsense-python-1.4.2/test/test_search_result_level2.py +0 -42
- graphsense-python-1.4.2/test/test_search_result_level3.py +0 -42
- graphsense-python-1.4.2/test/test_search_result_level4.py +0 -42
- graphsense-python-1.4.2/test/test_search_result_level5.py +0 -42
- graphsense-python-1.4.2/test/test_search_result_level6.py +0 -42
- graphsense-python-1.4.2/test/test_stats.py +0 -38
- graphsense-python-1.4.2/test/test_tag.py +0 -36
- graphsense-python-1.4.2/test/test_tags_api.py +0 -64
- graphsense-python-1.4.2/test/test_taxonomy.py +0 -36
- graphsense-python-1.4.2/test/test_token_config.py +0 -36
- graphsense-python-1.4.2/test/test_token_configs.py +0 -38
- graphsense-python-1.4.2/test/test_token_values.py +0 -38
- graphsense-python-1.4.2/test/test_tokens_api.py +0 -36
- graphsense-python-1.4.2/test/test_tx.py +0 -46
- graphsense-python-1.4.2/test/test_tx_account.py +0 -40
- graphsense-python-1.4.2/test/test_tx_ref.py +0 -36
- graphsense-python-1.4.2/test/test_tx_summary.py +0 -38
- graphsense-python-1.4.2/test/test_tx_utxo.py +0 -42
- graphsense-python-1.4.2/test/test_tx_value.py +0 -38
- graphsense-python-1.4.2/test/test_tx_values.py +0 -38
- graphsense-python-1.4.2/test/test_txs_account.py +0 -38
- graphsense-python-1.4.2/test/test_txs_api.py +0 -64
- graphsense-python-1.4.2/test/test_values.py +0 -38
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/LICENSE +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/api/__init__.py +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/apis/__init__.py +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense/model/__init__.py +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense_python.egg-info/dependency_links.txt +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense_python.egg-info/requires.txt +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/graphsense_python.egg-info/top_level.txt +0 -0
- {graphsense-python-1.4.2 → graphsense_python-1.8.0}/setup.cfg +0 -0
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: graphsense-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.8.0
|
|
4
4
|
Summary: GraphSense API
|
|
5
|
-
Home-page:
|
|
5
|
+
Home-page: https://graphsense.github.io/
|
|
6
6
|
Author: Iknaio Cryptoasset Analytics GmbH
|
|
7
7
|
Author-email: contact@ikna.io
|
|
8
|
+
Project-URL: Source, https://github.com/graphsense/graphsense-python
|
|
9
|
+
Project-URL: Changelog, https://github.com/graphsense/blob/master/CHANGELOG.md
|
|
10
|
+
Project-URL: Tracker, https://github.com/graphsense/graphsense-python/issues
|
|
8
11
|
Keywords: OpenAPI,OpenAPI-Generator,GraphSense API
|
|
9
12
|
Requires-Python: >=3.6
|
|
10
13
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
@@ -17,8 +20,8 @@ GraphSense API provides programmatic access to various ledgers' addresses, entit
|
|
|
17
20
|
|
|
18
21
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
19
22
|
|
|
20
|
-
- API version: 1.
|
|
21
|
-
- Package version: 1.
|
|
23
|
+
- API version: 1.8.0
|
|
24
|
+
- Package version: 1.8.0
|
|
22
25
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
23
26
|
|
|
24
27
|
## Requirements.
|
|
@@ -28,12 +31,11 @@ Python >= 3.6
|
|
|
28
31
|
## Installation & Usage
|
|
29
32
|
### pip install
|
|
30
33
|
|
|
31
|
-
|
|
34
|
+
You can install graphsense-python via pypi using:
|
|
32
35
|
|
|
33
36
|
```sh
|
|
34
|
-
pip install
|
|
37
|
+
pip install graphsense-python
|
|
35
38
|
```
|
|
36
|
-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/graphsense/graphsense-python.git`)
|
|
37
39
|
|
|
38
40
|
Then import the package:
|
|
39
41
|
```python
|
|
@@ -71,6 +73,7 @@ from graphsense.model.entity import Entity
|
|
|
71
73
|
from graphsense.model.height import Height
|
|
72
74
|
from graphsense.model.links import Links
|
|
73
75
|
from graphsense.model.neighbor_addresses import NeighborAddresses
|
|
76
|
+
from graphsense.model.tag_summary import TagSummary
|
|
74
77
|
# Defining the host is optional and defaults to https://api.ikna.io
|
|
75
78
|
# See configuration.py for a list of all supported configuration parameters.
|
|
76
79
|
configuration = graphsense.Configuration(
|
|
@@ -94,11 +97,12 @@ with graphsense.ApiClient(configuration) as api_client:
|
|
|
94
97
|
# Create an instance of the API class
|
|
95
98
|
api_instance = addresses_api.AddressesApi(api_client)
|
|
96
99
|
currency = "btc" # str | The cryptocurrency code (e.g., btc)
|
|
97
|
-
address = "
|
|
100
|
+
address = "1Archive1n2C579dMsAu3iC6tWzuQJz8dN" # str | The cryptocurrency address
|
|
101
|
+
include_actors = True # bool | Whether to include information about the actor behind the address (optional) (default to True)
|
|
98
102
|
|
|
99
103
|
try:
|
|
100
104
|
# Get an address
|
|
101
|
-
api_response = api_instance.get_address(currency, address)
|
|
105
|
+
api_response = api_instance.get_address(currency, address, include_actors=include_actors)
|
|
102
106
|
pprint(api_response)
|
|
103
107
|
except graphsense.ApiException as e:
|
|
104
108
|
print("Exception when calling AddressesApi->get_address: %s\n" % e)
|
|
@@ -112,11 +116,13 @@ Class | Method | HTTP request | Description
|
|
|
112
116
|
------------ | ------------- | ------------- | -------------
|
|
113
117
|
*AddressesApi* | [**get_address**](docs/AddressesApi.md#get_address) | **GET** /{currency}/addresses/{address} | Get an address
|
|
114
118
|
*AddressesApi* | [**get_address_entity**](docs/AddressesApi.md#get_address_entity) | **GET** /{currency}/addresses/{address}/entity | Get the entity of an address
|
|
119
|
+
*AddressesApi* | [**get_tag_summary_by_address**](docs/AddressesApi.md#get_tag_summary_by_address) | **GET** /{currency}/addresses/{address}/tag_summary | Get attribution tag summary for a given address
|
|
115
120
|
*AddressesApi* | [**list_address_links**](docs/AddressesApi.md#list_address_links) | **GET** /{currency}/addresses/{address}/links | Get outgoing transactions between two addresses
|
|
116
121
|
*AddressesApi* | [**list_address_neighbors**](docs/AddressesApi.md#list_address_neighbors) | **GET** /{currency}/addresses/{address}/neighbors | Get an address's neighbors in the address graph
|
|
117
122
|
*AddressesApi* | [**list_address_txs**](docs/AddressesApi.md#list_address_txs) | **GET** /{currency}/addresses/{address}/txs | Get all transactions an address has been involved in
|
|
118
123
|
*AddressesApi* | [**list_tags_by_address**](docs/AddressesApi.md#list_tags_by_address) | **GET** /{currency}/addresses/{address}/tags | Get attribution tags for a given address
|
|
119
124
|
*BlocksApi* | [**get_block**](docs/BlocksApi.md#get_block) | **GET** /{currency}/blocks/{height} | Get a block by its height
|
|
125
|
+
*BlocksApi* | [**get_block_by_date**](docs/BlocksApi.md#get_block_by_date) | **GET** /{currency}/block_by_date/{date} | Get the closest blocks given a timestamp
|
|
120
126
|
*BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs | Get block transactions
|
|
121
127
|
*BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} | Get data as CSV in bulk
|
|
122
128
|
*BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} | Get data as JSON in bulk
|
|
@@ -156,11 +162,13 @@ Class | Method | HTTP request | Description
|
|
|
156
162
|
- [AddressTxUtxo](docs/AddressTxUtxo.md)
|
|
157
163
|
- [AddressTxs](docs/AddressTxs.md)
|
|
158
164
|
- [Block](docs/Block.md)
|
|
165
|
+
- [BlockAtDate](docs/BlockAtDate.md)
|
|
159
166
|
- [Concept](docs/Concept.md)
|
|
160
167
|
- [CurrencyStats](docs/CurrencyStats.md)
|
|
161
168
|
- [Entity](docs/Entity.md)
|
|
162
169
|
- [EntityAddresses](docs/EntityAddresses.md)
|
|
163
170
|
- [Height](docs/Height.md)
|
|
171
|
+
- [LabelSummary](docs/LabelSummary.md)
|
|
164
172
|
- [LabeledItemRef](docs/LabeledItemRef.md)
|
|
165
173
|
- [LabeledItemRefs](docs/LabeledItemRefs.md)
|
|
166
174
|
- [Link](docs/Link.md)
|
|
@@ -184,6 +192,8 @@ Class | Method | HTTP request | Description
|
|
|
184
192
|
- [SearchResultLevel6](docs/SearchResultLevel6.md)
|
|
185
193
|
- [Stats](docs/Stats.md)
|
|
186
194
|
- [Tag](docs/Tag.md)
|
|
195
|
+
- [TagCloudEntry](docs/TagCloudEntry.md)
|
|
196
|
+
- [TagSummary](docs/TagSummary.md)
|
|
187
197
|
- [Taxonomy](docs/Taxonomy.md)
|
|
188
198
|
- [TokenConfig](docs/TokenConfig.md)
|
|
189
199
|
- [TokenConfigs](docs/TokenConfigs.md)
|
|
@@ -3,8 +3,8 @@ GraphSense API provides programmatic access to various ledgers' addresses, entit
|
|
|
3
3
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
|
-
- API version: 1.
|
|
7
|
-
- Package version: 1.
|
|
6
|
+
- API version: 1.8.0
|
|
7
|
+
- Package version: 1.8.0
|
|
8
8
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
9
9
|
|
|
10
10
|
## Requirements.
|
|
@@ -14,12 +14,11 @@ Python >= 3.6
|
|
|
14
14
|
## Installation & Usage
|
|
15
15
|
### pip install
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
You can install graphsense-python via pypi using:
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
pip install
|
|
20
|
+
pip install graphsense-python
|
|
21
21
|
```
|
|
22
|
-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/graphsense/graphsense-python.git`)
|
|
23
22
|
|
|
24
23
|
Then import the package:
|
|
25
24
|
```python
|
|
@@ -57,6 +56,7 @@ from graphsense.model.entity import Entity
|
|
|
57
56
|
from graphsense.model.height import Height
|
|
58
57
|
from graphsense.model.links import Links
|
|
59
58
|
from graphsense.model.neighbor_addresses import NeighborAddresses
|
|
59
|
+
from graphsense.model.tag_summary import TagSummary
|
|
60
60
|
# Defining the host is optional and defaults to https://api.ikna.io
|
|
61
61
|
# See configuration.py for a list of all supported configuration parameters.
|
|
62
62
|
configuration = graphsense.Configuration(
|
|
@@ -80,11 +80,12 @@ with graphsense.ApiClient(configuration) as api_client:
|
|
|
80
80
|
# Create an instance of the API class
|
|
81
81
|
api_instance = addresses_api.AddressesApi(api_client)
|
|
82
82
|
currency = "btc" # str | The cryptocurrency code (e.g., btc)
|
|
83
|
-
address = "
|
|
83
|
+
address = "1Archive1n2C579dMsAu3iC6tWzuQJz8dN" # str | The cryptocurrency address
|
|
84
|
+
include_actors = True # bool | Whether to include information about the actor behind the address (optional) (default to True)
|
|
84
85
|
|
|
85
86
|
try:
|
|
86
87
|
# Get an address
|
|
87
|
-
api_response = api_instance.get_address(currency, address)
|
|
88
|
+
api_response = api_instance.get_address(currency, address, include_actors=include_actors)
|
|
88
89
|
pprint(api_response)
|
|
89
90
|
except graphsense.ApiException as e:
|
|
90
91
|
print("Exception when calling AddressesApi->get_address: %s\n" % e)
|
|
@@ -98,11 +99,13 @@ Class | Method | HTTP request | Description
|
|
|
98
99
|
------------ | ------------- | ------------- | -------------
|
|
99
100
|
*AddressesApi* | [**get_address**](docs/AddressesApi.md#get_address) | **GET** /{currency}/addresses/{address} | Get an address
|
|
100
101
|
*AddressesApi* | [**get_address_entity**](docs/AddressesApi.md#get_address_entity) | **GET** /{currency}/addresses/{address}/entity | Get the entity of an address
|
|
102
|
+
*AddressesApi* | [**get_tag_summary_by_address**](docs/AddressesApi.md#get_tag_summary_by_address) | **GET** /{currency}/addresses/{address}/tag_summary | Get attribution tag summary for a given address
|
|
101
103
|
*AddressesApi* | [**list_address_links**](docs/AddressesApi.md#list_address_links) | **GET** /{currency}/addresses/{address}/links | Get outgoing transactions between two addresses
|
|
102
104
|
*AddressesApi* | [**list_address_neighbors**](docs/AddressesApi.md#list_address_neighbors) | **GET** /{currency}/addresses/{address}/neighbors | Get an address's neighbors in the address graph
|
|
103
105
|
*AddressesApi* | [**list_address_txs**](docs/AddressesApi.md#list_address_txs) | **GET** /{currency}/addresses/{address}/txs | Get all transactions an address has been involved in
|
|
104
106
|
*AddressesApi* | [**list_tags_by_address**](docs/AddressesApi.md#list_tags_by_address) | **GET** /{currency}/addresses/{address}/tags | Get attribution tags for a given address
|
|
105
107
|
*BlocksApi* | [**get_block**](docs/BlocksApi.md#get_block) | **GET** /{currency}/blocks/{height} | Get a block by its height
|
|
108
|
+
*BlocksApi* | [**get_block_by_date**](docs/BlocksApi.md#get_block_by_date) | **GET** /{currency}/block_by_date/{date} | Get the closest blocks given a timestamp
|
|
106
109
|
*BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs | Get block transactions
|
|
107
110
|
*BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} | Get data as CSV in bulk
|
|
108
111
|
*BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} | Get data as JSON in bulk
|
|
@@ -142,11 +145,13 @@ Class | Method | HTTP request | Description
|
|
|
142
145
|
- [AddressTxUtxo](docs/AddressTxUtxo.md)
|
|
143
146
|
- [AddressTxs](docs/AddressTxs.md)
|
|
144
147
|
- [Block](docs/Block.md)
|
|
148
|
+
- [BlockAtDate](docs/BlockAtDate.md)
|
|
145
149
|
- [Concept](docs/Concept.md)
|
|
146
150
|
- [CurrencyStats](docs/CurrencyStats.md)
|
|
147
151
|
- [Entity](docs/Entity.md)
|
|
148
152
|
- [EntityAddresses](docs/EntityAddresses.md)
|
|
149
153
|
- [Height](docs/Height.md)
|
|
154
|
+
- [LabelSummary](docs/LabelSummary.md)
|
|
150
155
|
- [LabeledItemRef](docs/LabeledItemRef.md)
|
|
151
156
|
- [LabeledItemRefs](docs/LabeledItemRefs.md)
|
|
152
157
|
- [Link](docs/Link.md)
|
|
@@ -170,6 +175,8 @@ Class | Method | HTTP request | Description
|
|
|
170
175
|
- [SearchResultLevel6](docs/SearchResultLevel6.md)
|
|
171
176
|
- [Stats](docs/Stats.md)
|
|
172
177
|
- [Tag](docs/Tag.md)
|
|
178
|
+
- [TagCloudEntry](docs/TagCloudEntry.md)
|
|
179
|
+
- [TagSummary](docs/TagSummary.md)
|
|
173
180
|
- [Taxonomy](docs/Taxonomy.md)
|
|
174
181
|
- [TokenConfig](docs/TokenConfig.md)
|
|
175
182
|
- [TokenConfigs](docs/TokenConfigs.md)
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 1.
|
|
8
|
+
The version of the OpenAPI document: 1.8.0
|
|
9
9
|
Contact: contact@ikna.io
|
|
10
10
|
Generated by: https://openapi-generator.tech
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
__version__ = "1.
|
|
14
|
+
__version__ = "1.8.0"
|
|
15
15
|
|
|
16
16
|
# import ApiClient
|
|
17
17
|
from graphsense.api_client import ApiClient
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.
|
|
6
|
+
The version of the OpenAPI document: 1.8.0
|
|
7
7
|
Contact: contact@ikna.io
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -29,6 +29,7 @@ from graphsense.model.entity import Entity
|
|
|
29
29
|
from graphsense.model.height import Height
|
|
30
30
|
from graphsense.model.links import Links
|
|
31
31
|
from graphsense.model.neighbor_addresses import NeighborAddresses
|
|
32
|
+
from graphsense.model.tag_summary import TagSummary
|
|
32
33
|
|
|
33
34
|
|
|
34
35
|
class AddressesApi(object):
|
|
@@ -62,6 +63,7 @@ class AddressesApi(object):
|
|
|
62
63
|
address (str): The cryptocurrency address
|
|
63
64
|
|
|
64
65
|
Keyword Args:
|
|
66
|
+
include_actors (bool): Whether to include information about the actor behind the address. [optional] if omitted the server will use the default value of True
|
|
65
67
|
_return_http_data_only (bool): response data without head status
|
|
66
68
|
code and headers. Default is True.
|
|
67
69
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
@@ -127,6 +129,7 @@ class AddressesApi(object):
|
|
|
127
129
|
'all': [
|
|
128
130
|
'currency',
|
|
129
131
|
'address',
|
|
132
|
+
'include_actors',
|
|
130
133
|
],
|
|
131
134
|
'required': [
|
|
132
135
|
'currency',
|
|
@@ -149,14 +152,18 @@ class AddressesApi(object):
|
|
|
149
152
|
(str,),
|
|
150
153
|
'address':
|
|
151
154
|
(str,),
|
|
155
|
+
'include_actors':
|
|
156
|
+
(bool,),
|
|
152
157
|
},
|
|
153
158
|
'attribute_map': {
|
|
154
159
|
'currency': 'currency',
|
|
155
160
|
'address': 'address',
|
|
161
|
+
'include_actors': 'include_actors',
|
|
156
162
|
},
|
|
157
163
|
'location_map': {
|
|
158
164
|
'currency': 'path',
|
|
159
165
|
'address': 'path',
|
|
166
|
+
'include_actors': 'query',
|
|
160
167
|
},
|
|
161
168
|
'collection_format_map': {
|
|
162
169
|
}
|
|
@@ -190,6 +197,7 @@ class AddressesApi(object):
|
|
|
190
197
|
address (str): The cryptocurrency address
|
|
191
198
|
|
|
192
199
|
Keyword Args:
|
|
200
|
+
include_actors (bool): Whether to include information about the actor behind the address. [optional] if omitted the server will use the default value of True
|
|
193
201
|
_return_http_data_only (bool): response data without head status
|
|
194
202
|
code and headers. Default is True.
|
|
195
203
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
@@ -255,6 +263,7 @@ class AddressesApi(object):
|
|
|
255
263
|
'all': [
|
|
256
264
|
'currency',
|
|
257
265
|
'address',
|
|
266
|
+
'include_actors',
|
|
258
267
|
],
|
|
259
268
|
'required': [
|
|
260
269
|
'currency',
|
|
@@ -277,14 +286,18 @@ class AddressesApi(object):
|
|
|
277
286
|
(str,),
|
|
278
287
|
'address':
|
|
279
288
|
(str,),
|
|
289
|
+
'include_actors':
|
|
290
|
+
(bool,),
|
|
280
291
|
},
|
|
281
292
|
'attribute_map': {
|
|
282
293
|
'currency': 'currency',
|
|
283
294
|
'address': 'address',
|
|
295
|
+
'include_actors': 'include_actors',
|
|
284
296
|
},
|
|
285
297
|
'location_map': {
|
|
286
298
|
'currency': 'path',
|
|
287
299
|
'address': 'path',
|
|
300
|
+
'include_actors': 'query',
|
|
288
301
|
},
|
|
289
302
|
'collection_format_map': {
|
|
290
303
|
}
|
|
@@ -299,6 +312,140 @@ class AddressesApi(object):
|
|
|
299
312
|
callable=__get_address_entity
|
|
300
313
|
)
|
|
301
314
|
|
|
315
|
+
def __get_tag_summary_by_address(
|
|
316
|
+
self,
|
|
317
|
+
currency,
|
|
318
|
+
address,
|
|
319
|
+
**kwargs
|
|
320
|
+
):
|
|
321
|
+
"""Get attribution tag summary for a given address # noqa: E501
|
|
322
|
+
|
|
323
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
324
|
+
asynchronous HTTP request, please pass async_req=True
|
|
325
|
+
|
|
326
|
+
>>> thread = api.get_tag_summary_by_address(currency, address, async_req=True)
|
|
327
|
+
>>> result = thread.get()
|
|
328
|
+
|
|
329
|
+
Args:
|
|
330
|
+
currency (str): The cryptocurrency code (e.g., btc)
|
|
331
|
+
address (str): The cryptocurrency address
|
|
332
|
+
|
|
333
|
+
Keyword Args:
|
|
334
|
+
include_best_cluster_tag (bool): If the best cluster tag should be inherited to the address level, often helpful for exchanges where not every address is tagged.. [optional] if omitted the server will use the default value of False
|
|
335
|
+
_return_http_data_only (bool): response data without head status
|
|
336
|
+
code and headers. Default is True.
|
|
337
|
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
338
|
+
will be returned without reading/decoding response data.
|
|
339
|
+
Default is True.
|
|
340
|
+
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
341
|
+
one number provided, it will be total request timeout. It can also
|
|
342
|
+
be a pair (tuple) of (connection, read) timeouts.
|
|
343
|
+
Default is None.
|
|
344
|
+
_check_input_type (bool): specifies if type checking
|
|
345
|
+
should be done one the data sent to the server.
|
|
346
|
+
Default is True.
|
|
347
|
+
_check_return_type (bool): specifies if type checking
|
|
348
|
+
should be done one the data received from the server.
|
|
349
|
+
Default is True.
|
|
350
|
+
_host_index (int/None): specifies the index of the server
|
|
351
|
+
that we want to use.
|
|
352
|
+
Default is read from the configuration.
|
|
353
|
+
async_req (bool): execute request asynchronously
|
|
354
|
+
|
|
355
|
+
Returns:
|
|
356
|
+
TagSummary
|
|
357
|
+
If the method is called asynchronously, returns the request
|
|
358
|
+
thread.
|
|
359
|
+
"""
|
|
360
|
+
kwargs['async_req'] = kwargs.get(
|
|
361
|
+
'async_req', False
|
|
362
|
+
)
|
|
363
|
+
kwargs['_return_http_data_only'] = kwargs.get(
|
|
364
|
+
'_return_http_data_only', True
|
|
365
|
+
)
|
|
366
|
+
kwargs['_preload_content'] = kwargs.get(
|
|
367
|
+
'_preload_content', True
|
|
368
|
+
)
|
|
369
|
+
kwargs['_request_timeout'] = kwargs.get(
|
|
370
|
+
'_request_timeout', None
|
|
371
|
+
)
|
|
372
|
+
kwargs['_check_input_type'] = kwargs.get(
|
|
373
|
+
'_check_input_type', True
|
|
374
|
+
)
|
|
375
|
+
kwargs['_check_return_type'] = kwargs.get(
|
|
376
|
+
'_check_return_type', True
|
|
377
|
+
)
|
|
378
|
+
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
379
|
+
kwargs['currency'] = \
|
|
380
|
+
currency
|
|
381
|
+
kwargs['address'] = \
|
|
382
|
+
address
|
|
383
|
+
return self.call_with_http_info(**kwargs)
|
|
384
|
+
|
|
385
|
+
self.get_tag_summary_by_address = _Endpoint(
|
|
386
|
+
settings={
|
|
387
|
+
'response_type': (TagSummary,),
|
|
388
|
+
'auth': [
|
|
389
|
+
'api_key'
|
|
390
|
+
],
|
|
391
|
+
'endpoint_path': '/{currency}/addresses/{address}/tag_summary',
|
|
392
|
+
'operation_id': 'get_tag_summary_by_address',
|
|
393
|
+
'http_method': 'GET',
|
|
394
|
+
'servers': None,
|
|
395
|
+
},
|
|
396
|
+
params_map={
|
|
397
|
+
'all': [
|
|
398
|
+
'currency',
|
|
399
|
+
'address',
|
|
400
|
+
'include_best_cluster_tag',
|
|
401
|
+
],
|
|
402
|
+
'required': [
|
|
403
|
+
'currency',
|
|
404
|
+
'address',
|
|
405
|
+
],
|
|
406
|
+
'nullable': [
|
|
407
|
+
],
|
|
408
|
+
'enum': [
|
|
409
|
+
],
|
|
410
|
+
'validation': [
|
|
411
|
+
]
|
|
412
|
+
},
|
|
413
|
+
root_map={
|
|
414
|
+
'validations': {
|
|
415
|
+
},
|
|
416
|
+
'allowed_values': {
|
|
417
|
+
},
|
|
418
|
+
'openapi_types': {
|
|
419
|
+
'currency':
|
|
420
|
+
(str,),
|
|
421
|
+
'address':
|
|
422
|
+
(str,),
|
|
423
|
+
'include_best_cluster_tag':
|
|
424
|
+
(bool,),
|
|
425
|
+
},
|
|
426
|
+
'attribute_map': {
|
|
427
|
+
'currency': 'currency',
|
|
428
|
+
'address': 'address',
|
|
429
|
+
'include_best_cluster_tag': 'include_best_cluster_tag',
|
|
430
|
+
},
|
|
431
|
+
'location_map': {
|
|
432
|
+
'currency': 'path',
|
|
433
|
+
'address': 'path',
|
|
434
|
+
'include_best_cluster_tag': 'query',
|
|
435
|
+
},
|
|
436
|
+
'collection_format_map': {
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
headers_map={
|
|
440
|
+
'accept': [
|
|
441
|
+
'application/json'
|
|
442
|
+
],
|
|
443
|
+
'content_type': [],
|
|
444
|
+
},
|
|
445
|
+
api_client=api_client,
|
|
446
|
+
callable=__get_tag_summary_by_address
|
|
447
|
+
)
|
|
448
|
+
|
|
302
449
|
def __list_address_links(
|
|
303
450
|
self,
|
|
304
451
|
currency,
|
|
@@ -320,6 +467,9 @@ class AddressesApi(object):
|
|
|
320
467
|
neighbor (str): Neighbor address
|
|
321
468
|
|
|
322
469
|
Keyword Args:
|
|
470
|
+
min_height (Height): Return transactions starting from given height. [optional]
|
|
471
|
+
max_height (Height): Return transactions up to (including) given height. [optional]
|
|
472
|
+
order (str): Sorting order. [optional] if omitted the server will use the default value of "desc"
|
|
323
473
|
page (str): Resumption token for retrieving the next page. [optional]
|
|
324
474
|
pagesize (int): Number of items returned in a single page. [optional]
|
|
325
475
|
_return_http_data_only (bool): response data without head status
|
|
@@ -390,6 +540,9 @@ class AddressesApi(object):
|
|
|
390
540
|
'currency',
|
|
391
541
|
'address',
|
|
392
542
|
'neighbor',
|
|
543
|
+
'min_height',
|
|
544
|
+
'max_height',
|
|
545
|
+
'order',
|
|
393
546
|
'page',
|
|
394
547
|
'pagesize',
|
|
395
548
|
],
|
|
@@ -401,6 +554,7 @@ class AddressesApi(object):
|
|
|
401
554
|
'nullable': [
|
|
402
555
|
],
|
|
403
556
|
'enum': [
|
|
557
|
+
'order',
|
|
404
558
|
],
|
|
405
559
|
'validation': [
|
|
406
560
|
'pagesize',
|
|
@@ -414,6 +568,11 @@ class AddressesApi(object):
|
|
|
414
568
|
},
|
|
415
569
|
},
|
|
416
570
|
'allowed_values': {
|
|
571
|
+
('order',): {
|
|
572
|
+
|
|
573
|
+
"ASC": "asc",
|
|
574
|
+
"DESC": "desc"
|
|
575
|
+
},
|
|
417
576
|
},
|
|
418
577
|
'openapi_types': {
|
|
419
578
|
'currency':
|
|
@@ -422,6 +581,12 @@ class AddressesApi(object):
|
|
|
422
581
|
(str,),
|
|
423
582
|
'neighbor':
|
|
424
583
|
(str,),
|
|
584
|
+
'min_height':
|
|
585
|
+
(Height,),
|
|
586
|
+
'max_height':
|
|
587
|
+
(Height,),
|
|
588
|
+
'order':
|
|
589
|
+
(str,),
|
|
425
590
|
'page':
|
|
426
591
|
(str,),
|
|
427
592
|
'pagesize':
|
|
@@ -431,6 +596,9 @@ class AddressesApi(object):
|
|
|
431
596
|
'currency': 'currency',
|
|
432
597
|
'address': 'address',
|
|
433
598
|
'neighbor': 'neighbor',
|
|
599
|
+
'min_height': 'min_height',
|
|
600
|
+
'max_height': 'max_height',
|
|
601
|
+
'order': 'order',
|
|
434
602
|
'page': 'page',
|
|
435
603
|
'pagesize': 'pagesize',
|
|
436
604
|
},
|
|
@@ -438,6 +606,9 @@ class AddressesApi(object):
|
|
|
438
606
|
'currency': 'path',
|
|
439
607
|
'address': 'path',
|
|
440
608
|
'neighbor': 'query',
|
|
609
|
+
'min_height': 'query',
|
|
610
|
+
'max_height': 'query',
|
|
611
|
+
'order': 'query',
|
|
441
612
|
'page': 'query',
|
|
442
613
|
'pagesize': 'query',
|
|
443
614
|
},
|
|
@@ -477,6 +648,7 @@ class AddressesApi(object):
|
|
|
477
648
|
Keyword Args:
|
|
478
649
|
only_ids ([str]): Restrict result to given set of comma separated addresses. [optional]
|
|
479
650
|
include_labels (bool): Whether to include labels of first page of address tags. [optional] if omitted the server will use the default value of False
|
|
651
|
+
include_actors (bool): Whether to include information about the actor behind the address. [optional] if omitted the server will use the default value of True
|
|
480
652
|
page (str): Resumption token for retrieving the next page. [optional]
|
|
481
653
|
pagesize (int): Number of items returned in a single page. [optional]
|
|
482
654
|
_return_http_data_only (bool): response data without head status
|
|
@@ -549,6 +721,7 @@ class AddressesApi(object):
|
|
|
549
721
|
'direction',
|
|
550
722
|
'only_ids',
|
|
551
723
|
'include_labels',
|
|
724
|
+
'include_actors',
|
|
552
725
|
'page',
|
|
553
726
|
'pagesize',
|
|
554
727
|
],
|
|
@@ -591,6 +764,8 @@ class AddressesApi(object):
|
|
|
591
764
|
([str],),
|
|
592
765
|
'include_labels':
|
|
593
766
|
(bool,),
|
|
767
|
+
'include_actors':
|
|
768
|
+
(bool,),
|
|
594
769
|
'page':
|
|
595
770
|
(str,),
|
|
596
771
|
'pagesize':
|
|
@@ -602,6 +777,7 @@ class AddressesApi(object):
|
|
|
602
777
|
'direction': 'direction',
|
|
603
778
|
'only_ids': 'only_ids',
|
|
604
779
|
'include_labels': 'include_labels',
|
|
780
|
+
'include_actors': 'include_actors',
|
|
605
781
|
'page': 'page',
|
|
606
782
|
'pagesize': 'pagesize',
|
|
607
783
|
},
|
|
@@ -611,6 +787,7 @@ class AddressesApi(object):
|
|
|
611
787
|
'direction': 'query',
|
|
612
788
|
'only_ids': 'query',
|
|
613
789
|
'include_labels': 'query',
|
|
790
|
+
'include_actors': 'query',
|
|
614
791
|
'page': 'query',
|
|
615
792
|
'pagesize': 'query',
|
|
616
793
|
},
|
|
@@ -650,6 +827,7 @@ class AddressesApi(object):
|
|
|
650
827
|
direction (str): Incoming or outgoing transactions. [optional]
|
|
651
828
|
min_height (Height): Return transactions starting from given height. [optional]
|
|
652
829
|
max_height (Height): Return transactions up to (including) given height. [optional]
|
|
830
|
+
order (str): Sorting order. [optional] if omitted the server will use the default value of "desc"
|
|
653
831
|
token_currency (str): Return transactions of given token currency. [optional]
|
|
654
832
|
page (str): Resumption token for retrieving the next page. [optional]
|
|
655
833
|
pagesize (int): Number of items returned in a single page. [optional]
|
|
@@ -721,6 +899,7 @@ class AddressesApi(object):
|
|
|
721
899
|
'direction',
|
|
722
900
|
'min_height',
|
|
723
901
|
'max_height',
|
|
902
|
+
'order',
|
|
724
903
|
'token_currency',
|
|
725
904
|
'page',
|
|
726
905
|
'pagesize',
|
|
@@ -733,6 +912,7 @@ class AddressesApi(object):
|
|
|
733
912
|
],
|
|
734
913
|
'enum': [
|
|
735
914
|
'direction',
|
|
915
|
+
'order',
|
|
736
916
|
],
|
|
737
917
|
'validation': [
|
|
738
918
|
'pagesize',
|
|
@@ -751,6 +931,11 @@ class AddressesApi(object):
|
|
|
751
931
|
"IN": "in",
|
|
752
932
|
"OUT": "out"
|
|
753
933
|
},
|
|
934
|
+
('order',): {
|
|
935
|
+
|
|
936
|
+
"ASC": "asc",
|
|
937
|
+
"DESC": "desc"
|
|
938
|
+
},
|
|
754
939
|
},
|
|
755
940
|
'openapi_types': {
|
|
756
941
|
'currency':
|
|
@@ -763,6 +948,8 @@ class AddressesApi(object):
|
|
|
763
948
|
(Height,),
|
|
764
949
|
'max_height':
|
|
765
950
|
(Height,),
|
|
951
|
+
'order':
|
|
952
|
+
(str,),
|
|
766
953
|
'token_currency':
|
|
767
954
|
(str,),
|
|
768
955
|
'page':
|
|
@@ -776,6 +963,7 @@ class AddressesApi(object):
|
|
|
776
963
|
'direction': 'direction',
|
|
777
964
|
'min_height': 'min_height',
|
|
778
965
|
'max_height': 'max_height',
|
|
966
|
+
'order': 'order',
|
|
779
967
|
'token_currency': 'token_currency',
|
|
780
968
|
'page': 'page',
|
|
781
969
|
'pagesize': 'pagesize',
|
|
@@ -786,6 +974,7 @@ class AddressesApi(object):
|
|
|
786
974
|
'direction': 'query',
|
|
787
975
|
'min_height': 'query',
|
|
788
976
|
'max_height': 'query',
|
|
977
|
+
'order': 'query',
|
|
789
978
|
'token_currency': 'query',
|
|
790
979
|
'page': 'query',
|
|
791
980
|
'pagesize': 'query',
|
|
@@ -824,6 +1013,7 @@ class AddressesApi(object):
|
|
|
824
1013
|
Keyword Args:
|
|
825
1014
|
page (str): Resumption token for retrieving the next page. [optional]
|
|
826
1015
|
pagesize (int): Number of items returned in a single page. [optional]
|
|
1016
|
+
include_best_cluster_tag (bool): If the best cluster tag should be inherited to the address level, often helpful for exchanges where not every address is tagged.. [optional] if omitted the server will use the default value of False
|
|
827
1017
|
_return_http_data_only (bool): response data without head status
|
|
828
1018
|
code and headers. Default is True.
|
|
829
1019
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
@@ -891,6 +1081,7 @@ class AddressesApi(object):
|
|
|
891
1081
|
'address',
|
|
892
1082
|
'page',
|
|
893
1083
|
'pagesize',
|
|
1084
|
+
'include_best_cluster_tag',
|
|
894
1085
|
],
|
|
895
1086
|
'required': [
|
|
896
1087
|
'currency',
|
|
@@ -922,18 +1113,22 @@ class AddressesApi(object):
|
|
|
922
1113
|
(str,),
|
|
923
1114
|
'pagesize':
|
|
924
1115
|
(int,),
|
|
1116
|
+
'include_best_cluster_tag':
|
|
1117
|
+
(bool,),
|
|
925
1118
|
},
|
|
926
1119
|
'attribute_map': {
|
|
927
1120
|
'currency': 'currency',
|
|
928
1121
|
'address': 'address',
|
|
929
1122
|
'page': 'page',
|
|
930
1123
|
'pagesize': 'pagesize',
|
|
1124
|
+
'include_best_cluster_tag': 'include_best_cluster_tag',
|
|
931
1125
|
},
|
|
932
1126
|
'location_map': {
|
|
933
1127
|
'currency': 'path',
|
|
934
1128
|
'address': 'path',
|
|
935
1129
|
'page': 'query',
|
|
936
1130
|
'pagesize': 'query',
|
|
1131
|
+
'include_best_cluster_tag': 'query',
|
|
937
1132
|
},
|
|
938
1133
|
'collection_format_map': {
|
|
939
1134
|
}
|