@mentaproject/core 0.5.10 → 0.5.12

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.
@@ -1,5 +1,5 @@
1
1
  import { CoreClient, MentaAccountParams } from "../types";
2
- export declare function createMentaAccount(coreClient: CoreClient, params: MentaAccountParams): Promise<import("viem").Client<import("viem").Transport, import("viem").Chain, object & {
2
+ export declare function createMentaAccount(coreClient: CoreClient, params: MentaAccountParams): Promise<import("viem").Client<import("viem").Transport, undefined, object & {
3
3
  client: import("viem").Client<import("viem").Transport, import("viem").Chain | undefined, {
4
4
  address: import("abitype").Address;
5
5
  nonceManager?: import("viem").NonceManager | undefined;
@@ -19511,7 +19511,7 @@ export declare function createMentaAccount(coreClient: CoreClient, params: Menta
19511
19511
  getNonce: NonNullable<import("viem/account-abstraction").SmartAccountImplementation["getNonce"]>;
19512
19512
  isDeployed: () => Promise<boolean>;
19513
19513
  type: "smart";
19514
- }> & import("permissionless").SmartAccountActions<import("viem").Chain, object & {
19514
+ }> & import("permissionless").SmartAccountActions<undefined, object & {
19515
19515
  client: import("viem").Client<import("viem").Transport, import("viem").Chain | undefined, {
19516
19516
  address: import("abitype").Address;
19517
19517
  nonceManager?: import("viem").NonceManager | undefined;
@@ -5955,7 +5955,6 @@ async function createMentaAccount(coreClient, params) {
5955
5955
  });
5956
5956
  return permissionless.createSmartAccountClient({
5957
5957
  account: kernel,
5958
- chain: params.chain,
5959
5958
  bundlerTransport: params.bundlerTransport,
5960
5959
  }).extend(erc7579.erc7579Actions());
5961
5960
  }