From bb05ad6fad80e089e7f8da933059894a5e3fd093 Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Thu, 2 Dec 2021 17:28:46 +0200 Subject: [PATCH] added token uri to nft and updated reason doc on purgatory --- src/ddo/Asset.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ddo/Asset.ts b/src/ddo/Asset.ts index aea991e3..7af33d16 100644 --- a/src/ddo/Asset.ts +++ b/src/ddo/Asset.ts @@ -41,6 +41,12 @@ export interface AssetNft { * @type {string} */ created: string + + /** + * NFT token URI. + * @type {string} + */ + tokenURI: string } export interface Purgatory { @@ -51,8 +57,8 @@ export interface Purgatory { state: boolean /** - * - * @type {boolean} + * If asset is in purgatory, contains the reason for being there as defined in `list-purgatory`. + * @type {string} */ reason: string }