Skip to content

Commit

Permalink
Merge pull request #796 from lukso-network/fix/refactor-verification
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ42 authored Nov 6, 2023
2 parents d3f26ea + 4ff7b6f commit 9ba0fcd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,11 @@ export type LSP4DigitalAssetMetadata = {
export type ImageMetadata = {
width: number;
height: number;
verificationFunction: string;
verificationData: string;
verification?: {
method: string;
data: string;
source?: string;
};
url: string;
};

Expand All @@ -134,8 +137,11 @@ export type LinkMetadata = {
};

export type AssetMetadata = {
verificationFunction: string;
verificationData: string;
verification?: {
method: string;
data: string;
source?: string;
};
url: string;
fileType: string;
};
Expand Down

0 comments on commit 9ba0fcd

Please sign in to comment.