Manual signing with @biconomy/smart-account

This is more of a feature request.

I want to pass in a personal_sign from a external wallet without going through the browser extension UI. Is it possible to add an optional init() parameter for custom signatures and for a parameter to be introduced for smartAccount.<function>()?

Thank you for this - just CCing the team here @rohan2433 @aakansha1

Yes, user can pass the sign type in the constructor when initialising the smart account

new SmartAccount(provider, {
  signType: 'PERSONAL_SIGN' // or 'EIP712_SIGN'
});

Hope that answers your question.