@covalenthq/client-sdk 0.8.9 → 0.9.1
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.js +4 -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 +6 -0
- package/dist/cjs/util/types/XykServiceTypes.d.ts +6 -0
- package/dist/es/index.js +4 -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 +6 -0
- package/dist/es/util/types/XykServiceTypes.d.ts +6 -0
- package/dist/esm/index.js +4 -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 +6 -0
- package/dist/esm/util/types/XykServiceTypes.d.ts +6 -0
- package/dist/services/CovalentClient.d.ts +1 -1
- package/dist/services/CovalentClient.js +1 -1
- package/dist/services/XykService.d.ts +6 -0
- package/dist/services/XykService.js +3 -0
- package/dist/services/XykService.js.map +1 -1
- package/dist/util/types/XykServiceTypes.d.ts +6 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -6191,6 +6191,8 @@ class PoolsDexDataItem {
|
|
|
6191
6191
|
this.volume_24h_quote = data.volume_24h_quote;
|
|
6192
6192
|
this.volume_7d_quote = data.volume_7d_quote;
|
|
6193
6193
|
this.fee_24h_quote = data.fee_24h_quote;
|
|
6194
|
+
this.quote_rate = data.quote_rate;
|
|
6195
|
+
this.pretty_quote_rate = data.pretty_quote_rate;
|
|
6194
6196
|
this.annualized_fee = data.annualized_fee;
|
|
6195
6197
|
this.pretty_volume_24h_quote = data.pretty_volume_24h_quote;
|
|
6196
6198
|
this.pretty_volume_7d_quote = data.pretty_volume_7d_quote;
|
|
@@ -6410,6 +6412,7 @@ class ExchangeTransaction {
|
|
|
6410
6412
|
this.quote_currency = data.quote_currency;
|
|
6411
6413
|
this.token_0_quote_rate = data.token_0_quote_rate;
|
|
6412
6414
|
this.token_1_quote_rate = data.token_1_quote_rate;
|
|
6415
|
+
this.explorers = data.explorers && data.explorers !== null ? data.explorers.map((itemData) => new Explorer(itemData)) : null;
|
|
6413
6416
|
this.gas_metadata = data.gas_metadata && data.gas_metadata !== null ? new ContractMetadata(data.gas_metadata) : null;
|
|
6414
6417
|
this.token_0 = data.token_0 && data.token_0 !== null ? new PoolToken(data.token_0) : null;
|
|
6415
6418
|
this.token_1 = data.token_1 && data.token_1 !== null ? new PoolToken(data.token_1) : null;
|
|
@@ -7829,7 +7832,7 @@ class XykService {
|
|
|
7829
7832
|
}
|
|
7830
7833
|
}
|
|
7831
7834
|
|
|
7832
|
-
const userAgent = "com.covalenthq.sdk.typescript/0.
|
|
7835
|
+
const userAgent = "com.covalenthq.sdk.typescript/0.9.1";
|
|
7833
7836
|
class Response {
|
|
7834
7837
|
}
|
|
7835
7838
|
/**
|