@covalenthq/client-sdk 0.8.4 → 0.8.5
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 +1 -1
- package/dist/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/services/CovalentClient.d.ts +1 -1
- package/dist/cjs/services/XykService.d.ts +2 -0
- package/dist/cjs/util/types/XykServiceTypes.d.ts +2 -0
- package/dist/es/index.d.ts +1 -1
- package/dist/es/index.js +2 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/services/CovalentClient.d.ts +1 -1
- package/dist/es/services/XykService.d.ts +2 -0
- package/dist/es/util/types/XykServiceTypes.d.ts +2 -0
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/services/CovalentClient.d.ts +1 -1
- package/dist/esm/services/XykService.d.ts +2 -0
- package/dist/esm/util/types/XykServiceTypes.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/services/CovalentClient.d.ts +1 -1
- package/dist/services/CovalentClient.js +1 -1
- package/dist/services/XykService.d.ts +2 -0
- package/dist/services/XykService.js +1 -0
- package/dist/services/XykService.js.map +1 -1
- package/dist/util/types/XykServiceTypes.d.ts +2 -0
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { CovalentClient, Client, Chain, Quote, CovalentClientSettings } from "./services/CovalentClient";
|
|
1
|
+
export { CovalentClient, Client, Chain, Quote, CovalentClientSettings, ChainID } from "./services/CovalentClient";
|
|
2
2
|
export * from "./util/types/BalanceServiceTypes";
|
|
3
3
|
export * from "./util/types/BaseServiceTypes";
|
|
4
4
|
export * from "./util/types/NftServiceTypes";
|
package/dist/cjs/index.js
CHANGED
|
@@ -6262,6 +6262,7 @@ class TokenV2Volume {
|
|
|
6262
6262
|
this.pretty_total_volume_24h_quote = data.pretty_total_volume_24h_quote;
|
|
6263
6263
|
this.total_liquidity_quote = data.total_liquidity_quote;
|
|
6264
6264
|
this.total_volume_24h_quote = data.total_volume_24h_quote;
|
|
6265
|
+
this.explorers = data.explorers && data.explorers !== null ? data.explorers.map((itemData) => new Explorer(itemData)) : null;
|
|
6265
6266
|
}
|
|
6266
6267
|
}
|
|
6267
6268
|
class NetworkExchangeTokenViewResponse {
|
|
@@ -7805,7 +7806,7 @@ class XykService {
|
|
|
7805
7806
|
}
|
|
7806
7807
|
}
|
|
7807
7808
|
|
|
7808
|
-
const userAgent = "com.covalenthq.sdk.typescript/0.8.
|
|
7809
|
+
const userAgent = "com.covalenthq.sdk.typescript/0.8.5";
|
|
7809
7810
|
/**
|
|
7810
7811
|
* CovalentClient Class
|
|
7811
7812
|
*/
|