You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/python/docs/GeneralApi.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,7 @@ with graphsense.ApiClient(configuration) as api_client:
115
115
q ="foo"# str | It can be (the beginning of) an address, a transaction or a label
116
116
currency ="btc"# str | The cryptocurrency (e.g., btc) (optional)
117
117
limit =10# int | Maximum number of search results (optional) if omitted the server will use the default value of 10
118
+
include_sub_tx_identifiers =True# bool | Whether to include sub-transaction identifiers (optional) if omitted the server will use the default value of False
118
119
119
120
# example passing only required values which don't have defaults set
120
121
try:
@@ -128,7 +129,7 @@ with graphsense.ApiClient(configuration) as api_client:
128
129
# and optional values
129
130
try:
130
131
# Returns matching addresses, transactions and labels
print("Exception when calling GeneralApi->search: %s\n"% e)
@@ -142,6 +143,7 @@ Name | Type | Description | Notes
142
143
**q** | **str**| It can be (the beginning of) an address, a transaction or a label |
143
144
**currency** | **str**| The cryptocurrency (e.g., btc) | [optional]
144
145
**limit** | **int**| Maximum number of search results | [optional] if omitted the server will use the default value of 10
146
+
**include_sub_tx_identifiers** | **bool**| Whether to include sub-transaction identifiers | [optional] if omitted the server will use the default value of False
145
147
**_preload_content** | **bool** | If False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. | [optional] default is True.
Copy file name to clipboardExpand all lines: clients/python/graphsense/api/general_api.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,7 @@ def __search(
160
160
Keyword Args:
161
161
currency (str): The cryptocurrency (e.g., btc). [optional]
162
162
limit (int): Maximum number of search results. [optional] if omitted the server will use the default value of 10
163
+
include_sub_tx_identifiers (bool): Whether to include sub-transaction identifiers. [optional] if omitted the server will use the default value of False
163
164
_return_http_data_only (bool): response data without head status
164
165
code and headers. Default is True.
165
166
_preload_content (bool): if False, the urllib3.HTTPResponse object
0 commit comments