From 3bb6ad8d62cc8189b12ad56c4685941340856542 Mon Sep 17 00:00:00 2001 From: Evan <96965321+0xIchigo@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:10:55 -0400 Subject: [PATCH] Update DisplayOptions and GetAssetDisplayOptions (#123) --- src/types/das-types.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/types/das-types.ts b/src/types/das-types.ts index 11a93fc..c469a01 100644 --- a/src/types/das-types.ts +++ b/src/types/das-types.ts @@ -173,12 +173,24 @@ export namespace DAS { showUnverifiedCollections?: boolean; showCollectionMetadata?: boolean; showGrandTotal?: boolean; + showRawData?: boolean; + showFungible?: boolean; + requireFullIndex?: boolean; + showSystemMetadata?: boolean; + showZeroBalance?: boolean; + showClosedAccounts?: boolean; }; // Display options for getAssetBatch do not include grand_total. export type GetAssetDisplayOptions = { showUnverifiedCollections?: boolean; showCollectionMetadata?: boolean; + showRawData?: boolean; + showFungible?: boolean; + requireFullIndex?: boolean; + showSystemMetadata?: boolean; + showNativeBalance?: boolean; + showInscription?: boolean; }; // Ownership --