@strkfarm/sdk 1.1.35 → 1.1.36

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.
@@ -53728,7 +53728,6 @@ ${JSON.stringify(data, null, 2)}`;
53728
53728
  }
53729
53729
  throw new Error("no quotes found");
53730
53730
  }
53731
- logger2.verbose(`${_AvnuWrapper.name}: getQuotes => filteredQuotes: ${JSON.stringify(filteredQuotes)}`);
53732
53731
  return filteredQuotes[0];
53733
53732
  }
53734
53733
  async getSwapInfo(quote, taker, integratorFeeBps, integratorFeeRecipient, minAmount, options) {
@@ -2120,7 +2120,6 @@ var AvnuWrapper = class _AvnuWrapper {
2120
2120
  }
2121
2121
  throw new Error("no quotes found");
2122
2122
  }
2123
- logger.verbose(`${_AvnuWrapper.name}: getQuotes => filteredQuotes: ${JSON.stringify(filteredQuotes)}`);
2124
2123
  return filteredQuotes[0];
2125
2124
  }
2126
2125
  async getSwapInfo(quote, taker, integratorFeeBps, integratorFeeRecipient, minAmount, options) {
package/dist/index.js CHANGED
@@ -2274,7 +2274,6 @@ var AvnuWrapper = class _AvnuWrapper {
2274
2274
  }
2275
2275
  throw new Error("no quotes found");
2276
2276
  }
2277
- logger.verbose(`${_AvnuWrapper.name}: getQuotes => filteredQuotes: ${JSON.stringify(filteredQuotes)}`);
2278
2277
  return filteredQuotes[0];
2279
2278
  }
2280
2279
  async getSwapInfo(quote, taker, integratorFeeBps, integratorFeeRecipient, minAmount, options) {
package/dist/index.mjs CHANGED
@@ -2169,7 +2169,6 @@ var AvnuWrapper = class _AvnuWrapper {
2169
2169
  }
2170
2170
  throw new Error("no quotes found");
2171
2171
  }
2172
- logger.verbose(`${_AvnuWrapper.name}: getQuotes => filteredQuotes: ${JSON.stringify(filteredQuotes)}`);
2173
2172
  return filteredQuotes[0];
2174
2173
  }
2175
2174
  async getSwapInfo(quote, taker, integratorFeeBps, integratorFeeRecipient, minAmount, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strkfarm/sdk",
3
- "version": "1.1.35",
3
+ "version": "1.1.36",
4
4
  "description": "STRKFarm TS SDK (Meant for our internal use, but feel free to use it)",
5
5
  "typings": "dist/index.d.ts",
6
6
  "types": "dist/index.d.ts",
@@ -60,7 +60,6 @@ export class AvnuWrapper {
60
60
  throw new Error('no quotes found')
61
61
  }
62
62
 
63
- logger.verbose(`${AvnuWrapper.name}: getQuotes => filteredQuotes: ${JSON.stringify(filteredQuotes)}`);
64
63
  return filteredQuotes[0];
65
64
  }
66
65