diff --git a/SUMMARY.md b/SUMMARY.md index 678f6185..02e8386f 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -31,23 +31,23 @@ * [Claim Rewards Data Farming](user-guides/claim-ocean-rewards.md) * [Liquidity Pools \[deprecated\]](user-guides/remove-liquidity-using-etherscan.md) * [πŸ‘¨πŸ’» Developers](developers/README.md) - * [Architecture Overview](developers/architecture.md) + * [Architecture Overview](developers/contracts/architecture.md) * [Contracts](developers/contracts/README.md) * [Data NFTs](developers/contracts/data-nfts.md) * [Datatokens](developers/contracts/datatokens.md) * [Data NFTs and Datatokens](developers/contracts/datanft-and-datatoken.md) * [Datatoken Templates](developers/contracts/datatoken-templates.md) * [Roles](developers/contracts/roles.md) - * [Pricing Schemas](developers/asset-pricing.md) - * [Fees](developers/fees.md) + * [Pricing Schemas](developers/contracts/pricing-schemas.md) + * [Fees](developers/contracts/fees.md) * [Revenue](developers/contracts/revenue.md) * [Fractional Ownership](developers/fractional-ownership.md) * [Community Monetization](developers/community-monetization.md) * [Metadata](developers/metadata.md) * [Identifiers](developers/identifiers.md) * [DDO Specification](developers/ddo-specification.md) - * [Storage Specifications](developers/storage-specifications.md) - * [Fine-Grained Permissions](developers/Fine-Grained-Permissions.md) + * [Storage Specifications](developers/storage.md) + * [Fine-Grained Permissions](developers/fine-grained-permissions.md) * [Barge](developers/barge/README.md) * [Local Setup](developers/barge/local-setup-ganache.md) * [Build a Marketplace](developers/build-a-marketplace/README.md) @@ -55,11 +55,11 @@ * [Customising a Market](developers/build-a-marketplace/customising-your-market.md) * [Deploying a Market](developers/build-a-marketplace/deploying-market.md) * [Subgraph](developers/subgraph/README.md) - * [Get data NFTs](developers/using-ocean-subgraph/list-data-nfts.md) - * [Get data NFT information](developers/using-ocean-subgraph/get-data-nft-information.md) - * [Get datatokens](developers/using-ocean-subgraph/list-datatokens.md) - * [Get datatoken information](developers/using-ocean-subgraph/get-datatoken-information.md) - * [Get fixed-rate exchanges](developers/using-ocean-subgraph/list-fixed-rate-exchanges.md) + * [Get data NFTs](developers/subgraph/list-data-nfts.md) + * [Get data NFT information](developers/subgraph/get-data-nft-information.md) + * [Get datatokens](developers/subgraph/list-datatokens.md) + * [Get datatoken information](developers/subgraph/get-datatoken-information.md) + * [Get fixed-rate exchanges](developers/subgraph/list-fixed-rate-exchanges.md) * [Get veOCEAN stats](developers/subgraph/get-veocean-stats.md) * [List datatoken buyers](developers/subgraph/list-datatoken-buyers.md) * [Ocean.py](developers/ocean.py/README.md) diff --git a/developers/README.md b/developers/README.md index 696efa76..5a4265a3 100644 --- a/developers/README.md +++ b/developers/README.md @@ -17,7 +17,7 @@ But hold on tight, because we have even more in store for you! With Ocean Protoc

Ocean Protocol Explorer

