let DropErc1155ContractOutput: ZodObject<
{
app_uri: ZodOptional<ZodString>;
description: ZodOptional<ZodString>;
external_link: ZodOptional<ZodString>;
fee_recipient: ZodDefault<
ZodUnion<
[
ZodType<string, ZodTypeDef, string>,
ZodType<
`0x${string}`,
ZodTypeDef,
`${string}.eth` | `${string}.cb.id`
>,
]
>
>;
image: ZodOptional<ZodString>;
merkle: ZodDefault<ZodRecord<ZodString, ZodString>>;
name: ZodString;
seller_fee_basis_points: ZodDefault<ZodNumber>;
social_urls: ZodOptional<ZodRecord<ZodString, ZodString>>;
symbol: ZodDefault<ZodString>;
},
"strip",
ZodTypeAny,
{
app_uri?: string;
description?: string;
external_link?: string;
fee_recipient: string;
image?: string;
merkle: Record<string, string>;
name: string;
seller_fee_basis_points: number;
social_urls?: Record<string, string>;
symbol: string;
},
{
app_uri?: string;
description?: string;
external_link?: string;
fee_recipient?: string;
image?: string;
merkle?: Record<string, string>;
name: string;
seller_fee_basis_points?: number;
social_urls?: Record<string, string>;
symbol?: string;
}
>;