Skip to content

Commit

Permalink
Update DisplayOptions and GetAssetDisplayOptions (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xIchigo authored Aug 15, 2024
1 parent 988e8af commit 3bb6ad8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/types/das-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 --
Expand Down

0 comments on commit 3bb6ad8

Please sign in to comment.