-At the core of the Ocean Protocol, you'll find a constellation of [smart contracts](contracts/) that bring extraordinary capabilities to every data asset. Here's where the magic happens! Every asset gets its own cool and unique [**ERC721 data NFT**](contracts/datanft-and-datatoken.md#what-is-a-data-nft), along with one (or more) [**ERC20 datatokens**](contracts/datanft-and-datatoken.md). It's like giving your data its very own superhero cape! πŸ¦Έβ€β™‚οΈ +At the core of the Ocean Protocol, you'll find a constellation of [smart contracts](contracts/) that bring extraordinary capabilities to every data asset. Here's where the magic happens! Every asset gets its own cool and unique [**ERC721 data NFT**](contracts/data-nfts.md#what-is-a-data-nft), along with one (or more) [**ERC20 datatokens**](contracts/datanft-and-datatoken.md). It's like giving your data its very own superhero cape! πŸ¦Έβ€β™‚οΈ These [smart contracts](contracts/) form the backbone of Ocean Protocol, empowering data assets with unparalleled value and enabling seamless integration with the wider blockchain ecosystem. Through the [contracts](contracts/), data becomes not only valuable but also tradable, allowing you to unleash the true potential of your data treasures. diff --git a/developers/user-defined-parameters.md b/developers/compute-to-data/user-defined-parameters.md similarity index 100% rename from developers/user-defined-parameters.md rename to developers/compute-to-data/user-defined-parameters.md diff --git a/developers/architecture.md b/developers/contracts/architecture.md similarity index 100% rename from developers/architecture.md rename to developers/contracts/architecture.md diff --git a/developers/fees.md b/developers/contracts/fees.md similarity index 100% rename from developers/fees.md rename to developers/contracts/fees.md diff --git a/developers/asset-pricing.md b/developers/contracts/pricing-schemas.md similarity index 100% rename from developers/asset-pricing.md rename to developers/contracts/pricing-schemas.md diff --git a/developers/storage-specifications.md b/developers/storage.md similarity index 100% rename from developers/storage-specifications.md rename to developers/storage.md diff --git a/developers/using-ocean-subgraph/get-data-nft-information.md b/developers/subgraph/get-data-nft-information.md similarity index 100% rename from developers/using-ocean-subgraph/get-data-nft-information.md rename to developers/subgraph/get-data-nft-information.md diff --git a/developers/using-ocean-subgraph/get-datatoken-information.md b/developers/subgraph/get-datatoken-information.md similarity index 100% rename from developers/using-ocean-subgraph/get-datatoken-information.md rename to developers/subgraph/get-datatoken-information.md diff --git a/developers/using-ocean-subgraph/list-data-nfts.md b/developers/subgraph/list-data-nfts.md similarity index 100% rename from developers/using-ocean-subgraph/list-data-nfts.md rename to developers/subgraph/list-data-nfts.md diff --git a/developers/using-ocean-subgraph/list-datatokens.md b/developers/subgraph/list-datatokens.md similarity index 100% rename from developers/using-ocean-subgraph/list-datatokens.md rename to developers/subgraph/list-datatokens.md diff --git a/developers/using-ocean-subgraph/list-fixed-rate-exchanges.md b/developers/subgraph/list-fixed-rate-exchanges.md similarity index 100% rename from developers/using-ocean-subgraph/list-fixed-rate-exchanges.md rename to developers/subgraph/list-fixed-rate-exchanges.md diff --git a/rewards/df-background.md b/rewards/df-background.md index 86ca69d9..4b9269b3 100644 --- a/rewards/df-background.md +++ b/rewards/df-background.md @@ -50,7 +50,7 @@ At the top-end, this helps increase quality and diversification of inventory. At the bottom-end, this eliminates some potential free-rider issues and smooths out the reward distribution. -![Ranked Rewards](../.gitbook/assets/rewards/ranked\_rewards\_study.png) +![Ranked Rewards](../.gitbook/assets/rewards/ranked_rewards_study.png) You can read more about the why, what, and how of Ranked Rewards [in this blog post](https://blog.oceanprotocol.com/data-farming-df22-completed-df23-started-reward-function-tuned-ffd4359657ee) and find the full study [in these slides](https://docs.google.com/presentation/d/1HIA2zV8NUPpCELmi2WFwnAbHmFFrcXjNQiCpEqJ2Jdg/). diff --git a/user-guides/marketplace-publish-data-asset.md b/user-guides/marketplace-publish-data-asset.md index 82a71152..a5a7d7e4 100644 --- a/user-guides/marketplace-publish-data-asset.md +++ b/user-guides/marketplace-publish-data-asset.md @@ -104,9 +104,9 @@ With the _fixed pricing_ schema, the publisher sets the price that buyers will p With the _free pricing_ schema, the publisher provides an asset that is free to be downloaded by anyone. -For more information on the pricing models, please refer this [document](../developers/asset-pricing.md). +For more information on the pricing models, please refer this [document](../developers/contracts/pricing-schemas.md). -For a deep dive into the fee structure, please refer to this [document](../developers/fees.md). +For a deep dive into the fee structure, please refer to this [document](../developers/contracts/fees.md). ![Asset pricing](../.gitbook/assets/market/publish-3.png)