Function erc7579Actions

  • Returns <
        TSmartAccount extends
            | undefined
            | object & Assign_<
                SmartAccountImplementation<Abi, EntryPointVersion, object>,
                {
                    address: `0x${string}`;
                    getNonce: (parameters?: { key?: bigint }) => Promise<bigint>;
                    isDeployed: () => Promise<boolean>;
                    type: "smart";
                },
            > & {
                address: `0x${string}`;
                getNonce: (parameters?: { key?: bigint }) => Promise<bigint>;
                isDeployed: () => Promise<boolean>;
                type: "smart";
            },
    >(
        client: Client<Transport, undefined | Chain, TSmartAccount>,
    ) => Erc7579Actions<TSmartAccount>