Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit 0f4d290

Browse files
committed
regenerate from spec 1.8.0
1 parent cf3a4af commit 0f4d290

74 files changed

Lines changed: 103 additions & 80 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ GraphSense API provides programmatic access to various ledgers' addresses, entit
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 1.7.0
7-
- Package version: 1.7.0
6+
- API version: 1.8.0
7+
- Package version: 1.8.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

docs/AddressesApi.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ with graphsense.ApiClient(configuration) as api_client:
145145
api_instance = addresses_api.AddressesApi(api_client)
146146
currency = "btc" # str | The cryptocurrency code (e.g., btc)
147147
address = "1Archive1n2C579dMsAu3iC6tWzuQJz8dN" # str | The cryptocurrency address
148+
include_actors = True # bool | Whether to include information about the actor behind the address (optional) if omitted the server will use the default value of True
148149

149150
# example passing only required values which don't have defaults set
150151
try:
@@ -153,6 +154,15 @@ with graphsense.ApiClient(configuration) as api_client:
153154
pprint(api_response)
154155
except graphsense.ApiException as e:
155156
print("Exception when calling AddressesApi->get_address_entity: %s\n" % e)
157+
158+
# example passing only required values which don't have defaults set
159+
# and optional values
160+
try:
161+
# Get the entity of an address
162+
api_response = api_instance.get_address_entity(currency, address, include_actors=include_actors)
163+
pprint(api_response)
164+
except graphsense.ApiException as e:
165+
print("Exception when calling AddressesApi->get_address_entity: %s\n" % e)
156166
```
157167

158168

@@ -162,6 +172,7 @@ Name | Type | Description | Notes
162172
------------- | ------------- | ------------- | -------------
163173
**currency** | **str**| The cryptocurrency code (e.g., btc) |
164174
**address** | **str**| The cryptocurrency address |
175+
**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
165176
**_preload_content** | **bool** | If False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. | [optional] default is True.
166177
**async_req** | **bool** | Execute request asynchronously | [optional] default is False.
167178

@@ -325,7 +336,7 @@ with graphsense.ApiClient(configuration) as api_client:
325336
api_instance = addresses_api.AddressesApi(api_client)
326337
currency = "btc" # str | The cryptocurrency code (e.g., btc)
327338
address = "1Archive1n2C579dMsAu3iC6tWzuQJz8dN" # str | The cryptocurrency address
328-
neighbor = "1Archive1n2C579dMsAu3iC6tWzuQJz8dN" # str | Neighbor address
339+
neighbor = "1FKCzy3BEtiZDhRDtivp7Y7RVb9edg5BH7" # str | Neighbor address
329340
min_height = Height(1) # Height | Return transactions starting from given height (optional)
330341
max_height = Height(2) # Height | Return transactions up to (including) given height (optional)
331342
order = "desc" # str | Sorting order (optional) if omitted the server will use the default value of "desc"

graphsense/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
66
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
77
8-
The version of the OpenAPI document: 1.7.0
8+
The version of the OpenAPI document: 1.8.0
99
Contact: contact@ikna.io
1010
Generated by: https://openapi-generator.tech
1111
"""
1212

1313

14-
__version__ = "1.7.0"
14+
__version__ = "1.8.0"
1515

1616
# import ApiClient
1717
from graphsense.api_client import ApiClient

graphsense/api/addresses_api.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""
@@ -197,6 +197,7 @@ def __get_address_entity(
197197
address (str): The cryptocurrency address
198198
199199
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
200201
_return_http_data_only (bool): response data without head status
201202
code and headers. Default is True.
202203
_preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -262,6 +263,7 @@ def __get_address_entity(
262263
'all': [
263264
'currency',
264265
'address',
266+
'include_actors',
265267
],
266268
'required': [
267269
'currency',
@@ -284,14 +286,18 @@ def __get_address_entity(
284286
(str,),
285287
'address':
286288
(str,),
289+
'include_actors':
290+
(bool,),
287291
},
288292
'attribute_map': {
289293
'currency': 'currency',
290294
'address': 'address',
295+
'include_actors': 'include_actors',
291296
},
292297
'location_map': {
293298
'currency': 'path',
294299
'address': 'path',
300+
'include_actors': 'query',
295301
},
296302
'collection_format_map': {
297303
}

graphsense/api/blocks_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""

graphsense/api/bulk_api.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""
@@ -168,7 +168,10 @@ def __bulk_csv(
168168
"LIST_ENTITY_LINKS": "list_entity_links",
169169
"LIST_ENTITY_ADDRESSES": "list_entity_addresses",
170170
"GET_TX": "get_tx",
171+
"LIST_TOKEN_TXS": "list_token_txs",
171172
"GET_TX_IO": "get_tx_io",
173+
"GET_SPENT_IN_TXS": "get_spent_in_txs",
174+
"GET_SPENDING_TXS": "get_spending_txs",
172175
"GET_EXCHANGE_RATES": "get_exchange_rates"
173176
},
174177
},
@@ -340,7 +343,10 @@ def __bulk_json(
340343
"LIST_ENTITY_LINKS": "list_entity_links",
341344
"LIST_ENTITY_ADDRESSES": "list_entity_addresses",
342345
"GET_TX": "get_tx",
346+
"LIST_TOKEN_TXS": "list_token_txs",
343347
"GET_TX_IO": "get_tx_io",
348+
"GET_SPENT_IN_TXS": "get_spent_in_txs",
349+
"GET_SPENDING_TXS": "get_spending_txs",
344350
"GET_EXCHANGE_RATES": "get_exchange_rates"
345351
},
346352
},

graphsense/api/entities_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""

graphsense/api/general_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""

graphsense/api/rates_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""

graphsense/api/tags_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
55
6-
The version of the OpenAPI document: 1.7.0
6+
The version of the OpenAPI document: 1.8.0
77
Contact: contact@ikna.io
88
Generated by: https://openapi-generator.tech
99
"""

0 commit comments

Comments
 (0)