mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
400ff6a4fd
Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro>
18 lines
332 B
TypeScript
18 lines
332 B
TypeScript
import { MetadataPublishForm } from '../../../src/@types/MetaData'
|
|
|
|
const testFormData: MetadataPublishForm = {
|
|
author: '',
|
|
files: [],
|
|
dataTokenOptions: {
|
|
name: '',
|
|
symbol: ''
|
|
},
|
|
name: '',
|
|
description: 'description',
|
|
termsAndConditions: true,
|
|
access: 'Download'
|
|
// links: []
|
|
}
|
|
|
|
export default testFormData
|