@rango-dev/widget-embedded 0.1.11-next.6 → 0.1.11-next.8

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.
@@ -702,7 +702,10 @@ const createSelectors = _store => {
702
702
  return store;
703
703
  };
704
704
 
705
- const httpService = /*#__PURE__*/new RangoClient(process.env.REACT_APP_API_KEY);
705
+ // this API key is limited and
706
+ // it is only for test purpose
707
+ const RANGO_PUBLIC_API_KEY = 'c6381a79-2817-4602-83bf-6a641a409e32';
708
+ const httpService = /*#__PURE__*/new RangoClient(process.env.REACT_APP_API_KEY || RANGO_PUBLIC_API_KEY);
706
709
 
707
710
  const SLIPPAGES = [0.5, 1, 3, 5, 8, 13, 20];
708
711
  const DEFAULT_SLIPPAGE = 1;