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:
parent
acc7ccbbcf
commit
e100822b33
28
SUMMARY.md
28
SUMMARY.md
@ -27,7 +27,7 @@
|
||||
* [Claim OCEAN Rewards](user-guides/claim-ocean-rewards.md)
|
||||
* [Guide to Ocean Market](user-guides/using-ocean-market.md)
|
||||
* [Liquidity Pools \[deprecated\]](user-guides/remove-liquidity-using-etherscan.md)
|
||||
* [👨💻 👨💻 Developers](developers/README.md)
|
||||
* [Developers](developers/README.md)
|
||||
* [Architecture Overview](developers/architecture.md)
|
||||
* [Data NFTs and Datatokens](developers/datanft-and-datatoken.md)
|
||||
* [Roles](developers/roles.md)
|
||||
@ -41,19 +41,19 @@
|
||||
* [Forking Ocean Market](developers/build-a-marketplace/forking-ocean-market.md)
|
||||
* [Customising a Market](developers/build-a-marketplace/customising-your-market.md)
|
||||
* [Deploying a Market](developers/build-a-marketplace/deploying-market.md)
|
||||
* [Using Ocean Subgraph](developers/using-ocean-subgraph/README.md)
|
||||
* [List data NFTs](developers/using-ocean-subgraph/list-data-nfts.md)
|
||||
* [List all Tokens](developers/using-ocean-subgraph/list-datatokens.md)
|
||||
* [Get Data NFT Information](developers/using-ocean-subgraph/get-data-nft-information.md)
|
||||
* [Get Datatoken Information](developers/using-ocean-subgraph/get-datatoken-information.md)
|
||||
* [List Fixed Rate Exchanges](developers/using-ocean-subgraph/list-fixed-rate-exchanges.md)
|
||||
* [Using Ocean Libraries](developers/using-ocean-libraries/README.md)
|
||||
* [Configuration](developers/using-ocean-libraries/configuration.md)
|
||||
* [Creating a data NFT](developers/using-ocean-libraries/creating-datanft.md)
|
||||
* [Publish with Fixed Pricing](developers/using-ocean-libraries/create-datatoken-with-fixed-pricing.md)
|
||||
* [Mint Datatokens](developers/using-ocean-libraries/mint-datatoken.md)
|
||||
* [Update Metadata](developers/using-ocean-libraries/update-metadata.md)
|
||||
* [Compute-to-data](developers/compute-to-data/README.md)
|
||||
* [Ocean Subgraph](developers/ocean-subgraph/README.md)
|
||||
* [List data NFTs](developers/ocean-subgraph/list-data-nfts.md)
|
||||
* [List all Tokens](developers/ocean-subgraph/list-datatokens.md)
|
||||
* [Get Data NFT Information](developers/ocean-subgraph/get-data-nft-information.md)
|
||||
* [Get Datatoken Information](developers/ocean-subgraph/get-datatoken-information.md)
|
||||
* [List Fixed Rate Exchanges](developers/ocean-subgraph/list-fixed-rate-exchanges.md)
|
||||
* [Ocean Libraries](developers/ocean-libraries/README.md)
|
||||
* [Configuration](developers/ocean-libraries/configuration.md)
|
||||
* [Creating a data NFT](developers/ocean-libraries/creating-datanft.md)
|
||||
* [Publish with Fixed Pricing](developers/ocean-libraries/create-datatoken-with-fixed-pricing.md)
|
||||
* [Mint Datatokens](developers/ocean-libraries/mint-datatoken.md)
|
||||
* [Update Metadata](developers/ocean-libraries/update-metadata.md)
|
||||
* [Compute to data](developers/compute-to-data/README.md)
|
||||
* [Architecture](developers/compute-to-data/compute-to-data-architecture.md)
|
||||
* [Datasets & Algorithms](developers/compute-to-data/compute-to-data-datasets-algorithms.md)
|
||||
* [Writing Algorithms](developers/compute-to-data/compute-to-data-algorithms.md)
|
||||
|
@ -9,7 +9,7 @@ description: Data NFTs and datatokens architecture
|
||||
|
||||
Here is the Ocean architecture.
|
||||
|
||||
![Ocean Protocol tools architecture](.gitbook/assets/architecture/architecture.png)
|
||||
![Ocean Protocol tools architecture](../.gitbook/assets/architecture/architecture.png)
|
||||
|
||||
Here’s an overview of the figure.
|
||||
|
||||
@ -18,7 +18,7 @@ Here’s an overview of the figure.
|
||||
* **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.
|
||||
* **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
|
||||
|
||||
|
@ -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)
|
||||
- [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)
|
||||
- [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 %}
|
||||
{% tab title="Python" %}
|
||||
|
@ -12,7 +12,7 @@ Aquarius consists of two parts:\
|
||||
|
||||
* 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.
|
||||
* [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
|
||||
|
||||
|
@ -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.
|
||||
* 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
|
||||
|
||||
|
@ -11,7 +11,7 @@ The source code of Provider can be access from [here](https://github.com/oceanpr
|
||||
### Prerequisites
|
||||
|
||||
* 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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user