Skip to main content

TypeAlias.DppClaimResult

type DppClaimResult = {
dppId: string;
tokenId: string;
transactionHash: string;
};

Result of a DPP claim operation.

Returned by claim endpoints with complete information about the claimed Digital Product Passport and blockchain transaction details.

Type Declaration

NameType
dppIdstring
tokenIdstring
transactionHashstring

Example

const result: DppClaimResult = {
dppId: "dpp_abc123",
tokenId: "42",
transactionHash: "0x1234567890abcdef..."
};