mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 09:44:53 +01:00
22 lines
406 B
TypeScript
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
|