@medialane/sdk 0.7.3 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -423,6 +423,8 @@ interface ApiToken {
423
423
  owner: string | null;
424
424
  tokenUri: string | null;
425
425
  metadataStatus: "PENDING" | "FETCHING" | "FETCHED" | "FAILED";
426
+ /** Token standard derived from the parent collection. Use this to determine ERC-721 vs ERC-1155 behavior. */
427
+ standard: "ERC721" | "ERC1155" | "UNKNOWN";
426
428
  metadata: ApiTokenMetadata;
427
429
  /** Current holders with amounts. Only present on single-token fetches; null on list responses. */
428
430
  balances: ApiTokenBalance[] | null;
package/dist/index.d.ts CHANGED
@@ -423,6 +423,8 @@ interface ApiToken {
423
423
  owner: string | null;
424
424
  tokenUri: string | null;
425
425
  metadataStatus: "PENDING" | "FETCHING" | "FETCHED" | "FAILED";
426
+ /** Token standard derived from the parent collection. Use this to determine ERC-721 vs ERC-1155 behavior. */
427
+ standard: "ERC721" | "ERC1155" | "UNKNOWN";
426
428
  metadata: ApiTokenMetadata;
427
429
  /** Current holders with amounts. Only present on single-token fetches; null on list responses. */
428
430
  balances: ApiTokenBalance[] | null;