Skip to content

Commit

Permalink
Merge branch 'release/1.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
myrho committed Jan 25, 2024
2 parents da8e8c0 + 5282cd5 commit cc840f6
Show file tree
Hide file tree
Showing 78 changed files with 167 additions and 167 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ GraphSense API provides programmatic access to various ledgers' addresses, entit

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

- API version: 1.4.1
- Package version: 1.4.1
- API version: 1.4.2
- Package version: 1.4.2
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down Expand Up @@ -57,10 +57,10 @@ from graphsense.model.entity import Entity
from graphsense.model.height import Height
from graphsense.model.links import Links
from graphsense.model.neighbor_addresses import NeighborAddresses
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -92,7 +92,7 @@ with graphsense.ApiClient(configuration) as api_client:

## Documentation for API Endpoints

All URIs are relative to *https://api.test.ikna.io*
All URIs are relative to *https://api.ikna.io*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
Expand Down Expand Up @@ -121,11 +121,11 @@ Class | Method | HTTP request | Description
*TagsApi* | [**list_address_tags**](docs/TagsApi.md#list_address_tags) | **GET** /tags | Returns address tags associated with a given label
*TagsApi* | [**list_concepts**](docs/TagsApi.md#list_concepts) | **GET** /tags/taxonomies/{taxonomy}/concepts | Returns the supported concepts of a taxonomy
*TagsApi* | [**list_taxonomies**](docs/TagsApi.md#list_taxonomies) | **GET** /tags/taxonomies | Returns the supported taxonomies
*TokensApi* | [**list_supported_tokens**](docs/TokensApi.md#list_supported_tokens) | **GET** /{currency}/supported_tokens | Returns a list of supported token (sub)currencies.
*TokensApi* | [**list_supported_tokens**](docs/TokensApi.md#list_supported_tokens) | **GET** /{currency}/supported_tokens | Returns a list of supported token (sub)currencies
*TxsApi* | [**get_spending_txs**](docs/TxsApi.md#get_spending_txs) | **GET** /{currency}/txs/{tx_hash}/spending | Returns in which other transaction's outputs the asked transaction spent. Think backwards references is the transaction graph. This endpoint is only available for utxo like currencies.
*TxsApi* | [**get_spent_in_txs**](docs/TxsApi.md#get_spent_in_txs) | **GET** /{currency}/txs/{tx_hash}/spent_in | Returns in which other transactions, outputs from the asked transaction are spent. Think forward references in the transaction graph. This endpoint is only available for utxo like currencies.
*TxsApi* | [**get_tx**](docs/TxsApi.md#get_tx) | **GET** /{currency}/txs/{tx_hash} | Returns details of a specific transaction identified by its hash.
*TxsApi* | [**get_tx_io**](docs/TxsApi.md#get_tx_io) | **GET** /{currency}/txs/{tx_hash}/{io} | Returns input/output values of a specific transaction identified by its hash.
*TxsApi* | [**get_tx**](docs/TxsApi.md#get_tx) | **GET** /{currency}/txs/{tx_hash} | Returns details of a specific transaction identified by its hash
*TxsApi* | [**get_tx_io**](docs/TxsApi.md#get_tx_io) | **GET** /{currency}/txs/{tx_hash}/{io} | Returns input/output values of a specific transaction identified by its hash
*TxsApi* | [**list_token_txs**](docs/TxsApi.md#list_token_txs) | **GET** /{currency}/token_txs/{tx_hash} | Returns all token transactions in a given transaction


Expand Down Expand Up @@ -217,9 +217,9 @@ Run the jupyter notebooks

## Generation from OpenAPI specification

This python package has been generated from [Graphsense's OpenAPI specification](https://api.test.ikna.io) hosted by [Iknaio Cryptoasset Analytics GmbH](https://ikna.io) using this command:
This python package has been generated from [Graphsense's OpenAPI specification](https://api.ikna.io) hosted by [Iknaio Cryptoasset Analytics GmbH](https://ikna.io) using this command:

```
make GS_REST_SERVICE_URL="https://api.test.ikna.io" generate-openapi-client
make GS_REST_SERVICE_URL="https://api.ikna.io" generate-openapi-client
```

2 changes: 1 addition & 1 deletion docs/ActorContext.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**uris** | **[str]** | list of additonal uris identifying the actor |
**images** | **[str]** | list of uris to logos of the actor |
**refs** | **[str]** | list of uris to further information of the actors. |
**refs** | **[str]** | list of uris to further information of the actors |
**coingecko_ids** | **[str]** | list of references to coingecko exchanges or coins |
**defilama_ids** | **[str]** | list of references to defilama |
**twitter_handle** | **str** | semi-colon separated list of twitter handles used by the actor | [optional]
Expand Down
26 changes: 13 additions & 13 deletions docs/AddressesApi.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# graphsense.AddressesApi

All URIs are relative to *https://api.test.ikna.io*
All URIs are relative to *https://api.ikna.io*

Method | HTTP request | Description
------------- | ------------- | -------------
Expand All @@ -26,10 +26,10 @@ import graphsense
from graphsense.api import addresses_api
from graphsense.model.address import Address
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -110,10 +110,10 @@ import graphsense
from graphsense.api import addresses_api
from graphsense.model.entity import Entity
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -194,10 +194,10 @@ import graphsense
from graphsense.api import addresses_api
from graphsense.model.links import Links
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -293,10 +293,10 @@ import graphsense
from graphsense.api import addresses_api
from graphsense.model.neighbor_addresses import NeighborAddresses
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -399,10 +399,10 @@ from graphsense.api import addresses_api
from graphsense.model.height import Height
from graphsense.model.address_txs import AddressTxs
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -504,10 +504,10 @@ import graphsense
from graphsense.api import addresses_api
from graphsense.model.address_tags import AddressTags
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down
10 changes: 5 additions & 5 deletions docs/BlocksApi.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# graphsense.BlocksApi

All URIs are relative to *https://api.test.ikna.io*
All URIs are relative to *https://api.ikna.io*

Method | HTTP request | Description
------------- | ------------- | -------------
Expand All @@ -23,10 +23,10 @@ from graphsense.api import blocks_api
from graphsense.model.block import Block
from graphsense.model.height import Height
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -108,10 +108,10 @@ from graphsense.api import blocks_api
from graphsense.model.tx import Tx
from graphsense.model.height import Height
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down
30 changes: 15 additions & 15 deletions docs/EntitiesApi.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# graphsense.EntitiesApi

All URIs are relative to *https://api.test.ikna.io*
All URIs are relative to *https://api.ikna.io*

Method | HTTP request | Description
------------- | ------------- | -------------
Expand All @@ -27,10 +27,10 @@ import graphsense
from graphsense.api import entities_api
from graphsense.model.entity import Entity
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -124,10 +124,10 @@ import graphsense
from graphsense.api import entities_api
from graphsense.model.address_tags import AddressTags
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -221,10 +221,10 @@ import graphsense
from graphsense.api import entities_api
from graphsense.model.entity_addresses import EntityAddresses
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -318,10 +318,10 @@ import graphsense
from graphsense.api import entities_api
from graphsense.model.links import Links
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -417,10 +417,10 @@ import graphsense
from graphsense.api import entities_api
from graphsense.model.neighbor_entities import NeighborEntities
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -527,10 +527,10 @@ from graphsense.api import entities_api
from graphsense.model.height import Height
from graphsense.model.address_txs import AddressTxs
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down Expand Up @@ -632,10 +632,10 @@ import graphsense
from graphsense.api import entities_api
from graphsense.model.search_result_level1 import SearchResultLevel1
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down
10 changes: 5 additions & 5 deletions docs/GeneralApi.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# graphsense.GeneralApi

All URIs are relative to *https://api.test.ikna.io*
All URIs are relative to *https://api.ikna.io*

Method | HTTP request | Description
------------- | ------------- | -------------
Expand All @@ -21,10 +21,10 @@ import graphsense
from graphsense.api import general_api
from graphsense.model.stats import Stats
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)


Expand Down Expand Up @@ -89,10 +89,10 @@ import graphsense
from graphsense.api import general_api
from graphsense.model.search_result import SearchResult
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down
6 changes: 3 additions & 3 deletions docs/RatesApi.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# graphsense.RatesApi

All URIs are relative to *https://api.test.ikna.io*
All URIs are relative to *https://api.ikna.io*

Method | HTTP request | Description
------------- | ------------- | -------------
Expand All @@ -22,10 +22,10 @@ from graphsense.api import rates_api
from graphsense.model.rates import Rates
from graphsense.model.height import Height
from pprint import pprint
# Defining the host is optional and defaults to https://api.test.ikna.io
# Defining the host is optional and defaults to https://api.ikna.io
# See configuration.py for a list of all supported configuration parameters.
configuration = graphsense.Configuration(
host = "https://api.test.ikna.io"
host = "https://api.ikna.io"
)

# The client must configure the authentication and authorization parameters
Expand Down
Loading

0 comments on commit cc840f6

Please sign in to comment.