From e965ef7bf2451451407139671cf602771006da31 Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 19 Jul 2022 10:23:44 +0200 Subject: [PATCH] Issue-#1060: Remove content on pools --- README.md | 1 - core-concepts/architecture.md | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 6c7b5f1a..18151b02 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ Ocean Protocol provides tools for developers to _build data markets_, and to _ma * _Publish and access data services:_ downloadable files or compute-to-data. Use Ocean to deploy a new [ERC721](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md) and [ERC20](https://github.com/ethereum/EIPs/blob/7f4f0377730f5fc266824084188cc17cf246932e/EIPS/eip-20.md) datatoken contract for each data service, then mint datatokens. * _Transfer datatokens_ to another owner (or approve & transferFrom). -* _Manage pools._ Deploy OCEAN-datatoken [Balancer](https://www.balancer.fi/) pools, buy & sell datatokens (swap), and add & remove liquidity. * _And more._ Use ERC20 support in [web3.js](https://web3js.readthedocs.io/), [web3.py](https://web3py.readthedocs.io/en/stable/examples.html#working-with-an-erc20-token-contract) and Solidity to connect datatokens with crypto wallets and other DeFi services. **Compute-to-Data** Ocean's "Compute-to-Data" feature gives compute access to privately-held data, which never leaves the data owner’s premises. Ocean-based marketplaces enable the monetization of private data while preserving privacy. [Here](tutorials/compute-to-data-architecture/) are details. diff --git a/core-concepts/architecture.md b/core-concepts/architecture.md index 11da77ae..f20a0f3d 100644 --- a/core-concepts/architecture.md +++ b/core-concepts/architecture.md @@ -44,10 +44,7 @@ Once someone has generated datatokens, they can be used in any ERC20 exchange, c The marketplaces are decentralized (no single owner or controller), and non-custodial (only the data owner holds the keys for the datatokens). -Ocean Market supports fixed pricing and automatic price discovery. - -* For **fixed pricing**, there’s a simple contract for users to buy/sell datatokens for OCEAN while avoiding custodianship during value transfer. -* For **automatic price discovery**, Ocean Market uses automated market makers (AMMs) powered by [Balancer](https://www.balancer.fi). Each pool is a datatoken-OCEAN pair. In the Ocean Market GUI, the user adds liquidity then invokes pool creation; the GUI’s React code calls the Ocean JavaScript library, which calls the **Pool Factory** to deploy a **Pool** contract. (The Python library also does this.) Deploying a datatoken pool can be viewed as an “Initial Data Offering” (IDO). +Ocean Market supports fixed pricing or free pricing. For more detials on pricing schema refer [this guide](./asset-pricing.md). Complementary to Ocean Market, Ocean has reference code to ease building **third-party data marketplaces**, such as for logistics ([dexFreight data marketplace](https://blog.oceanprotocol.com/dexfreight-ocean-protocol-partner-to-enable-transportation-logistics-companies-to-monetize-data-7aa839195ac)) or mobility ([Daimler](https://blog.oceanprotocol.com/ocean-protocol-delivers-proof-of-concept-for-daimler-ag-in-collaboration-with-daimler-south-east-564aa7d959ca)).