1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Rename using-ocean-libraries and using-ocean-subgraph to ocean-libraries and ocean-subgraph

This commit is contained in:
Anamaria Loznianu 2023-05-19 15:46:53 +03:00
parent acc7ccbbcf
commit e100822b33
18 changed files with 21 additions and 21 deletions

View File

@ -27,7 +27,7 @@
* [Claim OCEAN Rewards](user-guides/claim-ocean-rewards.md) * [Claim OCEAN Rewards](user-guides/claim-ocean-rewards.md)
* [Guide to Ocean Market](user-guides/using-ocean-market.md) * [Guide to Ocean Market](user-guides/using-ocean-market.md)
* [Liquidity Pools \[deprecated\]](user-guides/remove-liquidity-using-etherscan.md) * [Liquidity Pools \[deprecated\]](user-guides/remove-liquidity-using-etherscan.md)
* [👨💻 👨💻 Developers](developers/README.md) * [Developers](developers/README.md)
* [Architecture Overview](developers/architecture.md) * [Architecture Overview](developers/architecture.md)
* [Data NFTs and Datatokens](developers/datanft-and-datatoken.md) * [Data NFTs and Datatokens](developers/datanft-and-datatoken.md)
* [Roles](developers/roles.md) * [Roles](developers/roles.md)
@ -41,19 +41,19 @@
* [Forking Ocean Market](developers/build-a-marketplace/forking-ocean-market.md) * [Forking Ocean Market](developers/build-a-marketplace/forking-ocean-market.md)
* [Customising a Market](developers/build-a-marketplace/customising-your-market.md) * [Customising a Market](developers/build-a-marketplace/customising-your-market.md)
* [Deploying a Market](developers/build-a-marketplace/deploying-market.md) * [Deploying a Market](developers/build-a-marketplace/deploying-market.md)
* [Using Ocean Subgraph](developers/using-ocean-subgraph/README.md) * [Ocean Subgraph](developers/ocean-subgraph/README.md)
* [List data NFTs](developers/using-ocean-subgraph/list-data-nfts.md) * [List data NFTs](developers/ocean-subgraph/list-data-nfts.md)
* [List all Tokens](developers/using-ocean-subgraph/list-datatokens.md) * [List all Tokens](developers/ocean-subgraph/list-datatokens.md)
* [Get Data NFT Information](developers/using-ocean-subgraph/get-data-nft-information.md) * [Get Data NFT Information](developers/ocean-subgraph/get-data-nft-information.md)
* [Get Datatoken Information](developers/using-ocean-subgraph/get-datatoken-information.md) * [Get Datatoken Information](developers/ocean-subgraph/get-datatoken-information.md)
* [List Fixed Rate Exchanges](developers/using-ocean-subgraph/list-fixed-rate-exchanges.md) * [List Fixed Rate Exchanges](developers/ocean-subgraph/list-fixed-rate-exchanges.md)
* [Using Ocean Libraries](developers/using-ocean-libraries/README.md) * [Ocean Libraries](developers/ocean-libraries/README.md)
* [Configuration](developers/using-ocean-libraries/configuration.md) * [Configuration](developers/ocean-libraries/configuration.md)
* [Creating a data NFT](developers/using-ocean-libraries/creating-datanft.md) * [Creating a data NFT](developers/ocean-libraries/creating-datanft.md)
* [Publish with Fixed Pricing](developers/using-ocean-libraries/create-datatoken-with-fixed-pricing.md) * [Publish with Fixed Pricing](developers/ocean-libraries/create-datatoken-with-fixed-pricing.md)
* [Mint Datatokens](developers/using-ocean-libraries/mint-datatoken.md) * [Mint Datatokens](developers/ocean-libraries/mint-datatoken.md)
* [Update Metadata](developers/using-ocean-libraries/update-metadata.md) * [Update Metadata](developers/ocean-libraries/update-metadata.md)
* [Compute-to-data](developers/compute-to-data/README.md) * [Compute to data](developers/compute-to-data/README.md)
* [Architecture](developers/compute-to-data/compute-to-data-architecture.md) * [Architecture](developers/compute-to-data/compute-to-data-architecture.md)
* [Datasets & Algorithms](developers/compute-to-data/compute-to-data-datasets-algorithms.md) * [Datasets & Algorithms](developers/compute-to-data/compute-to-data-datasets-algorithms.md)
* [Writing Algorithms](developers/compute-to-data/compute-to-data-algorithms.md) * [Writing Algorithms](developers/compute-to-data/compute-to-data-algorithms.md)

View File

