AppOptions: {
    description?: string;
    developer: string;
    id?: string;
    logo?: string;
    name: string;
    platforms: Platform[];
    privacyPolicy?: string;
    termsOfService?: string;
    url: string;
}

Type declaration

  • Optional description?: string

    An optional short and detailed description of the app, explaining its features and purpose.

  • developer: string

    The Developer of the app.

  • Optional id?: string

    A unique identifier that in storages like IPFS ensures the uniqueness of the metadata URI.

    Default Value

    a UUID
    
  • Optional logo?: string

    The Logo icon for the app.

  • name: string

    The name of the app.

  • platforms: Platform[]

    The platforms supported by the app. Currently supports web, ios and android.

  • Optional privacyPolicy?: string

    The privacy policy for the app.

  • Optional termsOfService?: string

    The terms of service for the app.

  • url: string

    The url of the app.