mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
Merge pull request #43 from oceanprotocol/feature/consume
Feature/consume
This commit is contained in:
commit
4ea0b6c6fe
20
package-lock.json
generated
20
package-lock.json
generated
@ -3615,6 +3615,26 @@
|
|||||||
"decimal.js": "^10.2.0",
|
"decimal.js": "^10.2.0",
|
||||||
"web3": "^1.2.11",
|
"web3": "^1.2.11",
|
||||||
"web3modal": "^1.9.0"
|
"web3modal": "^1.9.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@oceanprotocol/lib": {
|
||||||
|
"version": "0.1.11",
|
||||||
|
"resolved": "https://registry.npmjs.org/@oceanprotocol/lib/-/lib-0.1.11.tgz",
|
||||||
|
"integrity": "sha512-DvsCWOACxNlsNpGWdbHhKsN2Lj+/B0UAp6l2/29fywFZnFp0mjywKFbhVEY25PGaHZIUG+7YZ0Eot615tKpNjw==",
|
||||||
|
"requires": {
|
||||||
|
"@ethereum-navigator/navigator": "^0.5.0",
|
||||||
|
"@oceanprotocol/contracts": "^0.3.1",
|
||||||
|
"bignumber.js": "^9.0.0",
|
||||||
|
"decimal.js": "^10.2.0",
|
||||||
|
"fs": "0.0.1-security",
|
||||||
|
"node-fetch": "^2.6.0",
|
||||||
|
"save-file": "^2.3.1",
|
||||||
|
"uuid": "^8.2.0",
|
||||||
|
"web3": "^1.2.9",
|
||||||
|
"web3-eth-contract": "^1.2.9",
|
||||||
|
"whatwg-url": "^8.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@oceanprotocol/typographies": {
|
"@oceanprotocol/typographies": {
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
"@coingecko/cryptoformat": "^0.3.8",
|
"@coingecko/cryptoformat": "^0.3.8",
|
||||||
"@loadable/component": "^5.13.1",
|
"@loadable/component": "^5.13.1",
|
||||||
"@oceanprotocol/art": "^3.0.0",
|
"@oceanprotocol/art": "^3.0.0",
|
||||||
|
"@oceanprotocol/lib": "^0.1.10",
|
||||||
"@oceanprotocol/react": "^0.0.31",
|
"@oceanprotocol/react": "^0.0.31",
|
||||||
"@oceanprotocol/typographies": "^0.1.0",
|
"@oceanprotocol/typographies": "^0.1.0",
|
||||||
"@sindresorhus/slugify": "^1.0.0",
|
"@sindresorhus/slugify": "^1.0.0",
|
||||||
|
@ -2,21 +2,22 @@ import React, { ReactElement } from 'react'
|
|||||||
import { useNavigate } from '@reach/router'
|
import { useNavigate } from '@reach/router'
|
||||||
import { toast } from 'react-toastify'
|
import { toast } from 'react-toastify'
|
||||||
import { Formik } from 'formik'
|
import { Formik } from 'formik'
|
||||||
import { usePublish } from '@oceanprotocol/react'
|
import { usePublish, useOcean } from '@oceanprotocol/react'
|
||||||
import styles from './index.module.css'
|
import styles from './index.module.css'
|
||||||
import PublishForm from './PublishForm'
|
import PublishForm from './PublishForm'
|
||||||
import Web3Feedback from '../../molecules/Wallet/Feedback'
|
import Web3Feedback from '../../molecules/Wallet/Feedback'
|
||||||
import { FormContent } from '../../../@types/Form'
|
import { FormContent } from '../../../@types/Form'
|
||||||
import { initialValues, validationSchema } from '../../../models/FormPublish'
|
import { initialValues, validationSchema } from '../../../models/FormPublish'
|
||||||
import { MetadataPublishForm } from '../../../@types/Metadata'
|
|
||||||
import { transformPublishFormToMetadata } from './utils'
|
import { transformPublishFormToMetadata } from './utils'
|
||||||
import Preview from './Preview'
|
import Preview from './Preview'
|
||||||
|
import { MetadataPublishForm } from '../../../@types/MetaData'
|
||||||
|
|
||||||
export default function PublishPage({
|
export default function PublishPage({
|
||||||
content
|
content
|
||||||
}: {
|
}: {
|
||||||
content: { form: FormContent }
|
content: { form: FormContent }
|
||||||
}): ReactElement {
|
}): ReactElement {
|
||||||
|
const { accountId, ocean } = useOcean()
|
||||||
const { publish, publishError } = usePublish()
|
const { publish, publishError } = usePublish()
|
||||||
const navigate = useNavigate()
|
const navigate = useNavigate()
|
||||||
|
|
||||||
@ -39,9 +40,26 @@ export default function PublishPage({
|
|||||||
`)
|
`)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const ddo = await publish(metadata as any, tokensToMint.toString(), [
|
// mpAddress and mpFee are not yet implemented in ocean js so are not uset
|
||||||
{ serviceType }
|
const ddo = await publish(
|
||||||
])
|
metadata as any,
|
||||||
|
tokensToMint.toString(),
|
||||||
|
serviceType,
|
||||||
|
'',
|
||||||
|
''
|
||||||
|
)
|
||||||
|
switch (type) {
|
||||||
|
case 'advanced': {
|
||||||
|
// weight is hardcoded at 9 (90%) and publisher fee at 0.03(this was a random value set by me)
|
||||||
|
const pool = await ocean.pool.createDTPool(
|
||||||
|
accountId,
|
||||||
|
ddo.dataToken,
|
||||||
|
tokensToMint.toString(),
|
||||||
|
'9',
|
||||||
|
'0.03'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (publishError) {
|
if (publishError) {
|
||||||
toast.error(publishError)
|
toast.error(publishError)
|
||||||
|
Loading…
Reference in New Issue
Block a user