timelock-sdk 0.0.155 → 0.0.156

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/client.cjs CHANGED
@@ -2187,16 +2187,13 @@ const usePauseMarketTrading = ({ marketAddr }) => {
2187
2187
  //#region src/hooks/fees/useFeeRates.ts
2188
2188
  const useFeeRates = (feeStrategy) => {
2189
2189
  const { timelockLens } = useLens();
2190
- const { data, ...rest } = (0, wagmi.useReadContract)({
2190
+ const { data } = (0, wagmi.useReadContract)({
2191
2191
  address: timelockLens === null || timelockLens === void 0 ? void 0 : timelockLens.address,
2192
2192
  abi: require_optionsMarket.lensAbi,
2193
2193
  args: feeStrategy ? [feeStrategy] : void 0,
2194
2194
  functionName: "getFeeRates"
2195
2195
  });
2196
- return {
2197
- data: data || {},
2198
- ...rest
2199
- };
2196
+ return data || {};
2200
2197
  };
2201
2198
 
2202
2199
  //#endregion