From 93186ade767dbc00bf7c8f5ccc3ef4d3e759357c Mon Sep 17 00:00:00 2001 From: Joe Pegler Date: Thu, 7 Mar 2024 10:31:17 +0000 Subject: [PATCH] Fix esm builds release prep lockfile --- .eslintrc.js | 12 +- packages/account/CHANGELOG.md | 6 + packages/account/package.json | 10 +- packages/account/src/utils/Constants.ts | 2 +- packages/account/src/utils/Utils.ts | 4 +- packages/account/src/utils/index.ts | 6 +- packages/bundler/CHANGELOG.md | 4 + packages/bundler/package.json | 4 +- packages/bundler/src/interfaces/IBundler.ts | 10 +- packages/common/package.json | 2 +- .../common/src/utils/Helpers/convertSigner.ts | 2 +- packages/modules/CHANGELOG.md | 4 + packages/modules/package.json | 8 +- .../modules/src/interfaces/ISessionStorage.ts | 2 +- .../session-storage/SessionLocalStorage.ts | 2 +- .../ERC20SessionValidationModule.ts | 2 +- packages/modules/src/utils/Types.ts | 2 +- packages/particle-auth/CHANGELOG.md | 4 + packages/particle-auth/package.json | 2 +- packages/paymaster/CHANGELOG.md | 4 + packages/paymaster/package.json | 4 +- .../paymaster/src/interfaces/IPaymaster.ts | 2 +- packages/transak/CHANGELOG.md | 4 + packages/transak/package.json | 2 +- yarn.lock | 132 +++++++++--------- 25 files changed, 139 insertions(+), 97 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index eb97a48dc..ce0d3c84a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,6 +1,13 @@ module.exports = { parser: "@typescript-eslint/parser", - extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "airbnb-typescript/base", "plugin:prettier/recommended"], + extends: [ + "eslint:recommended", + "plugin:@typescript-eslint/recommended", + "airbnb-typescript/base", + "plugin:import/typescript", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:prettier/recommended", + ], parserOptions: { ecmaVersion: 2020, sourceType: "module", @@ -23,11 +30,12 @@ module.exports = { "@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }], "security/detect-object-injection": "warn", "security/detect-unsafe-regex": "error", - "import/extensions": "error", // Now we need to specify extensions for imports for esm builds "security/detect-object-injection": "off", // turning off Injection Sink rule "@typescript-eslint/no-throw-literal": "off", // temp deactivated needs to be removed once fixed "@typescript-eslint/ban-ts-ignore": "off", "@typescript-eslint/ban-ts-comment": "off", + "import/extensions": ["error", "ignorePackages"], + "import/no-unresolved": "off", }, settings: {}, overrides: [ diff --git a/packages/account/CHANGELOG.md b/packages/account/CHANGELOG.md index 68152064a..59678fcca 100644 --- a/packages/account/CHANGELOG.md +++ b/packages/account/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 4.1.1 (2023-07-03) + +- Added missing extensions ([fdbec6](https://github.com/bcnmy/biconomy-client-sdk/pull/451/commits/fdbec68625f4d7f436dc39d4c1779cdbb7c53e6d)) +- Fixed issue reporting format ([815e9440](https://github.com/bcnmy/biconomy-client-sdk/pull/450/commits/815e9440db03ebae98bb24edfcb3bbcabf9b2a61)) + + ## 4.1.0 (2023-04-03) Features: diff --git a/packages/account/package.json b/packages/account/package.json index 9ab3da686..408ff4cef 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/account", - "version": "4.1.0", + "version": "4.1.1", "description": "This package provides apis for ERC-4337 based smart account implementations", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -68,10 +68,10 @@ }, "dependencies": { "@alchemy/aa-core": "^3.1.1", - "@biconomy/bundler": "^4.1.0", - "@biconomy/common": "^4.1.0", - "@biconomy/modules": "^4.1.0", - "@biconomy/paymaster": "^4.1.0", + "@biconomy/bundler": "^4.1.1", + "@biconomy/common": "^4.1.1", + "@biconomy/modules": "^4.1.1", + "@biconomy/paymaster": "^4.1.1", "viem": "^2.7.12" } } diff --git a/packages/account/src/utils/Constants.ts b/packages/account/src/utils/Constants.ts index 9ddfc7f0b..7954d0374 100644 --- a/packages/account/src/utils/Constants.ts +++ b/packages/account/src/utils/Constants.ts @@ -5,7 +5,7 @@ import { EntryPointAddressesByVersion, BiconomyFactoriesByVersion, BiconomyImplementationsByVersion, -} from "./Types"; +} from "./Types.js"; export const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000"; diff --git a/packages/account/src/utils/Utils.ts b/packages/account/src/utils/Utils.ts index efd8e977c..7d18918b1 100644 --- a/packages/account/src/utils/Utils.ts +++ b/packages/account/src/utils/Utils.ts @@ -2,10 +2,10 @@ import { encodeAbiParameters, parseAbiParameters, keccak256, Hex, Chain } from " import type { UserOperationStruct } from "@alchemy/aa-core"; import { SupportedSigner, convertSigner } from "@biconomy/common"; import { extractChainIdFromBundlerUrl } from "@biconomy/bundler"; -import { BiconomySmartAccountV2Config } from "./Types"; +import { BiconomySmartAccountV2Config } from "./Types.js"; import { extractChainIdFromPaymasterUrl } from "@biconomy/bundler"; import * as chains from "viem/chains"; -import { ERROR_MESSAGES } from "./Constants"; +import { ERROR_MESSAGES } from "./Constants.js"; /** * pack the userOperation diff --git a/packages/account/src/utils/index.ts b/packages/account/src/utils/index.ts index 8d298755a..bc65ec9be 100644 --- a/packages/account/src/utils/index.ts +++ b/packages/account/src/utils/index.ts @@ -1,3 +1,3 @@ -export * from "./Types"; -export * from "./Utils"; -export * from "./Constants"; +export * from "./Types.js"; +export * from "./Utils.js"; +export * from "./Constants.js"; diff --git a/packages/bundler/CHANGELOG.md b/packages/bundler/CHANGELOG.md index addb7650c..7730bad6b 100644 --- a/packages/bundler/CHANGELOG.md +++ b/packages/bundler/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 4.1.1 (2023-07-03) + +VERSION Bump Only. + ## 4.1.0 (2023-04-03) VERSION Bump Only. diff --git a/packages/bundler/package.json b/packages/bundler/package.json index 4eade66e2..a41dde75f 100644 --- a/packages/bundler/package.json +++ b/packages/bundler/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/bundler", - "version": "4.1.0", + "version": "4.1.1", "description": "Biconomy Bundler package to interact with any bundler node as per ERC4337 standard", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -57,7 +57,7 @@ }, "dependencies": { "@alchemy/aa-core": "^3.1.1", - "@biconomy/common": "^4.1.0", + "@biconomy/common": "^4.1.1", "viem": "^2.7.12" }, "devDependencies": { diff --git a/packages/bundler/src/interfaces/IBundler.ts b/packages/bundler/src/interfaces/IBundler.ts index 6ff6d4e63..75077e141 100644 --- a/packages/bundler/src/interfaces/IBundler.ts +++ b/packages/bundler/src/interfaces/IBundler.ts @@ -1,5 +1,13 @@ import { StateOverrideSet } from "@biconomy/common"; -import { UserOpResponse, UserOpGasResponse, UserOpReceipt, UserOpByHashResponse, UserOpStatus, SimulationType, GasFeeValues } from "../utils/Types"; +import { + UserOpResponse, + UserOpGasResponse, + UserOpReceipt, + UserOpByHashResponse, + UserOpStatus, + SimulationType, + GasFeeValues, +} from "../utils/Types.js"; import { UserOperationStruct } from "@alchemy/aa-core"; export interface IBundler { diff --git a/packages/common/package.json b/packages/common/package.json index f36d7c059..22010587c 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/common", - "version": "4.1.0", + "version": "4.1.1", "description": "common utils to be used for aa transactions", "keywords": [ "utils" diff --git a/packages/common/src/utils/Helpers/convertSigner.ts b/packages/common/src/utils/Helpers/convertSigner.ts index 23e9691dd..5aadb0803 100644 --- a/packages/common/src/utils/Helpers/convertSigner.ts +++ b/packages/common/src/utils/Helpers/convertSigner.ts @@ -1,5 +1,5 @@ import { EthersSigner } from "../EthersSigner.js"; -import { SupportedSigner } from "../Types"; +import { SupportedSigner } from "../Types.js"; import { WalletClient } from "viem"; import { WalletClientSigner, SmartAccountSigner } from "@alchemy/aa-core"; import { UNIQUE_PROPERTIES_PER_SIGNER } from "../Constants.js"; diff --git a/packages/modules/CHANGELOG.md b/packages/modules/CHANGELOG.md index 29c3d6c3b..7c3d40af8 100644 --- a/packages/modules/CHANGELOG.md +++ b/packages/modules/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 4.1.1 (2023-07-03) + +VERSION Bump Only. + ## 4.1.0 (2023-04-03) VERSION Bump Only. diff --git a/packages/modules/package.json b/packages/modules/package.json index 222be7f4e..7d73de383 100644 --- a/packages/modules/package.json +++ b/packages/modules/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/modules", - "version": "4.1.0", + "version": "4.1.1", "description": "This package provides different validation modules/plugins for ERC4337 compatible modular account", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -54,7 +54,7 @@ }, "dependencies": { "@alchemy/aa-core": "^3.1.1", - "@biconomy/common": "^4.1.0", + "@biconomy/common": "^4.1.1", "@ethersproject/abi": "^5.7.0", "merkletreejs": "^0.3.11", "viem": "^2.7.12" @@ -64,7 +64,7 @@ "esbuild": "^0.19.11", "esbuild-plugin-tsc": "^0.4.0", "npm-dts": "^1.3.12", - "@biconomy/paymaster": "^4.1.0", - "@biconomy/modules": "^4.1.0" + "@biconomy/paymaster": "^4.1.1", + "@biconomy/modules": "^4.1.1" } } diff --git a/packages/modules/src/interfaces/ISessionStorage.ts b/packages/modules/src/interfaces/ISessionStorage.ts index da2f8e13e..41505fb1d 100644 --- a/packages/modules/src/interfaces/ISessionStorage.ts +++ b/packages/modules/src/interfaces/ISessionStorage.ts @@ -1,6 +1,6 @@ import { Hex } from "viem"; import { SmartAccountSigner } from "@alchemy/aa-core"; -import { SignerData } from "../utils/Types"; +import { SignerData } from "../utils/Types.js"; export type SessionStatus = "PENDING" | "ACTIVE" | "INACTIVE" | "EXPIRED"; diff --git a/packages/modules/src/session-storage/SessionLocalStorage.ts b/packages/modules/src/session-storage/SessionLocalStorage.ts index 28f3133a6..97a1d6953 100644 --- a/packages/modules/src/session-storage/SessionLocalStorage.ts +++ b/packages/modules/src/session-storage/SessionLocalStorage.ts @@ -3,7 +3,7 @@ import { SmartAccountSigner, WalletClientSigner } from "@alchemy/aa-core"; import { ISessionStorage, SessionLeafNode, SessionSearchParam, SessionStatus } from "../interfaces/ISessionStorage.js"; import { mainnet } from "viem/chains"; import { generatePrivateKey, privateKeyToAccount } from "viem/accounts"; -import { SignerData } from "../utils/Types"; +import { SignerData } from "../utils/Types.js"; export class SessionLocalStorage implements ISessionStorage { private smartAccountAddress: string; diff --git a/packages/modules/src/session-validation-modules/ERC20SessionValidationModule.ts b/packages/modules/src/session-validation-modules/ERC20SessionValidationModule.ts index 131746a38..7791f1967 100644 --- a/packages/modules/src/session-validation-modules/ERC20SessionValidationModule.ts +++ b/packages/modules/src/session-validation-modules/ERC20SessionValidationModule.ts @@ -1,5 +1,5 @@ import { ISessionValidationModule } from "../interfaces/ISessionValidationModule.js"; -import { ERC20SessionKeyData, SessionValidationModuleConfig } from "../utils/Types"; +import { ERC20SessionKeyData, SessionValidationModuleConfig } from "../utils/Types.js"; import { encodeAbiParameters, parseAbiParameters } from "viem"; /** diff --git a/packages/modules/src/utils/Types.ts b/packages/modules/src/utils/Types.ts index e55d5c8a5..68adf5194 100644 --- a/packages/modules/src/utils/Types.ts +++ b/packages/modules/src/utils/Types.ts @@ -1,6 +1,6 @@ import { Chain, Hex } from "viem"; import { SmartAccountSigner, UserOperationStruct } from "@alchemy/aa-core"; -import { SessionKeyManagerModule } from "../SessionKeyManagerModule"; +import { SessionKeyManagerModule } from "../SessionKeyManagerModule.js"; import { ISessionStorage } from "../interfaces/ISessionStorage.js"; import { SupportedSigner } from "@biconomy/common"; export type ModuleVersion = "V1_0_0"; // | 'V1_0_1' diff --git a/packages/particle-auth/CHANGELOG.md b/packages/particle-auth/CHANGELOG.md index 2805153cc..9ebd16ef1 100644 --- a/packages/particle-auth/CHANGELOG.md +++ b/packages/particle-auth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 4.1.1 (2023-07-03) + +VERSION Bump Only. + ## 4.1.0 (2023-04-03) VERSION Bump Only. diff --git a/packages/particle-auth/package.json b/packages/particle-auth/package.json index b52766c2d..87f407661 100644 --- a/packages/particle-auth/package.json +++ b/packages/particle-auth/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/particle-auth", - "version": "4.1.0", + "version": "4.1.1", "description": "Particle auth for Biconomy SDK", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", diff --git a/packages/paymaster/CHANGELOG.md b/packages/paymaster/CHANGELOG.md index 3003cef25..f4db34b38 100644 --- a/packages/paymaster/CHANGELOG.md +++ b/packages/paymaster/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 4.1.1 (2023-07-03) + +VERSION Bump Only. + ## 4.1.0 (2023-04-03) VERSION Bump Only. diff --git a/packages/paymaster/package.json b/packages/paymaster/package.json index 34f093113..2b6008747 100644 --- a/packages/paymaster/package.json +++ b/packages/paymaster/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/paymaster", - "version": "4.1.0", + "version": "4.1.1", "description": "Biconomy Paymaster to interact with Paymaster Services that interacts with ( veriying and token ) paymasters", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -54,7 +54,7 @@ }, "dependencies": { "@alchemy/aa-core": "^3.1.1", - "@biconomy/common": "^4.1.0", + "@biconomy/common": "^4.1.1", "viem": "^2.7.12" }, "devDependencies": { diff --git a/packages/paymaster/src/interfaces/IPaymaster.ts b/packages/paymaster/src/interfaces/IPaymaster.ts index 0d95801a5..b9938797d 100644 --- a/packages/paymaster/src/interfaces/IPaymaster.ts +++ b/packages/paymaster/src/interfaces/IPaymaster.ts @@ -1,5 +1,5 @@ import { type UserOperationStruct } from "@alchemy/aa-core"; -import { PaymasterAndDataResponse } from "../utils/Types"; +import { PaymasterAndDataResponse } from "../utils/Types.js"; export interface IPaymaster { // Implementing class may add extra parameter (for example paymasterServiceData with it's own type) in below function signature diff --git a/packages/transak/CHANGELOG.md b/packages/transak/CHANGELOG.md index 552743755..4af2afc36 100644 --- a/packages/transak/CHANGELOG.md +++ b/packages/transak/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 4.1.1 (2023-07-03) + +VERSION Bump Only. + ## 4.1.0 (2023-04-03) VERSION Bump Only. diff --git a/packages/transak/package.json b/packages/transak/package.json index eedc20c21..4232ed243 100644 --- a/packages/transak/package.json +++ b/packages/transak/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/transak", - "version": "4.1.0", + "version": "4.1.1", "description": "transak for biconomy sdk", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", diff --git a/yarn.lock b/yarn.lock index 819d36e70..02caba64f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1251,65 +1251,65 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@nomicfoundation/edr-darwin-arm64@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.2.0.tgz#b208fe65f90f8113ad634482f7382f73e2189858" - integrity sha512-OfXruInMbc6+J6BnAlYlpTS8lj5hHmfLdzqthhiQaayuHxT6iBMrefe6N+2DC9hBxD3VjCApUWtLfV3pJzpbCg== +"@nomicfoundation/edr-darwin-arm64@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.2.1.tgz#10c1a07add192583ce8b2d4cc93439f52b390a41" + integrity sha512-aMYaRaZVQ/TmyNJIoXf1bU4k0zfinaL9Sy1day4yGlL6eiQPFfRGj9W6TZaZIoYG0XTx/mQWD7dkXJ7LdrleJA== -"@nomicfoundation/edr-darwin-x64@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.2.0.tgz#b7b0a285a7a004da7908d475fefb086eac1ae61f" - integrity sha512-tfNhHYSgro3nOTGCQzBvFniUy0cvUBtPCSeniNleu5M4nolArnxlZfEkNdpYRB92QRjfaREZttuBP1nrIO/b+w== +"@nomicfoundation/edr-darwin-x64@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.2.1.tgz#eaa29d2ba9f91ddb5f59b872c5a54f94a6fe3095" + integrity sha512-ma0SLcjHm5L3nPHcKFJB0jv/gKGSKaxr5Z65rurX/eaYUQJ7YGMsb8er9bSCo9rjzOtxf4FoPj3grL3zGpOj8A== -"@nomicfoundation/edr-linux-arm64-gnu@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.2.0.tgz#dfb9b8bf3718143b31e24b00e4f18f1aca0e1905" - integrity sha512-Km4rZIsARkiIR7HfpU6ybCkAHpD+Gg68x+5+dhQsv+eT3XvQ9pRv3jz14v3aimOjwpCd5/uUw9LhQrPtFyMGGA== +"@nomicfoundation/edr-linux-arm64-gnu@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.2.1.tgz#8149db0d742157405effe82d485ea9bfefddc795" + integrity sha512-NX3G4pBhRitWrjSGY3HTyCq3wKSm5YqrKVOCNQGl9/jcjSovqxlgzFMiTx4YZCzGntfJ/1om9AI84OWxYJjoDw== -"@nomicfoundation/edr-linux-arm64-musl@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.2.0.tgz#ac53bfaa4828922f300025955b51c92c98e40f12" - integrity sha512-pD4g2r5Q54b3AzEaI0okDktFrYjhcdCxO3lvP1pYGCvha8KYrUv9DM3Z/0kfnn3vP9y/PxzcJUBfXjG4NZuHpw== +"@nomicfoundation/edr-linux-arm64-musl@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.2.1.tgz#7d53afe5607eb406d199a199d00209a6304ff07b" + integrity sha512-gdQ3QHkt9XRkdtOGQ8fMwS11MXdjLeZgLrqoial4V4qtMaamIMMhVczK+VEvUhD8p7G4BVmp6kmkvcsthmndmw== -"@nomicfoundation/edr-linux-x64-gnu@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.2.0.tgz#dbab76c3dc53c4dcea502df302b8c7ee1ccf3d89" - integrity sha512-xjw8yNiEED0jlM5HuWXF/61+4bBkEpSZpMmb39XChPJXVxtZIIBzj0AcGTdzkSyH/atgkEaNutkEb1PeEuFwnQ== +"@nomicfoundation/edr-linux-x64-gnu@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.2.1.tgz#b762c95368fcb88bbbabba4d8be5380f38967413" + integrity sha512-OqabFY37vji6mYbLD9CvG28lja68czeVw58oWByIhFV3BpBu/cyP1oAbhzk3LieylujabS3Ekpvjw2Tkf0A9RQ== -"@nomicfoundation/edr-linux-x64-musl@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.2.0.tgz#31989fd1e9e548897d7843987e2bdef35d0c877c" - integrity sha512-aqqR0usfHt6V2j+7pQiMqIrIBpUwDeU27w27kuvZsHDUhrvg4sgGm3FBG1QUxN8tv9E/UrbUuW0kVt7tbEmKMA== +"@nomicfoundation/edr-linux-x64-musl@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.2.1.tgz#522448c42bff7d2abd52ddcf11ae6ca3dfdd6db4" + integrity sha512-vHfFFK2EPISuQUQge+bdjXamb0EUjfl8srYSog1qfiwyLwLeuSbpyyFzDeITAgPpkkFuedTfJW553K0Hipspyg== -"@nomicfoundation/edr-win32-arm64-msvc@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-arm64-msvc/-/edr-win32-arm64-msvc-0.2.0.tgz#6d028107064adc032af912268b9b55eb9dba7fd5" - integrity sha512-+S4Qnx5CVdUAxGUXa3rNq0h/qALIHkGdlKLT5KDsk/qGTmI/uuAB4tnoOaaHMc5ANckPtBdWfSwnLJjWPZbR6w== +"@nomicfoundation/edr-win32-arm64-msvc@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-arm64-msvc/-/edr-win32-arm64-msvc-0.2.1.tgz#ccfa443c274e49de93016a1060be810096dc6f1d" + integrity sha512-K/mui67RCKxghbSyvhvW3rvyVN1pa9M1Q9APUx1PtWjSSdXDFpqEY1NYsv2syb47Ca8ObJwVMF+LvnB6GvhUOQ== -"@nomicfoundation/edr-win32-ia32-msvc@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-ia32-msvc/-/edr-win32-ia32-msvc-0.2.0.tgz#570a504df4cb30197302435b89dc9a92b7dbf9fb" - integrity sha512-hK0RVcNog8sJ63QmeEJ+WIhnCLfUCl5jXYCBjQtGOWlIkC7EzNddkZ28MmrFOMrV3xstSGOmdPvvq8q1HNVakA== +"@nomicfoundation/edr-win32-ia32-msvc@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-ia32-msvc/-/edr-win32-ia32-msvc-0.2.1.tgz#822b19d3e67d6dcfa5394cb6a4d55d8bab1b2f26" + integrity sha512-HHK0mXEtjvfjJrJlqcYgQCy3lZIXS1KNl2GaP8bwEIuEwx++XxXs/ThLjPepM1nhCGICij8IGy7p3KrkzRelsw== -"@nomicfoundation/edr-win32-x64-msvc@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.2.0.tgz#90de20c19c4c20c7d69563b176d92425a8e8bb5a" - integrity sha512-gWgMU4I94fHIeda3xOnHBYcCOzRF6ySB89vgENK4Y1S1Un/qpZ+tQwf+/hX0HCaZGMw/LqBG61ltOYUXVfZ6Yg== +"@nomicfoundation/edr-win32-x64-msvc@0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.2.1.tgz#7b56ff742b2724779cc9f3385815b394f76de8df" + integrity sha512-FY4eQJdj1/y8ST0RyQycx63yr+lvdYNnUkzgWf4X+vPH1lOhXae+L2NDcNCQlTDAfQcD6yz0bkBUkLrlJ8pTww== "@nomicfoundation/edr@^0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr/-/edr-0.2.0.tgz#dfdecce6382f9faf640d937357418825a10c5483" - integrity sha512-RRWJepP4ozI4jVxqNtuw53ZbPcUB4FcKry2aYVQw8KAp9o8j/I5H3SsfpmKT+lgHRSL/5/KK0RxOx1GQSyDAZw== + version "0.2.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr/-/edr-0.2.1.tgz#a3d2a542dcd5dc5a8d757116d52baea05f370531" + integrity sha512-Dleau3ItHJh2n85G2J6AIPBoLgu/mOWkmrh26z3VsJE2tp/e00hUk/dqz85ncsVcBYEc6/YOn/DomWu0wSF9tQ== optionalDependencies: - "@nomicfoundation/edr-darwin-arm64" "0.2.0" - "@nomicfoundation/edr-darwin-x64" "0.2.0" - "@nomicfoundation/edr-linux-arm64-gnu" "0.2.0" - "@nomicfoundation/edr-linux-arm64-musl" "0.2.0" - "@nomicfoundation/edr-linux-x64-gnu" "0.2.0" - "@nomicfoundation/edr-linux-x64-musl" "0.2.0" - "@nomicfoundation/edr-win32-arm64-msvc" "0.2.0" - "@nomicfoundation/edr-win32-ia32-msvc" "0.2.0" - "@nomicfoundation/edr-win32-x64-msvc" "0.2.0" + "@nomicfoundation/edr-darwin-arm64" "0.2.1" + "@nomicfoundation/edr-darwin-x64" "0.2.1" + "@nomicfoundation/edr-linux-arm64-gnu" "0.2.1" + "@nomicfoundation/edr-linux-arm64-musl" "0.2.1" + "@nomicfoundation/edr-linux-x64-gnu" "0.2.1" + "@nomicfoundation/edr-linux-x64-musl" "0.2.1" + "@nomicfoundation/edr-win32-arm64-msvc" "0.2.1" + "@nomicfoundation/edr-win32-ia32-msvc" "0.2.1" + "@nomicfoundation/edr-win32-x64-msvc" "0.2.1" "@nomicfoundation/ethereumjs-common@4.0.4": version "4.0.4" @@ -2111,9 +2111,9 @@ integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== "@types/node@*", "@types/node@^20.11.10": - version "20.11.24" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.24.tgz#cc207511104694e84e9fb17f9a0c4c42d4517792" - integrity sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long== + version "20.11.25" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.25.tgz#0f50d62f274e54dd7a49f7704cc16bfbcccaf49f" + integrity sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw== dependencies: undici-types "~5.26.4" @@ -3060,9 +3060,9 @@ camelcase@^6.0.0, camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001587: - version "1.0.30001594" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001594.tgz#bea552414cd52c2d0c985ed9206314a696e685f5" - integrity sha512-VblSX6nYqyJVs8DKFMldE2IVCJjZ225LW00ydtUWwh5hk9IfkTOffO6r8gJNsH0qqqeAF8KrbMYA2VEwTlGW5g== + version "1.0.30001596" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001596.tgz#da06b79c3d9c3d9958eb307aa832ac68ead79bee" + integrity sha512-zpkZ+kEr6We7w63ORkoJ2pOfBwBkY/bJrG/UZ90qNb45Isblu8wzDgevEOrRL1r9dWayHjYiiyCMEXPn4DweGQ== catering@^2.0.0, catering@^2.1.0: version "2.1.1" @@ -3765,9 +3765,9 @@ ejs@^3.1.7: jake "^10.8.5" electron-to-chromium@^1.4.668: - version "1.4.692" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.692.tgz#82139d20585a4b2318a02066af7593a3e6bec993" - integrity sha512-d5rZRka9n2Y3MkWRN74IoAsxR0HK3yaAt7T50e3iT9VZmCCQDT3geXUO5ZRMhDToa1pkCeQXuNo+0g+NfDOVPA== + version "1.4.695" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.695.tgz#1753f4017e8d7e72a1ce5058c0fc66c8b67bab8e" + integrity sha512-eMijZmeqPtm774pCZIOrfUHMs/7ls++W1sLhxwqgu8KQ8E2WmMtzwyqOMt0XXUJ3HTIPfuwlfwF+I5cwnfItBA== elliptic@6.5.4: version "6.5.4" @@ -9110,9 +9110,9 @@ typedarray@^0.0.6: integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== typedoc@^0.25.7: - version "0.25.10" - resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.10.tgz#572f566498e4752fdbc793ccc14b8eb517944770" - integrity sha512-v10rtOFojrjW9og3T+6wAKeJaGMuojU87DXGZ33sfs+554wgPTRG+s07Ag1BjPZI85Y5QPVouPI63JQ6fcQM5w== + version "0.25.11" + resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.11.tgz#75080c594c1e26b7676f90faebb367fb5a32dc8d" + integrity sha512-5MbI1W/FOG6oXsd8bdssQidSTeKh8Kt3xA5uKVzI+K99uzP8EGN45uPnPvQesyaWdD+89s4wCQdtWEd8QUbiRg== dependencies: lunr "^2.3.9" marked "^4.3.0" @@ -9120,9 +9120,9 @@ typedoc@^0.25.7: shiki "^0.14.7" "typescript@>=3 < 6", typescript@^5.3.3: - version "5.3.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" - integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== + version "5.4.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.2.tgz#0ae9cebcfae970718474fe0da2c090cad6577372" + integrity sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ== uglify-js@^3.1.4: version "3.17.4" @@ -9324,9 +9324,9 @@ validate-npm-package-name@^3.0.0: builtins "^1.0.3" viem@^2.7.12, viem@^2.7.8: - version "2.7.19" - resolved "https://registry.yarnpkg.com/viem/-/viem-2.7.19.tgz#fa6bd8f46df2f0332e5ca6d116772dff6f161a72" - integrity sha512-UOMeqy+8p2709ra2j9HEOL1NfjsXZzlJ8gwR6YO/zXH8KIZvyzW07t4iQARF5+ShVZ/7+/1ec8oPjVi1M//33A== + version "2.7.20" + resolved "https://registry.yarnpkg.com/viem/-/viem-2.7.20.tgz#c0d517c3ce5a19b963d624b378d706bd3c45efc6" + integrity sha512-S31a24LWEjqXAjw1A+3/xALo+4eiYKklAjLtlLdPhA0cp+Kv6GcgruNVTktP8pKIGNYvpyQ+HA9PJyUhVXPdDw== dependencies: "@adraffy/ens-normalize" "1.10.0" "@noble/curves" "1.2.0"