Skip to content

Commit

Permalink
cont.
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Feb 23, 2024
1 parent 363fa3b commit b7d86d9
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions packages/account/src/BiconomySmartAccountV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -717,10 +717,6 @@ export class BiconomySmartAccountV2 extends BaseSmartContractAccount {
return bundlerResponse;
}

/**
* @class
* @ignore
*/
async getUserOpHash(userOp: Partial<UserOperationStruct>): Promise<Hex> {
const userOpHash = keccak256(packUserOp(userOp, true) as Hex);
const enc = encodeAbiParameters(parseAbiParameters("bytes32, address, uint256"), [userOpHash, this.entryPoint.address, BigInt(this.chainId)]);
Expand Down Expand Up @@ -769,10 +765,7 @@ export class BiconomySmartAccountV2 extends BaseSmartContractAccount {
return finalUserOp;
}

/**
* @class
* @ignore
*/
// Could call it nonce space
async getNonce(nonceKey?: number): Promise<bigint> {
const nonceSpace = nonceKey ?? 0;
try {
Expand Down

0 comments on commit b7d86d9

Please sign in to comment.