import { mkt } from './config'
const listing = await mkt.list(
{
name: 'My Item',
description: 'This is my item',
category: 'Clothing',
color: 'blue',
tags: ['sale']
brand: 'brand',
nftType: 'physical'
status: 'listed'
royalty: {
royaltyAmount: 300, // 3% royalty
receiver: '0x123'
},
price: 100, // $1
quantity: 1,
images: [File],
video: File,
collection: '<COLLECTION_ADDRESS>'
}
)