diff --git a/.gitbook/assets/cover/contribute_card (1).png b/.gitbook/assets/cover/contribute_card (1).png
new file mode 100644
index 00000000..4ee76eef
Binary files /dev/null and b/.gitbook/assets/cover/contribute_card (1).png differ
diff --git a/.gitbook/assets/cover/data_science_card (1).png b/.gitbook/assets/cover/data_science_card (1).png
new file mode 100644
index 00000000..862b97e8
Binary files /dev/null and b/.gitbook/assets/cover/data_science_card (1).png differ
diff --git a/.gitbook/assets/cover/developer_tutorials_card (1).png b/.gitbook/assets/cover/developer_tutorials_card (1).png
new file mode 100644
index 00000000..f0f5ebe9
Binary files /dev/null and b/.gitbook/assets/cover/developer_tutorials_card (1).png differ
diff --git a/.gitbook/assets/cover/discover_card (1).png b/.gitbook/assets/cover/discover_card (1).png
new file mode 100644
index 00000000..b41976df
Binary files /dev/null and b/.gitbook/assets/cover/discover_card (1).png differ
diff --git a/.gitbook/assets/cover/infrastructure_card (1).png b/.gitbook/assets/cover/infrastructure_card (1).png
new file mode 100644
index 00000000..395fb229
Binary files /dev/null and b/.gitbook/assets/cover/infrastructure_card (1).png differ
diff --git a/.gitbook/assets/cover/rewards_card (1).png b/.gitbook/assets/cover/rewards_card (1).png
new file mode 100644
index 00000000..ce298ae4
Binary files /dev/null and b/.gitbook/assets/cover/rewards_card (1).png differ
diff --git a/.gitbook/assets/cover/user_guides_card (1).png b/.gitbook/assets/cover/user_guides_card (1).png
new file mode 100644
index 00000000..ec1321c6
Binary files /dev/null and b/.gitbook/assets/cover/user_guides_card (1).png differ
diff --git a/.gitbook/assets/liquidity/remove-liquidity-2 (2) (1).png b/.gitbook/assets/liquidity/remove-liquidity-2 (2) (1).png
new file mode 100644
index 00000000..c99a54ac
Binary files /dev/null and b/.gitbook/assets/liquidity/remove-liquidity-2 (2) (1).png differ
diff --git a/.gitbook/assets/liquidity/remove-liquidity-2 (2) (2).png b/.gitbook/assets/liquidity/remove-liquidity-2 (2) (2).png
new file mode 100644
index 00000000..c99a54ac
Binary files /dev/null and b/.gitbook/assets/liquidity/remove-liquidity-2 (2) (2).png differ
diff --git a/SUMMARY.md b/SUMMARY.md
index 22c4b7ed..bcd7e33d 100644
--- a/SUMMARY.md
+++ b/SUMMARY.md
@@ -27,7 +27,7 @@
* [How to Data Farm](user-guides/how-to-data-farm.md)
* [Claim OCEAN Rewards](user-guides/claim-ocean-rewards.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)
diff --git a/developers/using-ocean-subgraph/get-data-nft-information.md b/developers/using-ocean-subgraph/get-data-nft-information.md
index 70681602..ff40d8ce 100644
--- a/developers/using-ocean-subgraph/get-data-nft-information.md
+++ b/developers/using-ocean-subgraph/get-data-nft-information.md
@@ -1,14 +1,22 @@
+---
+description: >-
+ Explore the Power of Querying: Unveiling In-Depth Details of Individual Data
+ NFTs
+---
+
# Get data NFT Information
-The result of following GraphQL query returns the information about a particular datatoken. Here, `0x1c161d721e6d99f58d47f709cdc77025056c544c` is the address of the dataNFT.
+Now that you are familiar with the process of retrieving a list of data NFTs 😎, let's explore how to obtain more specific details about a particular NFT through querying. By utilizing the knowledge you have gained, you can customize your GraphQL query to include additional parameters such as the NFT's metadata, creator information, template, or any other relevant data points. This will enable you to delve deeper into the intricacies of a specific NFT and gain a comprehensive understanding of its attributes. With this newfound capability, you can unlock valuable insights and make informed decisions based on the specific details retrieved. So, let's dive into the fascinating world of querying and unravel the unique characteristics of individual data NFTs.
+The result of the following GraphQL query returns the information about a particular data NFT. In this example, `0x1c161d721e6d99f58d47f709cdc77025056c544c`.
+
PS: In this example, the query is executed on the Ocean subgraph deployed on the mainnet. If you want to change the network, please refer to [this table](../ocean-subgraph/#ocean-subgraph-deployments).
{% tabs %}
{% tab title="Query" %}
-Copy the query to fetch a list of data NFTs in the Ocean Subgraph [GraphiQL interface](https://v4.subgraph.mainnet.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) to fetch the results.
+Copy the query to fetch the information about a data NFT in the Ocean Subgraph [GraphiQL interface](https://v4.subgraph.mainnet.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql). If you want to fetch the information about another NFT, replace the `id` with the address of your choice.
```graphql
{
@@ -96,7 +104,7 @@ print(json.dumps(result, indent=4, sort_keys=True))
{% endtab %}
{% tab title="Javascript" %}
-The javascript below can be used to run the query. If you wish to change the network, replace the variable's value `baseUrl` as needed. Change the value of the variable `datanftAddress` with the address of the datatoken of your choice.
+The javascript below can be used to run the query and fetch the information of a data NFT. If you wish to change the network, replace the variable's value `network` as needed. Change the value of the variable `datanftAddress` with the address of your choice.
```runkit nodeVersion="18.x.x"
var axios = require('axios');
@@ -127,14 +135,10 @@ const query = `{
}
}`
-const baseUrl = "https://v4.subgraph.mainnet.oceanprotocol.com"
-const route = "/subgraphs/name/oceanprotocol/ocean-subgraph"
-
-const url = `${baseUrl}${route}`
-
+const network = "mainnet"
var config = {
method: 'post',
- url: url,
+ url: `https://v4.subgraph.${network}.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph`,
headers: { "Content-Type": "application/json" },
data: JSON.stringify({ "query": query })
};
@@ -149,8 +153,6 @@ axios(config)
});
```
-
-
{% endtab %}
{% endtabs %}
diff --git a/developers/using-ocean-subgraph/list-data-nfts.md b/developers/using-ocean-subgraph/list-data-nfts.md
index 0b9d1455..81efbec4 100644
--- a/developers/using-ocean-subgraph/list-data-nfts.md
+++ b/developers/using-ocean-subgraph/list-data-nfts.md
@@ -20,7 +20,7 @@ PS: In these examples, the query is executed on the Ocean subgraph deployed on t
{% tabs %}
{% tab title="Query" %}
-Copy the query to fetch a list of data NFTs in the Ocean Subgraph [GraphiQL interface](https://v4.subgraph.mainnet.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql) to fetch the results.
+Copy the query to fetch a list of data NFTs in the Ocean Subgraph [GraphiQL interface](https://v4.subgraph.mainnet.oceanprotocol.com/subgraphs/name/oceanprotocol/ocean-subgraph/graphql).
```graphql
{
@@ -40,7 +40,7 @@ Copy the query to fetch a list of data NFTs in the Ocean Subgraph [GraphiQL inte
{% endtab %}
{% tab title="Python" %}
-The Python script below can be used to run the query to fetch a list of data NFTs from the subgraph. If you wish to change the network, replace the value of variable `base_url` as needed.
+The Python script below can be used to run the query to fetch a list of data NFTs from the subgraph. If you wish to change the network, replace the value of the variable `base_url` as needed.
**Create script**
@@ -88,7 +88,7 @@ python list_dataNFTs.py
{% endtab %}
{% tab title="Javascript" %}
-The javascript below can be used to run the query. If you wish to change the network, then replace the value of `network` as needed.
+The javascript below can be used to run the query and retrieve a list of NFTs. If you wish to change the network, then replace the value of `network` variable as needed.
```runkit nodeVersion="18.x.x"
const axios = require('axios')
diff --git a/user-guides/remove-liquidity-using-etherscan.md b/user-guides/remove-liquidity-using-etherscan.md
index 0e6ac1b1..2e7cedd7 100644
--- a/user-guides/remove-liquidity-using-etherscan.md
+++ b/user-guides/remove-liquidity-using-etherscan.md
@@ -14,7 +14,7 @@ Liquidity pools and dynamic pricing used to be supported in previous versions of
4\. Go to field `20. balanceOf` and insert your ETH address. This will retrieve your pool share token balance in wei.
-
+
5\. Copy this number as later you will use it as the `poolAmountIn` parameter.