@ -9,7 +9,7 @@ description: Data NFTs and datatokens architecture
Here is the Ocean architecture. Here is the Ocean architecture.
![Ocean Protocol tools architecture](.gitbook/assets/architecture/architecture.png) ![Ocean Protocol tools architecture](../.gitbook/assets/architecture/architecture.png)
Heres an overview of the figure. Heres an overview of the figure.
@ -18,7 +18,7 @@ Heres an overview of the figure.
* **Aquarius**: Provides metadata cache for faster search by caching on-chain data into elasticsearch * **Aquarius**: Provides metadata cache for faster search by caching on-chain data into elasticsearch
* **Provider**: Facilitates downloading assets, DDO encryption, and communicating with `operator-service` for Compute-to-Data jobs. * **Provider**: Facilitates downloading assets, DDO encryption, and communicating with `operator-service` for Compute-to-Data jobs.
* **The Graph**: It is a 3rd party tool that developers can utilize the libraries to build their custom applications and marketplaces. * **The Graph**: It is a 3rd party tool that developers can utilize the libraries to build their custom applications and marketplaces.
* The lowest level has the **smart contracts**. The smart contracts are deployed on the Ethereum mainnet and other compatible networks. Libraries encapsulate the calls to these smart contracts and provide features like publishing new assets, facilitating consumption, managing pricing, and much more. To see the supported networks click [here](core-concepts/networks.md). * The lowest level has the **smart contracts**. The smart contracts are deployed on the Ethereum mainnet and other compatible networks. Libraries encapsulate the calls to these smart contracts and provide features like publishing new assets, facilitating consumption, managing pricing, and much more. To see the supported networks click [here](../discover/networks/README.md).
### Data NFTs, Datatokens and Access Control Tools ### Data NFTs, Datatokens and Access Control Tools

View File

@ -116,9 +116,9 @@ In this example, the buyer wants to run the algorithm with certain parameters on
- Search for a dataset using [Ocean market](https://market.oceanprotocol.com/) or [Aquarius API](../../api-references/aquarius-rest-api.md) - Search for a dataset using [Ocean market](https://market.oceanprotocol.com/) or [Aquarius API](../../api-references/aquarius-rest-api.md)
- [Allow an algorithm to run on the dataset](https://github.com/oceanprotocol/ocean.py/blob/6eb068df338abc7376430cc5ba7fe2d381508328/READMEs/c2d-flow.md#5-alice-allows-the-algorithm-for-c2d-for-that-data-asset) - [Allow an algorithm to run on the dataset](https://github.com/oceanprotocol/ocean.py/blob/6eb068df338abc7376430cc5ba7fe2d381508328/READMEs/c2d-flow.md#5-alice-allows-the-algorithm-for-c2d-for-that-data-asset)
- Buy datatokens using [Ocean market](https://market.oceanprotocol.com/) or [ocean.py](https://github.com/oceanprotocol/ocean.py) - Buy datatokens using [Ocean market](https://market.oceanprotocol.com/) or [ocean.py](https://github.com/oceanprotocol/ocean.py)
- [Set up ocean.py](../using-ocean-libraries/configuration.md) - [Set up ocean.py](../ocean-libraries/configuration.md)
For configuring ocean.py/ocean.js, please refer this [guide](../using-ocean-libraries/configuration.md). Copy the below code snippet to a file locally after completing required configurations and execute the script. For configuring ocean.py/ocean.js, please refer this [guide](../ocean-libraries/configuration.md). Copy the below code snippet to a file locally after completing required configurations and execute the script.
{% tabs %} {% tabs %}
{% tab title="Python" %} {% tab title="Python" %}

View File

@ -12,7 +12,7 @@ Aquarius consists of two parts:\
* A server for hosting Aquarius. See [this guide](setup-server.md) on creating a server. * A server for hosting Aquarius. See [this guide](setup-server.md) on creating a server.
* Docker and Docker compose are installed. Click [here](https://docs.docker.com/engine/install/) to view guide on installing docker. * Docker and Docker compose are installed. Click [here](https://docs.docker.com/engine/install/) to view guide on installing docker.
* [Obtain an API key](../using-ocean-libraries/configuration.md#obtaining-api-key-for-ethereum-node-provider) * [Obtain an API key](../ocean-libraries/configuration.md#obtaining-api-key-for-ethereum-node-provider)
### Create a working directory ### Create a working directory

View File

@ -8,7 +8,7 @@ Ocean subgraph allows querying the datatoken, dataNFT, and all event information
* A server for hosting Ocean subgraph. See [this guide](setup-server.md) on creating a server. * A server for hosting Ocean subgraph. See [this guide](setup-server.md) on creating a server.
* Docker and Docker compose are installed. Click [here](https://docs.docker.com/engine/install/) to view guide on installing docker. * Docker and Docker compose are installed. Click [here](https://docs.docker.com/engine/install/) to view guide on installing docker.
* [Obtain an API key](../using-ocean-libraries/configuration.md#obtaining-api-key-for-ethereum-node-provider) * [Obtain an API key](../ocean-libraries/configuration.md#obtaining-api-key-for-ethereum-node-provider)
### Create a working directory ### Create a working directory

View File

@ -11,7 +11,7 @@ The source code of Provider can be access from [here](https://github.com/oceanpr
### Prerequisites ### Prerequisites
* Docker and Docker compose are installed. Click [here](https://docs.docker.com/engine/install/) to view guide on installing docker. * Docker and Docker compose are installed. Click [here](https://docs.docker.com/engine/install/) to view guide on installing docker.
* [Obtain an API key](../using-ocean-libraries/configuration.md#obtaining-api-key-for-ethereum-node-provider) * [Obtain an API key](../ocean-libraries/configuration.md#obtaining-api-key-for-ethereum-node-provider)
### Create a working directory ### Create a working directory