@liberfi.io/ui-tokens 3.0.30 → 3.0.32

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.mts CHANGED
@@ -1455,17 +1455,13 @@ interface UseTokenDevTokensListScriptParams {
1455
1455
  interface UseTokenDevTokensListScriptResult {
1456
1456
  tokens: Array<Token>;
1457
1457
  isLoading: boolean;
1458
+ /** true when the backend endpoint is not implemented yet. */
1458
1459
  unavailable: boolean;
1459
1460
  hasMore: boolean;
1460
1461
  loadMore: () => void;
1461
1462
  }
1462
1463
  /**
1463
1464
  * Script for the dev-tokens list widget.
1464
- *
1465
- * The backend endpoint for "tokens created by wallet" has not shipped; the
1466
- * client method throws `NotImplementedError`. This script detects the
1467
- * unavailable state so the UI can render a coming-soon message while the
1468
- * endpoint is being built.
1469
1465
  */
1470
1466
  declare function useTokenDevTokensListScript({ chain, creator, limit, }: UseTokenDevTokensListScriptParams): UseTokenDevTokensListScriptResult;
1471
1467
 
package/dist/index.d.ts CHANGED
@@ -1455,17 +1455,13 @@ interface UseTokenDevTokensListScriptParams {
1455
1455
  interface UseTokenDevTokensListScriptResult {
1456
1456
  tokens: Array<Token>;
1457
1457
  isLoading: boolean;
1458
+ /** true when the backend endpoint is not implemented yet. */
1458
1459
  unavailable: boolean;
1459
1460
  hasMore: boolean;
1460
1461
  loadMore: () => void;
1461
1462
  }
1462
1463
  /**
1463
1464
  * Script for the dev-tokens list widget.
1464
- *
1465
- * The backend endpoint for "tokens created by wallet" has not shipped; the
1466
- * client method throws `NotImplementedError`. This script detects the
1467
- * unavailable state so the UI can render a coming-soon message while the
1468
- * endpoint is being built.
1469
1465
  */
1470
1466
  declare function useTokenDevTokensListScript({ chain, creator, limit, }: UseTokenDevTokensListScriptParams): UseTokenDevTokensListScriptResult;
1471
1467