TypeScript SDK
MarketplaceContractParams
type MarketplaceContractParams = {  contractURI?: string;  defaultAdmin?: Address;  description?: string;  external_link?: string;  image?: FileOrBufferOrString;  name: string;  platformFeeBps?: number;  platformFeeRecipient?: string;  social_urls?: Record<string, string>;  trustedForwarders?: Array<string>;};type contractURI = string;type defaultAdmin = Address;type description = string;type external_link = string;type image = FileOrBufferOrString;type name = string;type platformFeeBps = number;type platformFeeRecipient = string;type social_urls = Record<string, string>;type trustedForwarders = Array<string>;