From a0e092ed64abe424ddf8591852639e94ae0feae4 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Thu, 16 Jul 2020 15:00:18 +0200 Subject: [PATCH] cleanup --- .env.example | 1 + app.config.js | 2 +- src/components/pages/Publish/PublishForm.tsx | 30 ++------------------ 3 files changed, 5 insertions(+), 28 deletions(-) diff --git a/.env.example b/.env.example index dff11335b..b094c8229 100644 --- a/.env.example +++ b/.env.example @@ -13,3 +13,4 @@ GATSBY_FACTORY_ADDRESS='0xxxx' #GATSBY_PROVIDER_URI='https://provider.rinkeby.v3.dev-ocean.com' #GATSBY_FACTORY_ADDRESS='0xB9d406D24B310A7D821D0b782a36909e8c925471' #GATSBY_OCEAN_TOKEN_ADDRESS='0x8967BCF84170c91B0d24D4302C2376283b0B3a07' +#GATSBY_MARKET_ADDRESS='xxx' \ No newline at end of file diff --git a/app.config.js b/app.config.js index af79fd06f..d15d4579a 100644 --- a/app.config.js +++ b/app.config.js @@ -23,5 +23,5 @@ module.exports = { infuraProjectId: process.env.GATSBY_INFURA_PROJECT_ID || 'xxx', marketAddress: process.env.GATSBY_MARKET_ADDRESS || - '0x36A7f3383A63279cDaF4DfC0F3ABc07d90252C6b' + '0x903322C7E45A60d7c8C3EA236c5beA9Af86310c7' } diff --git a/src/components/pages/Publish/PublishForm.tsx b/src/components/pages/Publish/PublishForm.tsx index b345b99d7..6eb89e421 100644 --- a/src/components/pages/Publish/PublishForm.tsx +++ b/src/components/pages/Publish/PublishForm.tsx @@ -1,23 +1,16 @@ import React, { ReactElement } from 'react' import * as Yup from 'yup' import { useNavigate } from '@reach/router' -import { toStringNoMS } from '../../../utils' import { toast } from 'react-toastify' import styles from './PublishForm.module.css' import { useOcean, usePublish } from '@oceanprotocol/react' -import { - Service, - ServiceCompute -} from '@oceanprotocol/lib/dist/node/ddo/interfaces/Service' import { Formik, Form as FormFormik, Field } from 'formik' import Input from '../../atoms/Input' import Button from '../../atoms/Button' import { transformPublishFormToMetadata } from './utils' import { FormContent, FormFieldProps } from '../../../@types/Form' -import { MetadataPublishForm, MetadataMarket } from '../../../@types/Metadata' -import AssetModel from '../../../models/Asset' +import { MetadataPublishForm } from '../../../@types/Metadata' import { File as FileMetadata } from '@oceanprotocol/lib/dist/node/ddo/interfaces/File' -import web3Utils from 'web3-utils' import { useSiteMetadata } from '../../../hooks/useSiteMetadata' const validationSchema = Yup.object().shape({ @@ -71,14 +64,13 @@ export default function PublishForm({ `) const metadata = transformPublishFormToMetadata(values) - const cost = web3Utils.toWei(values.cost) const tokensToMint = '4' // how to know this? console.log(` Transformed metadata values: ---------------------- ${metadata} - Cost: ${cost} + Cost: ${values.cost} Tokens to mint: ${tokensToMint} `) @@ -87,7 +79,7 @@ export default function PublishForm({ metadata as any, tokensToMint, marketAddress, - cost + values.cost ) // User feedback and redirect to new asset detail page @@ -97,22 +89,6 @@ export default function PublishForm({ } catch (error) { console.error(error.message) } - - // if services array stays empty, the default access service - // will be created by squid-js - // let services: Service[] = [] - - // if (metadata.additionalInformation.access === 'Compute') { - // const computeService: ServiceCompute = await ocean.compute.createComputeServiceAttributes( - // account, - // metadata.main.price, - // // Note: a hack without consequences. - // // Will make metadata.main.datePublished (automatically created by MetadataStore) - // // go out of sync with this service.main.datePublished. - // toStringNoMS(new Date(Date.now())) - // ) - // services = [computeService] - // } } return (