mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
e02babf2c2
* Free Pricing Option at create Pricing (#621) * Free Pricing Option + env var toggle * Create Pricing step msg * Default 'allowFreePricing' to true temp for review * Fix price 0 on free tab * Attempt fix useSiteMetadata * Fix linting * Feature/free price support consume compute (#654) * Update fetch free price * Feedback change UI remove 0's * update button msg && fix * compute algorithm list show 'Free' instead of '0' * updateMetadata() v3 workaround solution for free pricing (#677) * compute algorithm list show 'Free' instead of '0' * workaround editMetaData free price * utils function for compute & download * `allowFreePricing` default to false
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
module.exports = {
|
|
// The default network and its associated config the app should connect to
|
|
// on start. App will automatically switch network configs when user switches
|
|
// networks in their wallet.
|
|
// Ocean Protocol contracts are deployed for: 'mainnet', 'rinkeby', 'development'
|
|
network: process.env.GATSBY_NETWORK || 'mainnet',
|
|
rbacUrl: process.env.GATSBY_RBAC_URL,
|
|
|
|
infuraProjectId: process.env.GATSBY_INFURA_PROJECT_ID || 'xxx',
|
|
|
|
// The ETH address the marketplace fee will be sent to.
|
|
marketFeeAddress:
|
|
process.env.GATSBY_MARKET_FEE_ADDRESS ||
|
|
'0x903322C7E45A60d7c8C3EA236c5beA9Af86310c7',
|
|
|
|
// Used for conversion display, can be whatever coingecko API supports
|
|
// see: https://api.coingecko.com/api/v3/simple/supported_vs_currencies
|
|
currencies: [
|
|
'EUR',
|
|
'USD',
|
|
'CAD',
|
|
'GBP',
|
|
'SGD',
|
|
'HKD',
|
|
'CNY',
|
|
'JPY',
|
|
'INR',
|
|
'RUB',
|
|
'ETH',
|
|
'BTC',
|
|
'LINK'
|
|
],
|
|
|
|
// Config for https://github.com/donavon/use-dark-mode
|
|
darkModeConfig: {
|
|
classNameDark: 'dark',
|
|
classNameLight: 'light',
|
|
storageKey: 'oceanDarkMode'
|
|
},
|
|
|
|
// Wallets
|
|
portisId: process.env.GATSBY_PORTIS_ID || 'xxx',
|
|
|
|
// Used to show or hide the fixed, dynamic or free price options
|
|
// tab to publishers during the price creation.
|
|
allowFixedPricing: process.env.GATSBY_ALLOW_FIXED_PRICING || 'true',
|
|
allowDynamicPricing: process.env.GATSBY_ALLOW_DYNAMIC_PRICING || 'true',
|
|
allowFreePricing: process.env.GATSBY_ALLOW_FREE_PRICING || 'false',
|
|
|
|
// Used to show or hide advanced settings button in asset details page
|
|
allowAdvancedSettings: process.env.GATSBY_ALLOW_ADVANCED_SETTINGS || 'false',
|
|
credentialType: process.env.GATSBY_CREDENTIAL_TYPE || 'address'
|
|
}
|