Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SmartAccount #13

Open
mpetrunic opened this issue Mar 5, 2024 · 0 comments
Open

SmartAccount #13

mpetrunic opened this issue Mar 5, 2024 · 0 comments

Comments

@mpetrunic
Copy link

We should abstract creating userOps for the user. I'm proposing we implement following class

class SmartContractAccount {

   address: string;

   constructor(entrypointAddress: string, signer: IProviderAndSigner, initCode?: string);

   setPaymaster(paymaster: IPaymaster);

   //sends empty userOperation to force account creation
   deploy(overrides: {...gasPricesAndLimits}) : Promise<>;
 
   //creates and signs transfer UserOperation
   createTransfer(transferDetails): UserOperation;

   sendTransfer(transferDetails): Promise<HexString32Bytes>;

   createContractCall(contract: Contract, method: string, arguments: unknown[], fee: string): UserOperation;

   send(userOp: UserOperation): Promise<HexString32Bytes>;

}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant