interface OpenSeaNftAttribute {
    display_type?: DisplayType;
    max_value?: number;
    trait_type: string;
    value: string | number;
}

Hierarchy (view full)

Properties

display_type?: DisplayType

A field indicating how you would like it to be displayed. For string traits, you don't have to worry about display_type.

max_value?: number
trait_type: string

The name of the trait

value: string | number

The value of the trait

Generated using TypeDoc