@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.
- package/dist/cjs/index.d.ts +17 -0
- package/dist/cjs/index.js +2862 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/src/GoldRushClient.d.ts +20 -0
- package/dist/cjs/src/services/BalanceService.d.ts +125 -0
- package/dist/cjs/src/services/BaseService.d.ts +161 -0
- package/dist/cjs/src/services/NftService.d.ts +157 -0
- package/dist/cjs/src/services/PricingService.d.ts +25 -0
- package/dist/cjs/src/services/SecurityService.d.ts +28 -0
- package/dist/cjs/src/services/TransactionService.d.ts +128 -0
- package/dist/cjs/src/utils/functions/bigIntParser.d.ts +1 -0
- package/dist/cjs/src/utils/functions/calculatePrettyBalance.d.ts +1 -0
- package/dist/cjs/src/utils/functions/debugOutput.d.ts +2 -0
- package/dist/cjs/src/utils/functions/endpointGenerator.d.ts +4 -0
- package/dist/cjs/src/utils/functions/execution.d.ts +11 -0
- package/dist/cjs/src/utils/functions/isValidApiKey.d.ts +1 -0
- package/dist/cjs/src/utils/functions/paginateEndpoint.d.ts +7 -0
- package/dist/cjs/src/utils/functions/prettifyCurrency.d.ts +2 -0
- package/dist/cjs/src/utils/types/BalanceService.types.d.ts +442 -0
- package/dist/cjs/src/utils/types/BaseService.types.d.ts +326 -0
- package/dist/cjs/src/utils/types/Generic.types.d.ts +477 -0
- package/dist/cjs/src/utils/types/NftService.types.d.ts +273 -0
- package/dist/cjs/src/utils/types/PricingService.types.d.ts +39 -0
- package/dist/cjs/src/utils/types/SecurityService.types.d.ts +122 -0
- package/dist/cjs/src/utils/types/TransactionService.types.d.ts +474 -0
- package/dist/esm/index.d.ts +17 -0
- package/dist/esm/index.js +2854 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/src/GoldRushClient.d.ts +20 -0
- package/dist/esm/src/services/BalanceService.d.ts +125 -0
- package/dist/esm/src/services/BaseService.d.ts +161 -0
- package/dist/esm/src/services/NftService.d.ts +157 -0
- package/dist/esm/src/services/PricingService.d.ts +25 -0
- package/dist/esm/src/services/SecurityService.d.ts +28 -0
- package/dist/esm/src/services/TransactionService.d.ts +128 -0
- package/dist/esm/src/utils/functions/bigIntParser.d.ts +1 -0
- package/dist/esm/src/utils/functions/calculatePrettyBalance.d.ts +1 -0
- package/dist/esm/src/utils/functions/debugOutput.d.ts +2 -0
- package/dist/esm/src/utils/functions/endpointGenerator.d.ts +4 -0
- package/dist/esm/src/utils/functions/execution.d.ts +11 -0
- package/dist/esm/src/utils/functions/isValidApiKey.d.ts +1 -0
- package/dist/esm/src/utils/functions/paginateEndpoint.d.ts +7 -0
- package/dist/esm/src/utils/functions/prettifyCurrency.d.ts +2 -0
- package/dist/esm/src/utils/types/BalanceService.types.d.ts +442 -0
- package/dist/esm/src/utils/types/BaseService.types.d.ts +326 -0
- package/dist/esm/src/utils/types/Generic.types.d.ts +477 -0
- package/dist/esm/src/utils/types/NftService.types.d.ts +273 -0
- package/dist/esm/src/utils/types/PricingService.types.d.ts +39 -0
- package/dist/esm/src/utils/types/SecurityService.types.d.ts +122 -0
- package/dist/esm/src/utils/types/TransactionService.types.d.ts +474 -0
- 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";
|