1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 01:34:57 +01:00
market/tests/unit/__fixtures__/testFormData.ts
2020-10-01 17:13:19 +02:00

22 lines
406 B
TypeScript

import { MetadataPublishForm } from '../../../src/@types/MetaData'
const testFormData: MetadataPublishForm = {
author: '',
files: [],
license: '',
price: {
price: 1,
tokensToMint: 9,
type: 'fixed',
weightOnDataToken: '1',
swapFee: 0.1
},
name: '',
description: 'description',
termsAndConditions: true,
access: 'Download'
// links: []
}
export default testFormData