1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

removed dynamic pricing and pools references in readme (#1610)

This commit is contained in:
EnzoVezzaro 2022-07-25 05:13:35 -04:00 committed by GitHub
parent 0a94f72bc8
commit e401770645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 10 deletions

View File

@ -13,7 +13,6 @@
# Toggle pricing options presented during price creation # Toggle pricing options presented during price creation
#NEXT_PUBLIC_ALLOW_FIXED_PRICING="true" #NEXT_PUBLIC_ALLOW_FIXED_PRICING="true"
#NEXT_PUBLIC_ALLOW_DYNAMIC_PRICING="true"
#NEXT_PUBLIC_ALLOW_FREE_PRICING="true" #NEXT_PUBLIC_ALLOW_FREE_PRICING="true"
# Privacy Preference Center # Privacy Preference Center

View File

@ -27,7 +27,6 @@
- [💖 Contributing](#-contributing) - [💖 Contributing](#-contributing)
- [🍴 Forking](#-forking) - [🍴 Forking](#-forking)
- [💰 Pricing Options](#-pricing-options) - [💰 Pricing Options](#-pricing-options)
- [Dynamic Pricing](#dynamic-pricing)
- [Fixed Pricing](#fixed-pricing) - [Fixed Pricing](#fixed-pricing)
- [Free Pricing](#free-pricing) - [Free Pricing](#free-pricing)
- [✅ GDPR Compliance](#-gdpr-compliance) - [✅ GDPR Compliance](#-gdpr-compliance)
@ -110,7 +109,7 @@ All displayed data in the app is presented around the concept of one data set, w
- the actual data set files - the actual data set files
- the NFT which represents the data set - the NFT which represents the data set
- the datatokens representing access rights to the data set files - the datatokens representing access rights to the data set files
- financial data connected to these datatokens, either a pool or a fixed rate exchange contract - financial data connected to these datatokens
- calculations and conversions based on financial data - calculations and conversions based on financial data
- metadata about publisher accounts - metadata about publisher accounts
@ -181,10 +180,10 @@ The app has [Urql Client](https://formidable.com/open-source/urql/docs/basics/re
import { gql, useQuery } from 'urql' import { gql, useQuery } from 'urql'
const query = gql` const query = gql`
query PoolLiquidity($id: ID!, $shareId: ID) { query TopSalesQuery {
pool(id: $id) { users(first: 20, orderBy: totalSales, orderDirection: desc) {
id id
totalShares totalSales
} }
} }
` `
@ -402,10 +401,6 @@ Everything else is made open according to the apache2 license. We look forward t
## 💰 Pricing Options ## 💰 Pricing Options
### Dynamic Pricing
To allow publishers to set pricing as "Dynamic" you need to add the following environmental variable to your .env file: `NEXT_PUBLIC_ALLOW_DYNAMIC_PRICING="true"` (default).
### Fixed Pricing ### Fixed Pricing
To allow publishers to set pricing as "Fixed" you need to add the following environmental variable to your .env file: `NEXT_PUBLIC_ALLOW_FIXED_PRICING="true"` (default). To allow publishers to set pricing as "Fixed" you need to add the following environmental variable to your .env file: `NEXT_PUBLIC_ALLOW_FIXED_PRICING="true"` (default).