1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-30 05:41:41 +02:00

remove curation

This commit is contained in:
Matthias Kretschmann 2020-08-05 14:38:22 +02:00
parent 541e495d71
commit 4850f10d8d
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 2 additions and 9 deletions

View File

@ -28,7 +28,7 @@ export default function PublishPage({
`)
const metadata = transformPublishFormToMetadata(values)
const { tokensToMint, type } = values.price
const { tokensToMint } = values.price
const serviceType = values.access === 'Download' ? 'access' : 'compute'
console.log(`

View File

@ -40,8 +40,7 @@ export function transformPublishFormToMetadata(
// },
termsAndConditions,
priceType: price.type
},
curation: AssetModel.curation
}
}
return metadata

View File

@ -20,12 +20,6 @@ const AssetModel: MetadataMarket = {
// custom items
termsAndConditions: false,
priceType: undefined
},
curation: {
rating: 0,
numVotes: 0,
schema: '5-star voting',
isListed: true
}
}