1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 17:54:53 +01:00
market/tests/unit/__fixtures__/testFormData.ts

21 lines
408 B
TypeScript
Raw Normal View History

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: '',
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