Variable TokenErc721ContractInputConst

TokenErc721ContractInput: 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<ZodUnion<[ZodUnion<[ZodTypeAny, ZodObject<{
        data: ZodUnion<[ZodTypeAny, ZodString]>;
        name: ZodString;
    }, "strip", ZodTypeAny, {
        data?: any;
        name: string;
    }, {
        data?: any;
        name: string;
    }>]>, 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?: any;
    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?: any;
    name: string;
    seller_fee_basis_points?: number;
    social_urls?: Record<string, string>;
    symbol?: string;
}> = ...

Type declaration

  • 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`>]>>

    The address of the royalty recipient. All royalties will be sent to this address.

    Internalremarks

    used by OpenSea "fee_recipient"

  • image: ZodOptional<ZodUnion<[ZodUnion<[ZodTypeAny, ZodObject<{
        data: ZodUnion<[ZodTypeAny, ZodString]>;
        name: ZodString;
    }, "strip", ZodTypeAny, {
        data?: any;
        name: string;
    }, {
        data?: any;
        name: string;
    }>]>, ZodString]>>
  • name: ZodString
  • seller_fee_basis_points: ZodDefault<ZodNumber>

    The amount of royalty collected on all royalties represented as basis points. The default is 0 (no royalties).

    1 basis point = 0.01%

    For example: if this value is 100, then the royalty is 1% of the total sales.

    Internalremarks

    used by OpenSea "seller_fee_basis_points"

  • social_urls: ZodOptional<ZodRecord<ZodString, ZodString>>
  • symbol: ZodDefault<ZodString>

Type declaration

  • Optional app_uri?: string
  • Optional description?: string
  • Optional external_link?: string
  • fee_recipient: string

    The address of the royalty recipient. All royalties will be sent to this address.

    Internalremarks

    used by OpenSea "fee_recipient"

  • Optional image?: any
  • name: string
  • seller_fee_basis_points: number

    The amount of royalty collected on all royalties represented as basis points. The default is 0 (no royalties).

    1 basis point = 0.01%

    For example: if this value is 100, then the royalty is 1% of the total sales.

    Internalremarks

    used by OpenSea "seller_fee_basis_points"

  • Optional social_urls?: Record<string, string>
  • symbol: string

Type declaration

  • Optional app_uri?: string
  • Optional description?: string
  • Optional external_link?: string
  • Optional fee_recipient?: string

    The address of the royalty recipient. All royalties will be sent to this address.

    Internalremarks

    used by OpenSea "fee_recipient"

  • Optional image?: any
  • name: string
  • Optional seller_fee_basis_points?: number

    The amount of royalty collected on all royalties represented as basis points. The default is 0 (no royalties).

    1 basis point = 0.01%

    For example: if this value is 100, then the royalty is 1% of the total sales.

    Internalremarks

    used by OpenSea "seller_fee_basis_points"

  • Optional social_urls?: Record<string, string>
  • Optional symbol?: string

Generated using TypeDoc