@covalenthq/client-sdk 0.8.9 → 0.9.0
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 +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.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.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/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.js
CHANGED
|
@@ -6410,6 +6410,7 @@ class ExchangeTransaction {
|
|
|
6410
6410
|
this.quote_currency = data.quote_currency;
|
|
6411
6411
|
this.token_0_quote_rate = data.token_0_quote_rate;
|
|
6412
6412
|
this.token_1_quote_rate = data.token_1_quote_rate;
|
|
6413
|
+
this.explorers = data.explorers && data.explorers !== null ? data.explorers.map((itemData) => new Explorer(itemData)) : null;
|
|
6413
6414
|
this.gas_metadata = data.gas_metadata && data.gas_metadata !== null ? new ContractMetadata(data.gas_metadata) : null;
|
|
6414
6415
|
this.token_0 = data.token_0 && data.token_0 !== null ? new PoolToken(data.token_0) : null;
|
|
6415
6416
|
this.token_1 = data.token_1 && data.token_1 !== null ? new PoolToken(data.token_1) : null;
|
|
@@ -7829,7 +7830,7 @@ class XykService {
|
|
|
7829
7830
|
}
|
|
7830
7831
|
}
|
|
7831
7832
|
|
|
7832
|
-
const userAgent = "com.covalenthq.sdk.typescript/0.
|
|
7833
|
+
const userAgent = "com.covalenthq.sdk.typescript/0.9.0";
|
|
7833
7834
|
class Response {
|
|
7834
7835
|
}
|
|
7835
7836
|
/**
|