@wagmi/core 0.7.2 → 0.7.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1051,7 +1051,7 @@ declare type PrepareWriteContractConfig<TAbi = Abi, TFunctionName = string, TSig
1051
1051
  signer?: TSigner | null;
1052
1052
  }, 'nonpayable' | 'payable', TOptions>;
1053
1053
  declare type PrepareWriteContractResult<TAbi = Abi, TFunctionName extends string = string> = {
1054
- abi: TAbi extends Abi ? [ExtractAbiFunction<TAbi, TFunctionName>] : readonly unknown[];
1054
+ abi: TAbi extends Abi ? [ExtractAbiFunction<TAbi, TFunctionName>] : TAbi;
1055
1055
  address: string;
1056
1056
  chainId?: number;
1057
1057
  functionName: TFunctionName;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@wagmi/core",
3
3
  "description": "Vanilla JS library for Ethereum",
4
4
  "license": "MIT",
5
- "version": "0.7.2",
5
+ "version": "0.7.3",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/wagmi-dev/wagmi.git",