Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifahmed990 committed Aug 29, 2024
1 parent 35c480c commit 2f6dc33
Show file tree
Hide file tree
Showing 14 changed files with 2,229 additions and 2,269 deletions.
2 changes: 1 addition & 1 deletion src/Bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class Bundler {
);
}
var res = jsonRpcResult as GasEstimationResult;
const gasEstimationResult: GasEstimationResult = {
const gasEstimationResult: GasEstimationResult = {
callGasLimit: BigInt(res.callGasLimit),
preVerificationGas: BigInt(res.preVerificationGas),
verificationGasLimit: BigInt(res.verificationGasLimit),
Expand Down
11 changes: 7 additions & 4 deletions src/abstractionkit.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export { SmartAccount } from "./account/SmartAccount";
export { SocialRecoveryModule, RecoveryRequest } from "./account/Safe/modules/SocialRecoveryModule";
export {
SocialRecoveryModule,
RecoveryRequest,
} from "./account/Safe/modules/SocialRecoveryModule";
export { SafeAccountV0_2_0 } from "./account/Safe/SafeAccountV0_2_0";
export { SafeAccountV0_3_0 } from "./account/Safe/SafeAccountV0_3_0";

Expand All @@ -18,7 +21,7 @@ export {
getFunctionSelector,
fetchAccountNonce,
calculateUserOperationMaxGasCost,
sendJsonRpcRequest
sendJsonRpcRequest,
} from "./utils";

export {
Expand All @@ -28,10 +31,10 @@ export {
SafeModuleExecutorFunctionSelector,
SafeUserOperationTypedDataDomain,
WebauthPublicKey,
EOADummySignature,
EOADummySignature,
WebauthDummySignerSignaturePair,
WebauthSignatureData,
SignerSignaturePair
SignerSignaturePair,
} from "./account/Safe/types";

export {
Expand Down
Loading

0 comments on commit 2f6dc33

Please sign in to comment.