@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 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.8.9";
7833
+ const userAgent = "com.covalenthq.sdk.typescript/0.9.0";
7833
7834
  class Response {
7834
7835
  }
7835
7836
  /**