1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-01 15:55:34 +01:00
docs/SUMMARY.md

126 lines
7.5 KiB
Markdown
Raw Normal View History

2022-07-03 12:47:26 +02:00
# Table of contents
* [👋 Welcome](README.md)
* [🌊 Discover](discover/README.md)
* [Explore](discover/explore.md)
* [Ocean 101](discover/ocean-101.md)
* [Basic Concepts](discover/basic-concepts.md)
* [Wallets](discover/wallets/README.md)
* [Set Up MetaMask Wallet](discover/wallets/metamask-setup.md)
* [Networks](discover/networks/README.md)
* [Bridges](discover/networks/bridges.md)
* [Manage Your OCEAN Tokens](discover/wallets-and-ocean-tokens.md)
* [Glossary](discover/glossary.md)
* [FAQ](discover/faq.md)
* [📚 User Guides](user-guides/README.md)
* [Guide to the Ocean Market](user-guides/using-ocean-market.md)
2023-06-15 12:52:52 +02:00
* [Publish Data NFTs](user-guides/publish-data-nfts.md)
* [Buy NFT Data](user-guides/buy-data-nfts.md)
* [Sell NFT Computations (Compute-to-Data)](user-guides/compute-to-data/README.md)
* [Make a Boss C2D Algorithm](user-guides/compute-to-data/make-a-boss-c2d-algorithm.md)
* [Publish a C2D Algorithm NFT](user-guides/compute-to-data/publish-a-c2d-algorithm-nft.md)
* [Publish a C2D Data NFT](user-guides/compute-to-data/publish-a-c2d-data-nft.md)
* [Host Assets](user-guides/asset-hosting/README.md)
* [Arweave](user-guides/asset-hosting/arweave.md)
* [AWS](user-guides/asset-hosting/aws.md)
* [Azure Cloud](user-guides/asset-hosting/azure-cloud.md)
* [Google Storage](user-guides/asset-hosting/google-storage.md)
* [Github](user-guides/asset-hosting/github.md)
2023-06-15 14:02:08 +02:00
* [Join a Data Challenge](user-guides/join-a-data-challenge.md)
* [Sponsor a Data Challenge](user-guides/sponsor-a-data-challenge.md)
* [Get Started Data Farming](user-guides/get-started-df.md)
* [Harvest More Yield Data Farming](user-guides/how-to-data-farm.md)
* [Claim Rewards Data Farming](user-guides/claim-ocean-rewards.md)
2023-06-15 14:02:08 +02:00
* [Liquidity Pools \[deprecated\]](user-guides/remove-liquidity-pools.md)
* [👨💻 Developers](developers/README.md)
* [Architecture Overview](developers/architecture.md)
* [Contracts](developers/contracts/README.md)
2023-06-05 20:35:59 +02:00
* [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)
2023-06-13 12:06:59 +02:00
* [Pricing Schemas](developers/contracts/pricing-schemas.md)
2023-06-13 18:29:52 +02:00
* [Fees](developers/contracts/fees.md)
2023-06-12 11:04:45 +02:00
* [Revenue](developers/contracts/revenue.md)
* [Fractional Ownership](developers/fractional-ownership.md)
* [Community Monetization](developers/community-monetization.md)
* [Metadata](developers/metadata.md)
* [Identifiers (DIDs)](developers/identifiers.md)
* [DDO Specification](developers/ddo-specification.md)
2023-06-13 12:06:59 +02:00
* [Storage Specifications](developers/storage.md)
2023-06-13 12:24:58 +02:00
* [Fine-Grained Permissions](developers/fg-permissions.md)
* [Retrieve datatoken/data NFT addresses & Chain ID](developers/retrieve-datatoken-address.md)
* [Get API Keys for Blockchain Access](developers/get-api-keys-for-blockchain-access.md)
2023-06-12 13:58:58 +02:00
* [Barge](developers/barge/README.md)
* [Local Setup](developers/barge/local-setup-ganache.md)
* [Build a Marketplace](developers/build-a-marketplace/README.md)
* [Forking Ocean Market](developers/build-a-marketplace/forking-ocean-market.md)
* [Customising a Market](developers/build-a-marketplace/customising-your-market.md)
2023-06-14 13:36:44 +02:00
* [Build and host your Data Marketplace](developers/build-a-marketplace/deploying-market.md)
* [Subgraph](developers/subgraph/README.md)
2023-06-29 17:52:01 +02:00
* [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 datatoken buyers](developers/subgraph/get-datatoken-buyers.md)
2023-06-29 17:52:01 +02:00
* [Get fixed-rate exchanges](developers/subgraph/list-fixed-rate-exchanges.md)
* [Get veOCEAN stats](developers/subgraph/get-veocean-stats.md)
* [Ocean.py](developers/ocean.py/README.md)
2023-05-24 15:01:18 +02:00
* [Install](developers/ocean.py/install.md)
* [Local Setup](developers/ocean.py/local-setup.md)
* [Remote Setup](developers/ocean.py/remote-setup.md)
* [Publish Flow](developers/ocean.py/publish-flow.md)
* [Consume Flow](developers/ocean.py/consume-flow.md)
* [Compute Flow](developers/ocean.py/compute-flow.md)
* [Ocean Instance Tech Details](developers/ocean.py/technical-details.md)
* [Ocean Assets Tech Details](developers/ocean.py/ocean-assets-tech-details.md)
* [Ocean Compute Tech Details](developers/ocean.py/ocean-compute-tech-details.md)
* [Datatoken Interface Tech Details](developers/ocean.py/datatoken-interface-tech-details.md)
2023-05-26 13:50:44 +02:00
* [Ocean.js](developers/ocean.js/README.md)
* [Configuration](developers/ocean.js/configuration.md)
* [Creating a data NFT](developers/ocean.js/creating-datanft.md)
* [Publish](developers/ocean.js/publish.md)
* [Mint Datatokens](developers/ocean.js/mint-datatoken.md)
* [Update Metadata](developers/ocean.js/update-metadata.md)
* [Asset Visibility](developers/ocean.js/remove-asset.md)
2023-06-09 15:10:40 +02:00
* [Consume Asset](developers/ocean.js/consume-asset.md)
* [Run C2D Jobs](developers/ocean.js/cod-asset.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)
* [Compute Options](developers/compute-to-data/compute-options.md)
2023-05-22 17:12:17 +02:00
* [Aquarius](developers/aquarius/README.md)
* [Asset Requests](developers/aquarius/asset-requests.md)
* [Chain Requests](developers/aquarius/chain-requests.md)
* [Other Requests](developers/aquarius/other-requests.md)
2023-05-23 14:20:25 +02:00
* [Provider](developers/provider/README.md)
* [General Endpoints](developers/provider/general-endpoints.md)
* [Encryption / Decryption](developers/provider/encryption-decryption.md)
* [Compute Endpoints](developers/provider/compute-endpoints.md)
* [Authentication Endpoints](developers/provider/authentication-endpoints.md)
2023-05-18 15:12:12 +02:00
* [📊 Data Science](data-science/README.md)
* [Data Value Creation Loop](data-science/the-data-value-creation-loop.md)
* [What data is valuable?](data-science/data-engineers.md)
* [🔨 Infrastructure](infrastructure/README.md)
2023-04-12 17:03:54 +02:00
* [Setup a Server](infrastructure/setup-server.md)
* [Deploying Marketplace](infrastructure/deploying-marketplace.md)
* [Deploying Aquarius](infrastructure/deploying-aquarius.md)
* [Deploying Provider](infrastructure/deploying-provider.md)
* [Deploying Ocean Subgraph](infrastructure/deploying-ocean-subgraph.md)
* [C2D - Minikube Environment](infrastructure/compute-to-data-minikube.md)
* [C2D - Private Docker Registry](infrastructure/compute-to-data-docker-registry.md)
2023-05-18 15:12:12 +02:00
* [🤑 DeFi](defi/README.md)
* [💰 Rewards](rewards/README.md)
* [Data Farming 101 (White Belt)](rewards/df-intro.md)
2023-06-22 09:43:58 +02:00
* [DF Basic Actions (Blue Belt)](rewards/df-basic.md)
* [DF Max Out Yield (Purple Belt)](rewards/df-max-out-yield.md)
* [DF Challenge (Brown Belt)](rewards/df-challenges.md)
* [DF "ve" in veOCEAN (Black Belt)](rewards/veocean.md)
* [DF Emissions & APYs (Red Belt)](rewards/df-emissions-apys.md)
* [🤝 Contribute](contribute/README.md)
2023-04-12 17:03:54 +02:00
* [Partners & Collaborators](contribute/projects-using-ocean.md)
* [Contributor Code of Conduct](contribute/code-of-conduct.md)
* [Legal Requirements](contribute/legal-reqs.md)