Skip to content

Commit

Permalink
Merge pull request #928 from dzbo/fix/add-name-to-lsp4
Browse files Browse the repository at this point in the history
fix: add missing `name` field to LSP4 type
  • Loading branch information
CJ42 authored Mar 19, 2024
2 parents adfd9dd + b0e5369 commit f4def52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/lsp4-contracts/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ export type LSP4DigitalAssetMetadataJSON = {
};

export type LSP4DigitalAssetMetadata = {
name: string;
description: string;
links: LinkMetadata[];
images: ImageMetadata[][];
assets: AssetMetadata[];
icon: ImageMetadata[];
attributes: AttributeMetadata[];
attributes?: AttributeMetadata[];
};

export type LinkMetadata = {
Expand Down

0 comments on commit f4def52

Please sign in to comment.