import React from 'react' import { allowFixedPricing } from '../../../app.config.js' import { FormPublishData, MetadataAlgorithmContainer, PublishFeedback, StepContent } from './_types' import content from '../../../content/publish/form.json' import PricingFields from './Pricing' import MetadataFields from './Metadata' import ServicesFields from './Services' import Preview from './Preview' import Submission from './Submission' import { ServiceComputeOptions } from '@oceanprotocol/lib' import contentFeedback from '../../../content/publish/feedback.json' export const wizardSteps: StepContent[] = [ { step: 1, title: content.metadata.title, component: }, { step: 2, title: content.services.title, component: }, { step: 3, title: content.pricing.title, component: }, { step: 4, title: content.preview.title, component: }, { step: 5, title: content.submission.title, component: } ] const computeOptions: ServiceComputeOptions = { allowRawAlgorithm: false, allowNetworkAccess: true, publisherTrustedAlgorithmPublishers: [], publisherTrustedAlgorithms: [] } export const initialValues: FormPublishData = { user: { stepCurrent: 1, chainId: 1, accountId: '' }, metadata: { nft: { name: '', symbol: '', description: '', image_data: '' }, transferable: true, type: 'dataset', name: '', author: '', description: '', tags: '', termsAndConditions: false, dockerImage: '', dockerImageCustom: '', dockerImageCustomTag: '', dockerImageCustomEntrypoint: '' }, services: [ { files: [{ url: '', type: '' }], links: [{ url: '', type: '' }], dataTokenOptions: { name: '', symbol: '' }, timeout: '', access: 'access', providerUrl: { url: 'https://provider.mainnet.oceanprotocol.com', valid: true, custom: false }, computeOptions } ], pricing: { baseToken: { address: '', name: '', symbol: 'OCEAN', decimals: 18 }, price: 0, type: allowFixedPricing === 'true' ? 'fixed' : 'free', freeAgreement: false } } export const algorithmContainerPresets: MetadataAlgorithmContainer[] = [ { image: 'node', tag: '18.6.0', // TODO: Put this back to latest once merging the PR that fetches the container digest from docker hub via dockerhub-proxy entrypoint: 'node $ALGO', checksum: 'sha256:c60726646352202d95de70d9e8393c15f382f8c6074afc5748b7e570ccd5995f' }, { image: 'python', tag: '3.10.5', // TODO: Put this back to latest once merging the PR that fetches the container digest from docker hub via dockerhub-proxy entrypoint: 'python $ALGO', checksum: 'sha256:607635763e54907fd75397fedfeb83890e62a0f9b54a1d99d27d748c5d269be4' } ] export const initialPublishFeedback: PublishFeedback = contentFeedback