@covalenthq/client-sdk 2.0.0 → 2.0.2

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.
Files changed (51) hide show
  1. package/dist/cjs/index.d.ts +17 -0
  2. package/dist/cjs/index.js +2862 -0
  3. package/dist/cjs/index.js.map +1 -0
  4. package/dist/cjs/src/GoldRushClient.d.ts +20 -0
  5. package/dist/cjs/src/services/BalanceService.d.ts +125 -0
  6. package/dist/cjs/src/services/BaseService.d.ts +161 -0
  7. package/dist/cjs/src/services/NftService.d.ts +157 -0
  8. package/dist/cjs/src/services/PricingService.d.ts +25 -0
  9. package/dist/cjs/src/services/SecurityService.d.ts +28 -0
  10. package/dist/cjs/src/services/TransactionService.d.ts +128 -0
  11. package/dist/cjs/src/utils/functions/bigIntParser.d.ts +1 -0
  12. package/dist/cjs/src/utils/functions/calculatePrettyBalance.d.ts +1 -0
  13. package/dist/cjs/src/utils/functions/debugOutput.d.ts +2 -0
  14. package/dist/cjs/src/utils/functions/endpointGenerator.d.ts +4 -0
  15. package/dist/cjs/src/utils/functions/execution.d.ts +11 -0
  16. package/dist/cjs/src/utils/functions/isValidApiKey.d.ts +1 -0
  17. package/dist/cjs/src/utils/functions/paginateEndpoint.d.ts +7 -0
  18. package/dist/cjs/src/utils/functions/prettifyCurrency.d.ts +2 -0
  19. package/dist/cjs/src/utils/types/BalanceService.types.d.ts +442 -0
  20. package/dist/cjs/src/utils/types/BaseService.types.d.ts +326 -0
  21. package/dist/cjs/src/utils/types/Generic.types.d.ts +477 -0
  22. package/dist/cjs/src/utils/types/NftService.types.d.ts +273 -0
  23. package/dist/cjs/src/utils/types/PricingService.types.d.ts +39 -0
  24. package/dist/cjs/src/utils/types/SecurityService.types.d.ts +122 -0
  25. package/dist/cjs/src/utils/types/TransactionService.types.d.ts +474 -0
  26. package/dist/esm/index.d.ts +17 -0
  27. package/dist/esm/index.js +2854 -0
  28. package/dist/esm/index.js.map +1 -0
  29. package/dist/esm/src/GoldRushClient.d.ts +20 -0
  30. package/dist/esm/src/services/BalanceService.d.ts +125 -0
  31. package/dist/esm/src/services/BaseService.d.ts +161 -0
  32. package/dist/esm/src/services/NftService.d.ts +157 -0
  33. package/dist/esm/src/services/PricingService.d.ts +25 -0
  34. package/dist/esm/src/services/SecurityService.d.ts +28 -0
  35. package/dist/esm/src/services/TransactionService.d.ts +128 -0
  36. package/dist/esm/src/utils/functions/bigIntParser.d.ts +1 -0
  37. package/dist/esm/src/utils/functions/calculatePrettyBalance.d.ts +1 -0
  38. package/dist/esm/src/utils/functions/debugOutput.d.ts +2 -0
  39. package/dist/esm/src/utils/functions/endpointGenerator.d.ts +4 -0
  40. package/dist/esm/src/utils/functions/execution.d.ts +11 -0
  41. package/dist/esm/src/utils/functions/isValidApiKey.d.ts +1 -0
  42. package/dist/esm/src/utils/functions/paginateEndpoint.d.ts +7 -0
  43. package/dist/esm/src/utils/functions/prettifyCurrency.d.ts +2 -0
  44. package/dist/esm/src/utils/types/BalanceService.types.d.ts +442 -0
  45. package/dist/esm/src/utils/types/BaseService.types.d.ts +326 -0
  46. package/dist/esm/src/utils/types/Generic.types.d.ts +477 -0
  47. package/dist/esm/src/utils/types/NftService.types.d.ts +273 -0
  48. package/dist/esm/src/utils/types/PricingService.types.d.ts +39 -0
  49. package/dist/esm/src/utils/types/SecurityService.types.d.ts +122 -0
  50. package/dist/esm/src/utils/types/TransactionService.types.d.ts +474 -0
  51. package/package.json +31 -18
@@ -0,0 +1,17 @@
1
+ export {
2
+ /**
3
+ * @deprecated Please use `GoldRushClient` going forward!
4
+ * `CovalentClient` will be removed after Aug 30, 2024.
5
+ */
6
+ GoldRushClient as CovalentClient, GoldRushClient, } from "./src/GoldRushClient";
7
+ export { bigIntParser } from "./src/utils/functions/bigIntParser";
8
+ export { calculatePrettyBalance } from "./src/utils/functions/calculatePrettyBalance";
9
+ export { isValidApiKey } from "./src/utils/functions/isValidApiKey";
10
+ export { prettifyCurrency } from "./src/utils/functions/prettifyCurrency";
11
+ export * from "./src/utils/types/BalanceService.types";
12
+ export * from "./src/utils/types/BaseService.types";
13
+ export * from "./src/utils/types/Generic.types";
14
+ export * from "./src/utils/types/NftService.types";
15
+ export * from "./src/utils/types/PricingService.types";
16
+ export * from "./src/utils/types/SecurityService.types";
17
+ export * from "./src/utils/types/TransactionService.types";