@evefrontier/dapp-kit - v0.0.1
    Preparing search index...

    Interface DatahubGameInfo

    Game item/type information from the EVE Frontier Datahub API.

    Contains metadata about items, assemblies, and other game objects including display names, descriptions, icons, and physical properties.

    interface DatahubGameInfo {
        id: number;
        name: string;
        description: string;
        mass: number;
        radius: number;
        volume: number;
        portionSize: number;
        groupName: string;
        groupId: number;
        categoryName: string;
        categoryId: number;
        iconUrl: string;
        attributes?: { energyConstant?: number; [key: string]: unknown };
    }
    Index

    Properties

    id: number

    The type ID (matches on-chain type_id)

    name: string

    Display name of the item/type

    description: string

    Description text

    mass: number

    Mass in kg

    radius: number

    Radius in meters

    volume: number

    Volume in cubic meters

    portionSize: number

    Portion size for stacking

    groupName: string

    Category group name (e.g., "Structures")

    groupId: number

    Category group ID

    categoryName: string

    Top-level category name

    categoryId: number

    Top-level category ID

    iconUrl: string

    URL to the item's icon image

    attributes?: { energyConstant?: number; [key: string]: unknown }

    Additional type-specific attributes