2020-07-16 13:39:02 +02:00
|
|
|
import { MetadataPublishForm } from '../../../src/@types/Metadata'
|
2020-05-07 08:03:30 +02:00
|
|
|
|
2020-07-16 13:39:02 +02:00
|
|
|
const testFormData: MetadataPublishForm = {
|
2020-05-07 08:03:30 +02:00
|
|
|
author: '',
|
|
|
|
files: [],
|
|
|
|
license: '',
|
2020-09-02 11:43:15 +02:00
|
|
|
price: {
|
|
|
|
tokensToMint: 1,
|
|
|
|
type: 'simple',
|
|
|
|
weightOnDataToken: '1',
|
|
|
|
liquidityProviderFee: '0.1'
|
|
|
|
},
|
2020-07-09 18:08:13 +02:00
|
|
|
name: '',
|
2020-07-09 15:31:47 +02:00
|
|
|
description: 'description',
|
2020-07-09 18:08:13 +02:00
|
|
|
termsAndConditions: true,
|
2020-07-10 13:19:04 +02:00
|
|
|
access: 'Download'
|
|
|
|
// links: []
|
2020-05-07 08:03:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default testFormData
|