@funkit/core 2.3.4 → 2.3.6

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.
@@ -4,7 +4,7 @@ import type { EnvOption } from '../config';
4
4
  import { Chain } from '../data';
5
5
  import type { FunWallet } from '../wallet';
6
6
  export declare const isAddress: (address: string) => boolean;
7
- export declare const fundWallet: (auth: Auth, wallet: FunWallet, value: number, txOptions?: EnvOption) => Promise<import("viem").TransactionReceipt>;
7
+ export declare const fundWallet: (auth: Auth, wallet: Auth | FunWallet, value: number, txOptions?: EnvOption) => Promise<import("viem").TransactionReceipt>;
8
8
  export declare const isContract: (address: Address, client: PublicClient) => Promise<boolean>;
9
9
  export declare const randomBytes: (length: number) => `0x${string}`;
10
10
  export declare const getWalletPermitNonce: (walletAddr: Address, chain: Chain, nonceKey?: number) => Promise<bigint>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/core",
3
- "version": "2.3.4",
3
+ "version": "2.3.6",
4
4
  "description": "Funkit core SDK provides feature-rich and extensible smart wallets built on account abstraction",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  "dotenv": "^16.0.3",
20
20
  "ethers": "5.7.2",
21
21
  "uuid": "^9.0.0",
22
- "@funkit/api-base": "1.5.3",
23
- "@funkit/utils": "1.0.5",
24
- "@funkit/chains": "0.1.2"
22
+ "@funkit/api-base": "1.5.5",
23
+ "@funkit/chains": "0.1.2",
24
+ "@funkit/utils": "1.0.6"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "viem": "2.x"