constants.ts raw

   1  export const localStorageKeys = {
   2    returnTo: "returnTo",
   3    setupReturnTo: "setupReturnTo",
   4    channelOrder: "channelOrder",
   5    authToken: "authToken",
   6    supportAlbySidebarHintHiddenUntil: "supportAlbySidebarHintHiddenUntil",
   7    aiHeroDismissed: "aiHeroDismissed",
   8    cardsHeroDismissed: "cardsHeroDismissed",
   9    homeStoriesViewed: "homeStoriesViewed",
  10  };
  11  
  12  export const ONCHAIN_DUST_SATS = 1000;
  13  export const ALBY_HIDE_HOSTED_BALANCE_BELOW = 100;
  14  export const ALBY_MIN_HOSTED_BALANCE_FOR_FIRST_CHANNEL = 10_000;
  15  
  16  export const LIST_TRANSACTIONS_LIMIT = 20;
  17  export const LIST_APPS_LIMIT = 20;
  18  export const MAX_FREE_SUBWALLETS = 3;
  19  export const APP_SELECT_APPS_LIMIT = 100;
  20  export const PAY_FROM_SELECT_APPS_LIMIT = 100;
  21  
  22  export const SUPPORT_ALBY_CONNECTION_NAME = `ZapPlanner - Alby Hub`;
  23  export const SUPPORT_ALBY_LIGHTNING_ADDRESS = "hub@getalby.com";
  24  
  25  export const SUBWALLET_APPSTORE_APP_ID = "uncle-jim";
  26  export const ALBY_ACCOUNT_APP_NAME = "getalby.com";
  27  
  28  export const DEFAULT_APP_BUDGET_SATS = 100_000;
  29  export const DEFAULT_APP_BUDGET_RENEWAL = "monthly";
  30  
  31  export const BITCOIN_DISPLAY_FORMAT_BIP177 = "bip177";
  32  export const BITCOIN_DISPLAY_FORMAT_SATS = "sats";
  33