Skip to content

Commit

Permalink
Fix dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
plusminushalf committed Nov 20, 2023
1 parent 7499ff7 commit 97857e2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 0 additions & 2 deletions src/accounts/privateKeyToSafeSmartAccount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import { type SmartAccount } from "./types.js"
export type SafeVersion = "1.4.1"

export const EIP712_SAFE_OPERATION_TYPE = {
// "SafeOp(address safe,bytes callData,uint256 nonce,uint256 preVerificationGas,uint256 verificationGasLimit,uint256 callGasLimit,uint256 maxFeePerGas,uint256 maxPriorityFeePerGas,uint96 signatureTimestamps,address entryPoint)"
SafeOp: [
{ type: "address", name: "safe" },
{ type: "bytes", name: "callData" },
Expand All @@ -37,7 +36,6 @@ export const EIP712_SAFE_OPERATION_TYPE = {
{ type: "uint256", name: "callGasLimit" },
{ type: "uint256", name: "maxFeePerGas" },
{ type: "uint256", name: "maxPriorityFeePerGas" },
// { type: "uint96", name: "signatureTimestamps" },
{ type: "address", name: "entryPoint" }
]
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"compilerOptions": {
// Incremental builds
// NOTE: Enabling incremental builds speeds up `tsc`. Keep in mind though that it does not reliably bust the cache when the `tsconfig.json` file changes.
"incremental": true,
"incremental": false,
// Type checking
"strict": true,
"useDefineForClassFields": true, // Not enabled by default in `strict` mode unless we bump `target` to ES2022.
Expand Down

0 comments on commit 97857e2

Please sign in to comment.