From e2d622e6c22b7e903da1b6262364cdbea5016b63 Mon Sep 17 00:00:00 2001 From: William Cory Date: Mon, 11 Nov 2024 11:29:52 +0700 Subject: [PATCH] :monocle_face: Chore: Add rust --- .cargo/config.toml | 2 + .gitignore | 12 + Cargo.lock | 271 ++ Cargo.toml | 9 + nx.json | 253 +- package.json | 7 +- packages/my_rust_node_lib/Cargo.toml | 19 + packages/my_rust_node_lib/build.rs | 5 + packages/my_rust_node_lib/index.d.ts | 6 + packages/my_rust_node_lib/index.js | 264 ++ .../npm/darwin-arm64/README.md | 3 + .../npm/darwin-arm64/package.json | 17 + .../my_rust_node_lib/npm/darwin-x64/README.md | 3 + .../npm/darwin-x64/package.json | 17 + .../npm/freebsd-x64/README.md | 3 + .../npm/freebsd-x64/package.json | 17 + .../npm/linux-arm-gnueabihf/README.md | 3 + .../npm/linux-arm-gnueabihf/package.json | 17 + .../npm/linux-arm64-gnu/README.md | 3 + .../npm/linux-arm64-gnu/package.json | 20 + .../npm/linux-arm64-musl/README.md | 3 + .../npm/linux-arm64-musl/package.json | 20 + .../npm/linux-x64-musl/README.md | 3 + .../npm/linux-x64-musl/package.json | 20 + .../npm/wasm32-wasi/README.md | 3 + .../npm/wasm32-wasi/package.json | 22 + .../npm/win32-arm64-msvc/README.md | 3 + .../npm/win32-arm64-msvc/package.json | 17 + .../npm/win32-ia32-msvc/README.md | 3 + .../npm/win32-ia32-msvc/package.json | 17 + packages/my_rust_node_lib/package.json | 25 + packages/my_rust_node_lib/project.json | 45 + packages/my_rust_node_lib/src/lib.rs | 7 + pnpm-lock.yaml | 2884 +++++++---------- 34 files changed, 2188 insertions(+), 1835 deletions(-) create mode 100644 .cargo/config.toml create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 packages/my_rust_node_lib/Cargo.toml create mode 100644 packages/my_rust_node_lib/build.rs create mode 100644 packages/my_rust_node_lib/index.d.ts create mode 100644 packages/my_rust_node_lib/index.js create mode 100644 packages/my_rust_node_lib/npm/darwin-arm64/README.md create mode 100644 packages/my_rust_node_lib/npm/darwin-arm64/package.json create mode 100644 packages/my_rust_node_lib/npm/darwin-x64/README.md create mode 100644 packages/my_rust_node_lib/npm/darwin-x64/package.json create mode 100644 packages/my_rust_node_lib/npm/freebsd-x64/README.md create mode 100644 packages/my_rust_node_lib/npm/freebsd-x64/package.json create mode 100644 packages/my_rust_node_lib/npm/linux-arm-gnueabihf/README.md create mode 100644 packages/my_rust_node_lib/npm/linux-arm-gnueabihf/package.json create mode 100644 packages/my_rust_node_lib/npm/linux-arm64-gnu/README.md create mode 100644 packages/my_rust_node_lib/npm/linux-arm64-gnu/package.json create mode 100644 packages/my_rust_node_lib/npm/linux-arm64-musl/README.md create mode 100644 packages/my_rust_node_lib/npm/linux-arm64-musl/package.json create mode 100644 packages/my_rust_node_lib/npm/linux-x64-musl/README.md create mode 100644 packages/my_rust_node_lib/npm/linux-x64-musl/package.json create mode 100644 packages/my_rust_node_lib/npm/wasm32-wasi/README.md create mode 100644 packages/my_rust_node_lib/npm/wasm32-wasi/package.json create mode 100644 packages/my_rust_node_lib/npm/win32-arm64-msvc/README.md create mode 100644 packages/my_rust_node_lib/npm/win32-arm64-msvc/package.json create mode 100644 packages/my_rust_node_lib/npm/win32-ia32-msvc/README.md create mode 100644 packages/my_rust_node_lib/npm/win32-ia32-msvc/package.json create mode 100644 packages/my_rust_node_lib/package.json create mode 100644 packages/my_rust_node_lib/project.json create mode 100644 packages/my_rust_node_lib/src/lib.rs diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000000..dd033b868c --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[build] +target-dir = 'dist/target' diff --git a/.gitignore b/.gitignore index 70960fb274..34f5a5409e 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,15 @@ Thumbs.db /target _ .direnv + +*.node + +/target/ +**/*.rs.bk +debug/ +**/*.pdb +*.o +*.so +*.dylib +*.dll +*.rlib \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000000..bddedbfe57 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,271 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "bitflags" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "convert_case" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "ctor" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "libloading" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" +dependencies = [ + "cfg-if", + "windows-targets", +] + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "my_rust_node_lib" +version = "0.1.0" +dependencies = [ + "napi", + "napi-build", + "napi-derive", +] + +[[package]] +name = "napi" +version = "2.16.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "214f07a80874bb96a8433b3cdfc84980d56c7b02e1a0d7ba4ba0db5cef785e2b" +dependencies = [ + "bitflags", + "ctor", + "napi-derive", + "napi-sys", + "once_cell", +] + +[[package]] +name = "napi-build" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a" + +[[package]] +name = "napi-derive" +version = "2.16.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17435f7a00bfdab20b0c27d9c56f58f6499e418252253081bfff448099da31d1" +dependencies = [ + "cfg-if", + "convert_case", + "napi-derive-backend", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "napi-derive-backend" +version = "1.0.74" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "967c485e00f0bf3b1bdbe510a38a4606919cf1d34d9a37ad41f25a81aa077abe" +dependencies = [ + "convert_case", + "once_cell", + "proc-macro2", + "quote", + "regex", + "semver", + "syn", +] + +[[package]] +name = "napi-sys" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3" +dependencies = [ + "libloading", +] + +[[package]] +name = "once_cell" +version = "1.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" + +[[package]] +name = "proc-macro2" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "regex" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" + +[[package]] +name = "semver" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" + +[[package]] +name = "syn" +version = "2.0.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "unicode-ident" +version = "1.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000000..d04dea0ba3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ + +[workspace] +resolver = '2' +members = [ + 'packages/my_rust_node_lib', +] + +[profile.release] +lto = true diff --git a/nx.json b/nx.json index 58c80fd83e..206b788fc1 100644 --- a/nx.json +++ b/nx.json @@ -1,120 +1,137 @@ { - "defaultProject": "@tevm/example-vite", - "cacheDirectory": ".nx", - "targetDefaults": { - "lint:check": { - "inputs": ["default"], - "cache": true - }, - "lint:package": { - "inputs": ["default"], - "dependsOn": ["build:dist", "build:types", "^build:dist", "^build:types"], - "cache": true - }, - "lint:deps": { - "inputs": ["default"], - "cache": true - }, - "format:check": { - "inputs": ["default"], - "cache": true - }, - "test": { - "inputs": ["testFiles", "outputsDist"], - "dependsOn": ["^build:dist", "pretest"] - }, - "test:run": { - "inputs": ["testFiles", "outputsDist"], - "dependsOn": ["^build:dist", "pretest"], - "cache": true - }, - "test:watch": { - "inputs": ["testFiles", "outputsDist"], - "dependsOn": ["^build:dist"] - }, - "test:coverage": { - "inputs": ["testFiles", "outputsDist"], - "dependsOn": ["^build:dist"], - "outputs": ["{projectRoot}/coverage"], - "cache": true - }, - "typecheck": { - "inputs": ["production", "outputsDts"], - "dependsOn": ["^build:types"], - "cache": true - }, - "build:types": { - "inputs": ["production", "outputsDts"], - "dependsOn": ["^build:types", "^build:dist"], - "outputs": [ - "{projectRoot}/dist/**/*.d.ts", - "{projectRoot}/dist/**/*.d.cts", - "{projectRoot}/dist/**/*.d.mts", - "{projectRoot}/types/**/*" - ], - "cache": true - }, - "build:app": { - "inputs": ["production", "outputsDist"], - "dependsOn": ["^build:dist", "^build:types"], - "outputs": ["{projectRoot}/dist"], - "cache": true - }, - "build:dist": { - "inputs": ["production", "outputsDist"], - "dependsOn": ["^build:dist"], - "outputs": ["{projectRoot}/dist/**/*.js", "{projectRoot}/dist/**/*.cjs", "{projectRoot}/dist/**/*.mjs"], - "cache": true - }, - "generate:docs": { - "inputs": ["production", "outputsDts"], - "outputs": ["{projectRoot}/docs"], - "dependsOn": ["^build:types"], - "cache": true - }, - "dev": { - "dependsOn": ["^build:dist", "^build:types", "predev"] - }, - "dev:run": { - "dependsOn": ["^build:dist", "^build:types", "predev"], - "cache": true - }, - "e2e": { - "cache": true - } - }, - "defaultBase": "main", - "$schema": "./node_modules/nx/schemas/nx-schema.json", - "namedInputs": { - "buildConfigs": ["{projectRoot}/tsconfig.*?.json", "{projectRoot}/tsup.config.ts"], - "default": [ - "{projectRoot}/*.json", - "{projectRoot}/*.js", - "{projectRoot}/*.ts", - "{projectRoot}/src/**/*", - "sharedGlobals" - ], - "testFiles": ["{projectRoot}/src/**/*", "{projectRoot}/vitest.config.ts"], - "sharedGlobals": [ - "{workspaceRoot}/nx.json", - "{workspaceRoot}/bun.lockb", - "{workspaceRoot}/configs/**/*", - "{workspaceRoot}/lib/**/*" - ], - "productionSrc": ["{projectRoot}/src/**/*", "!{projectRoot}/src/**/*.spec.ts"], - "productionContracts": ["{projectRoot}/contracts/**/*"], - "production": ["default", "buildConfigs", "sharedGlobals", "productionSrc", "productionContracts"], - "outputsDist": [ - { - "dependentTasksOutputFiles": "**/*" - } - ], - "outputsDts": [ - { - "dependentTasksOutputFiles": "**/*" - } - ], - "testing": ["configsWorkspace", "default"] - }, - "nxCloudAccessToken": "MDdkNmQwZWEtOGYwNy00ZjhkLWI5NGMtNjBiNGExY2Q5MzI2fHJlYWQ=" + "defaultProject": "@tevm/example-vite", + "cacheDirectory": ".nx", + "targetDefaults": { + "lint:check": { + "inputs": ["default"], + "cache": true + }, + "lint:package": { + "inputs": ["default"], + "dependsOn": ["build:dist", "build:types", "^build:dist", "^build:types"], + "cache": true + }, + "lint:deps": { + "inputs": ["default"], + "cache": true + }, + "format:check": { + "inputs": ["default"], + "cache": true + }, + "test": { + "inputs": ["testFiles", "outputsDist"], + "dependsOn": ["^build:dist", "pretest"] + }, + "test:run": { + "inputs": ["testFiles", "outputsDist"], + "dependsOn": ["^build:dist", "pretest"], + "cache": true + }, + "test:watch": { + "inputs": ["testFiles", "outputsDist"], + "dependsOn": ["^build:dist"] + }, + "test:coverage": { + "inputs": ["testFiles", "outputsDist"], + "dependsOn": ["^build:dist"], + "outputs": ["{projectRoot}/coverage"], + "cache": true + }, + "typecheck": { + "inputs": ["production", "outputsDts"], + "dependsOn": ["^build:types"], + "cache": true + }, + "build:types": { + "inputs": ["production", "outputsDts"], + "dependsOn": ["^build:types", "^build:dist"], + "outputs": [ + "{projectRoot}/dist/**/*.d.ts", + "{projectRoot}/dist/**/*.d.cts", + "{projectRoot}/dist/**/*.d.mts", + "{projectRoot}/types/**/*" + ], + "cache": true + }, + "build:app": { + "inputs": ["production", "outputsDist"], + "dependsOn": ["^build:dist", "^build:types"], + "outputs": ["{projectRoot}/dist"], + "cache": true + }, + "build:dist": { + "inputs": ["production", "outputsDist"], + "dependsOn": ["^build:dist"], + "outputs": [ + "{projectRoot}/dist/**/*.js", + "{projectRoot}/dist/**/*.cjs", + "{projectRoot}/dist/**/*.mjs" + ], + "cache": true + }, + "generate:docs": { + "inputs": ["production", "outputsDts"], + "outputs": ["{projectRoot}/docs"], + "dependsOn": ["^build:types"], + "cache": true + }, + "dev": { + "dependsOn": ["^build:dist", "^build:types", "predev"] + }, + "dev:run": { + "dependsOn": ["^build:dist", "^build:types", "predev"], + "cache": true + }, + "e2e": { + "cache": true + } + }, + "defaultBase": "main", + "$schema": "./node_modules/nx/schemas/nx-schema.json", + "namedInputs": { + "buildConfigs": [ + "{projectRoot}/tsconfig.*?.json", + "{projectRoot}/tsup.config.ts" + ], + "default": [ + "{projectRoot}/*.json", + "{projectRoot}/*.js", + "{projectRoot}/*.ts", + "{projectRoot}/src/**/*", + "sharedGlobals" + ], + "testFiles": ["{projectRoot}/src/**/*", "{projectRoot}/vitest.config.ts"], + "sharedGlobals": [ + "{workspaceRoot}/nx.json", + "{workspaceRoot}/bun.lockb", + "{workspaceRoot}/configs/**/*", + "{workspaceRoot}/lib/**/*" + ], + "productionSrc": [ + "{projectRoot}/src/**/*", + "!{projectRoot}/src/**/*.spec.ts" + ], + "productionContracts": ["{projectRoot}/contracts/**/*"], + "production": [ + "default", + "buildConfigs", + "sharedGlobals", + "productionSrc", + "productionContracts" + ], + "outputsDist": [ + { + "dependentTasksOutputFiles": "**/*" + } + ], + "outputsDts": [ + { + "dependentTasksOutputFiles": "**/*" + } + ], + "testing": ["configsWorkspace", "default"] + }, + "nxCloudAccessToken": "MDdkNmQwZWEtOGYwNy00ZjhkLWI5NGMtNjBiNGExY2Q5MzI2fHJlYWQ=", + "plugins": ["@monodon/rust"] } diff --git a/package.json b/package.json index c7696969fc..ee0c844e12 100644 --- a/package.json +++ b/package.json @@ -44,12 +44,16 @@ "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.8", "@effect/codemod": "^0.0.16", + "@monodon/rust": "^2.1.0", + "@napi-rs/cli": "3.0.0-alpha.63", + "@napi-rs/wasm-runtime": "^0.2.4", "@vitest/coverage-v8": "^2.1.1", "@vitest/ui": "^2.1.1", "bun-types": "^1.1.29", "concurrently": "^9.0.1", "depcheck": "^1.4.7", "dotenv": "^16.4.5", + "emnapi": "^1.1.0", "gitmoji-cli": "^9.4.0", "jscodeshift": "^17.0.0", "nx": "19.8.2", @@ -65,5 +69,6 @@ }, "engines": { "node": ">=18" - } + }, + "dependencies": {} } diff --git a/packages/my_rust_node_lib/Cargo.toml b/packages/my_rust_node_lib/Cargo.toml new file mode 100644 index 0000000000..d92a7a6dd5 --- /dev/null +++ b/packages/my_rust_node_lib/Cargo.toml @@ -0,0 +1,19 @@ + +[package] +name = 'my_rust_node_lib' +version = '0.1.0' +edition = '2021' + +[dependencies] +napi = { version = '2.10.2', default-features = false, features = [ + 'napi4', +] } +napi-derive = '2.9.3' + +[lib] +crate-type = [ + 'cdylib', +] + +[build-dependencies] +napi-build = '2.0.1' diff --git a/packages/my_rust_node_lib/build.rs b/packages/my_rust_node_lib/build.rs new file mode 100644 index 0000000000..9fc2367889 --- /dev/null +++ b/packages/my_rust_node_lib/build.rs @@ -0,0 +1,5 @@ +extern crate napi_build; + +fn main() { + napi_build::setup(); +} diff --git a/packages/my_rust_node_lib/index.d.ts b/packages/my_rust_node_lib/index.d.ts new file mode 100644 index 0000000000..a3bfc63a7b --- /dev/null +++ b/packages/my_rust_node_lib/index.d.ts @@ -0,0 +1,6 @@ +/* tslint:disable */ +/* eslint-disable */ + +/* auto-generated by NAPI-RS */ + +export function sum(a: number, b: number): number; diff --git a/packages/my_rust_node_lib/index.js b/packages/my_rust_node_lib/index.js new file mode 100644 index 0000000000..c117893057 --- /dev/null +++ b/packages/my_rust_node_lib/index.js @@ -0,0 +1,264 @@ +const { existsSync, readFileSync } = require("fs"); +const { join } = require("path"); + +const { platform, arch } = process; + +let nativeBinding = null; +let localFileExisted = false; +let loadError = null; + +function isMusl() { + // For Node 10 + if (!process.report || typeof process.report.getReport !== "function") { + try { + const lddPath = require("child_process") + .execSync("which ldd") + .toString() + .trim(); + return readFileSync(lddPath, "utf8").includes("musl"); + } catch (e) { + return true; + } + } else { + const { glibcVersionRuntime } = process.report.getReport().header; + return !glibcVersionRuntime; + } +} + +switch (platform) { + case "android": + switch (arch) { + case "arm64": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.android-arm64.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.android-arm64.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-android-arm64"); + } + } catch (e) { + loadError = e; + } + break; + case "arm": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.android-arm-eabi.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.android-arm-eabi.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-android-arm-eabi"); + } + } catch (e) { + loadError = e; + } + break; + default: + throw new Error(`Unsupported architecture on Android ${arch}`); + } + break; + case "win32": + switch (arch) { + case "x64": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.win32-x64-msvc.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.win32-x64-msvc.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-win32-x64-msvc"); + } + } catch (e) { + loadError = e; + } + break; + case "ia32": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.win32-ia32-msvc.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.win32-ia32-msvc.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-win32-ia32-msvc"); + } + } catch (e) { + loadError = e; + } + break; + case "arm64": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.win32-arm64-msvc.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.win32-arm64-msvc.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-win32-arm64-msvc"); + } + } catch (e) { + loadError = e; + } + break; + default: + throw new Error(`Unsupported architecture on Windows: ${arch}`); + } + break; + case "darwin": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.darwin-universal.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.darwin-universal.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-darwin-universal"); + } + break; + } catch {} + switch (arch) { + case "x64": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.darwin-x64.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.darwin-x64.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-darwin-x64"); + } + } catch (e) { + loadError = e; + } + break; + case "arm64": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.darwin-arm64.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.darwin-arm64.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-darwin-arm64"); + } + } catch (e) { + loadError = e; + } + break; + default: + throw new Error(`Unsupported architecture on macOS: ${arch}`); + } + break; + case "freebsd": + if (arch !== "x64") { + throw new Error(`Unsupported architecture on FreeBSD: ${arch}`); + } + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.freebsd-x64.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.freebsd-x64.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-freebsd-x64"); + } + } catch (e) { + loadError = e; + } + break; + case "linux": + switch (arch) { + case "x64": + if (isMusl()) { + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.linux-x64-musl.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.linux-x64-musl.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-linux-x64-musl"); + } + } catch (e) { + loadError = e; + } + } else { + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.linux-x64-gnu.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.linux-x64-gnu.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-linux-x64-gnu"); + } + } catch (e) { + loadError = e; + } + } + break; + case "arm64": + if (isMusl()) { + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.linux-arm64-musl.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.linux-arm64-musl.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-linux-arm64-musl"); + } + } catch (e) { + loadError = e; + } + } else { + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.linux-arm64-gnu.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.linux-arm64-gnu.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-linux-arm64-gnu"); + } + } catch (e) { + loadError = e; + } + } + break; + case "arm": + localFileExisted = existsSync( + join(__dirname, "my_rust_node_lib.linux-arm-gnueabihf.node") + ); + try { + if (localFileExisted) { + nativeBinding = require("./my_rust_node_lib.linux-arm-gnueabihf.node"); + } else { + nativeBinding = require("@tevm/my-rust-node-lib-linux-arm-gnueabihf"); + } + } catch (e) { + loadError = e; + } + break; + default: + throw new Error(`Unsupported architecture on Linux: ${arch}`); + } + break; + default: + throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`); +} + +if (!nativeBinding) { + if (loadError) { + throw loadError; + } + throw new Error(`Failed to load native binding`); +} + +const { sum } = nativeBinding; + +module.exports.sum = sum; diff --git a/packages/my_rust_node_lib/npm/darwin-arm64/README.md b/packages/my_rust_node_lib/npm/darwin-arm64/README.md new file mode 100644 index 0000000000..435d755e4f --- /dev/null +++ b/packages/my_rust_node_lib/npm/darwin-arm64/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-darwin-arm64` + +This is the **aarch64-apple-darwin** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/darwin-arm64/package.json b/packages/my_rust_node_lib/npm/darwin-arm64/package.json new file mode 100644 index 0000000000..e3368cb185 --- /dev/null +++ b/packages/my_rust_node_lib/npm/darwin-arm64/package.json @@ -0,0 +1,17 @@ +{ + "name": "@tevm/my-rust-node-lib-darwin-arm64", + "version": "0.0.0", + "cpu": [ + "arm64" + ], + "main": "my_rust_node_lib.darwin-arm64.node", + "files": [ + "my_rust_node_lib.darwin-arm64.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "darwin" + ] +} diff --git a/packages/my_rust_node_lib/npm/darwin-x64/README.md b/packages/my_rust_node_lib/npm/darwin-x64/README.md new file mode 100644 index 0000000000..9deb13c61b --- /dev/null +++ b/packages/my_rust_node_lib/npm/darwin-x64/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-darwin-x64` + +This is the **x86_64-apple-darwin** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/darwin-x64/package.json b/packages/my_rust_node_lib/npm/darwin-x64/package.json new file mode 100644 index 0000000000..f505084fcf --- /dev/null +++ b/packages/my_rust_node_lib/npm/darwin-x64/package.json @@ -0,0 +1,17 @@ +{ + "name": "@tevm/my-rust-node-lib-darwin-x64", + "version": "0.0.0", + "cpu": [ + "x64" + ], + "main": "my_rust_node_lib.darwin-x64.node", + "files": [ + "my_rust_node_lib.darwin-x64.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "darwin" + ] +} diff --git a/packages/my_rust_node_lib/npm/freebsd-x64/README.md b/packages/my_rust_node_lib/npm/freebsd-x64/README.md new file mode 100644 index 0000000000..7b14266fa5 --- /dev/null +++ b/packages/my_rust_node_lib/npm/freebsd-x64/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-freebsd-x64` + +This is the **x86_64-unknown-freebsd** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/freebsd-x64/package.json b/packages/my_rust_node_lib/npm/freebsd-x64/package.json new file mode 100644 index 0000000000..69d38c6601 --- /dev/null +++ b/packages/my_rust_node_lib/npm/freebsd-x64/package.json @@ -0,0 +1,17 @@ +{ + "name": "@tevm/my-rust-node-lib-freebsd-x64", + "version": "0.0.0", + "cpu": [ + "x64" + ], + "main": "my_rust_node_lib.freebsd-x64.node", + "files": [ + "my_rust_node_lib.freebsd-x64.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "freebsd" + ] +} diff --git a/packages/my_rust_node_lib/npm/linux-arm-gnueabihf/README.md b/packages/my_rust_node_lib/npm/linux-arm-gnueabihf/README.md new file mode 100644 index 0000000000..e75a78ab03 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-arm-gnueabihf/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-linux-arm-gnueabihf` + +This is the **armv7-unknown-linux-gnueabihf** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/linux-arm-gnueabihf/package.json b/packages/my_rust_node_lib/npm/linux-arm-gnueabihf/package.json new file mode 100644 index 0000000000..b52f3d71f4 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-arm-gnueabihf/package.json @@ -0,0 +1,17 @@ +{ + "name": "@tevm/my-rust-node-lib-linux-arm-gnueabihf", + "version": "0.0.0", + "cpu": [ + "arm" + ], + "main": "my_rust_node_lib.linux-arm-gnueabihf.node", + "files": [ + "my_rust_node_lib.linux-arm-gnueabihf.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "linux" + ] +} diff --git a/packages/my_rust_node_lib/npm/linux-arm64-gnu/README.md b/packages/my_rust_node_lib/npm/linux-arm64-gnu/README.md new file mode 100644 index 0000000000..ee9c6bbd45 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-arm64-gnu/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-linux-arm64-gnu` + +This is the **aarch64-unknown-linux-gnu** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/linux-arm64-gnu/package.json b/packages/my_rust_node_lib/npm/linux-arm64-gnu/package.json new file mode 100644 index 0000000000..d7e8338839 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-arm64-gnu/package.json @@ -0,0 +1,20 @@ +{ + "name": "@tevm/my-rust-node-lib-linux-arm64-gnu", + "version": "0.0.0", + "cpu": [ + "arm64" + ], + "main": "my_rust_node_lib.linux-arm64-gnu.node", + "files": [ + "my_rust_node_lib.linux-arm64-gnu.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "linux" + ], + "libc": [ + "glibc" + ] +} diff --git a/packages/my_rust_node_lib/npm/linux-arm64-musl/README.md b/packages/my_rust_node_lib/npm/linux-arm64-musl/README.md new file mode 100644 index 0000000000..216503b1f4 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-arm64-musl/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-linux-arm64-musl` + +This is the **aarch64-unknown-linux-musl** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/linux-arm64-musl/package.json b/packages/my_rust_node_lib/npm/linux-arm64-musl/package.json new file mode 100644 index 0000000000..6f1132b892 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-arm64-musl/package.json @@ -0,0 +1,20 @@ +{ + "name": "@tevm/my-rust-node-lib-linux-arm64-musl", + "version": "0.0.0", + "cpu": [ + "arm64" + ], + "main": "my_rust_node_lib.linux-arm64-musl.node", + "files": [ + "my_rust_node_lib.linux-arm64-musl.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "linux" + ], + "libc": [ + "musl" + ] +} diff --git a/packages/my_rust_node_lib/npm/linux-x64-musl/README.md b/packages/my_rust_node_lib/npm/linux-x64-musl/README.md new file mode 100644 index 0000000000..69bb54ab6c --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-x64-musl/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-linux-x64-musl` + +This is the **x86_64-unknown-linux-musl** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/linux-x64-musl/package.json b/packages/my_rust_node_lib/npm/linux-x64-musl/package.json new file mode 100644 index 0000000000..4f1b717984 --- /dev/null +++ b/packages/my_rust_node_lib/npm/linux-x64-musl/package.json @@ -0,0 +1,20 @@ +{ + "name": "@tevm/my-rust-node-lib-linux-x64-musl", + "version": "0.0.0", + "cpu": [ + "x64" + ], + "main": "my_rust_node_lib.linux-x64-musl.node", + "files": [ + "my_rust_node_lib.linux-x64-musl.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "linux" + ], + "libc": [ + "musl" + ] +} diff --git a/packages/my_rust_node_lib/npm/wasm32-wasi/README.md b/packages/my_rust_node_lib/npm/wasm32-wasi/README.md new file mode 100644 index 0000000000..ba17d63125 --- /dev/null +++ b/packages/my_rust_node_lib/npm/wasm32-wasi/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-wasm32-wasi` + +This is the **wasm32-wasip1-threads** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/wasm32-wasi/package.json b/packages/my_rust_node_lib/npm/wasm32-wasi/package.json new file mode 100644 index 0000000000..17d3c2b321 --- /dev/null +++ b/packages/my_rust_node_lib/npm/wasm32-wasi/package.json @@ -0,0 +1,22 @@ +{ + "name": "@tevm/my-rust-node-lib-wasm32-wasi", + "version": "0.0.0", + "cpu": [ + "wasm32" + ], + "main": "my_rust_node_lib.wasi.cjs", + "files": [ + "my_rust_node_lib.wasm32-wasi.wasm", + "my_rust_node_lib.wasi.cjs", + "my_rust_node_lib.wasi-browser.js", + "wasi-worker.mjs", + "wasi-worker-browser.mjs" + ], + "engines": { + "node": ">=14.0.0" + }, + "browser": "my_rust_node_lib.wasi-browser.js", + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.5" + } +} diff --git a/packages/my_rust_node_lib/npm/win32-arm64-msvc/README.md b/packages/my_rust_node_lib/npm/win32-arm64-msvc/README.md new file mode 100644 index 0000000000..4e0afa5bb5 --- /dev/null +++ b/packages/my_rust_node_lib/npm/win32-arm64-msvc/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-win32-arm64-msvc` + +This is the **aarch64-pc-windows-msvc** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/win32-arm64-msvc/package.json b/packages/my_rust_node_lib/npm/win32-arm64-msvc/package.json new file mode 100644 index 0000000000..bed49064eb --- /dev/null +++ b/packages/my_rust_node_lib/npm/win32-arm64-msvc/package.json @@ -0,0 +1,17 @@ +{ + "name": "@tevm/my-rust-node-lib-win32-arm64-msvc", + "version": "0.0.0", + "cpu": [ + "arm64" + ], + "main": "my_rust_node_lib.win32-arm64-msvc.node", + "files": [ + "my_rust_node_lib.win32-arm64-msvc.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "win32" + ] +} diff --git a/packages/my_rust_node_lib/npm/win32-ia32-msvc/README.md b/packages/my_rust_node_lib/npm/win32-ia32-msvc/README.md new file mode 100644 index 0000000000..be4f0b110d --- /dev/null +++ b/packages/my_rust_node_lib/npm/win32-ia32-msvc/README.md @@ -0,0 +1,3 @@ +# `@tevm/my-rust-node-lib-win32-ia32-msvc` + +This is the **i686-pc-windows-msvc** binary for `@tevm/my-rust-node-lib` diff --git a/packages/my_rust_node_lib/npm/win32-ia32-msvc/package.json b/packages/my_rust_node_lib/npm/win32-ia32-msvc/package.json new file mode 100644 index 0000000000..641aa5e676 --- /dev/null +++ b/packages/my_rust_node_lib/npm/win32-ia32-msvc/package.json @@ -0,0 +1,17 @@ +{ + "name": "@tevm/my-rust-node-lib-win32-ia32-msvc", + "version": "0.0.0", + "cpu": [ + "ia32" + ], + "main": "my_rust_node_lib.win32-ia32-msvc.node", + "files": [ + "my_rust_node_lib.win32-ia32-msvc.node" + ], + "engines": { + "node": ">= 10" + }, + "os": [ + "win32" + ] +} diff --git a/packages/my_rust_node_lib/package.json b/packages/my_rust_node_lib/package.json new file mode 100644 index 0000000000..690008822a --- /dev/null +++ b/packages/my_rust_node_lib/package.json @@ -0,0 +1,25 @@ +{ + "name": "@tevm/my-rust-node-lib", + "version": "0.0.0", + "main": "index.js", + "types": "index.d.ts", + "napi": { + "binaryName": "my_rust_node_lib", + "packageName": "@tevm/my-rust-node-lib", + "targets": [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-linux-musl", + "aarch64-pc-windows-msvc", + "armv7-unknown-linux-gnueabihf", + "x86_64-unknown-linux-musl", + "x86_64-unknown-freebsd", + "x86_64-apple-darwin", + "i686-pc-windows-msvc", + "wasm32-wasip1-threads" + ] + }, + "engines": { + "node": ">= 10" + } +} diff --git a/packages/my_rust_node_lib/project.json b/packages/my_rust_node_lib/project.json new file mode 100644 index 0000000000..eef12d744a --- /dev/null +++ b/packages/my_rust_node_lib/project.json @@ -0,0 +1,45 @@ +{ + "name": "my_rust_node_lib", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "projectType": "library", + "sourceRoot": "packages/my_rust_node_lib/src", + "tags": [], + "targets": { + "build": { + "cache": true, + "outputs": ["{workspaceRoot}/packages/my_rust_node_lib"], + "executor": "@monodon/rust:napi", + "options": { + "dist": "packages/my_rust_node_lib", + "jsFile": "index.js" + }, + "configurations": { + "production": { + "dist": "dist/my_rust_node_lib", + "release": true + } + } + }, + "test": { + "cache": true, + "executor": "@monodon/rust:test", + "outputs": ["{options.target-dir}"], + "options": { + "target-dir": "dist/target/my_rust_node_lib" + }, + "configurations": { + "production": { + "release": true + } + } + }, + "lint": { + "cache": true, + "executor": "@monodon/rust:lint", + "outputs": ["{options.target-dir}"], + "options": { + "target-dir": "dist/target/my_rust_node_lib" + } + } + } +} diff --git a/packages/my_rust_node_lib/src/lib.rs b/packages/my_rust_node_lib/src/lib.rs new file mode 100644 index 0000000000..0ee2a9fc4e --- /dev/null +++ b/packages/my_rust_node_lib/src/lib.rs @@ -0,0 +1,7 @@ +#[macro_use] +extern crate napi_derive; + +#[napi] +pub fn sum(a: i32, b: i32) -> i32 { + a + b +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 73a3777899..70eb2b0502 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,6 +23,15 @@ importers: '@effect/codemod': specifier: ^0.0.16 version: 0.0.16(@babel/preset-env@7.25.4(@babel/core@7.25.2)) + '@monodon/rust': + specifier: ^2.1.0 + version: 2.1.0(@napi-rs/cli@3.0.0-alpha.63(@emnapi/runtime@1.2.0)(emnapi@1.3.1(node-addon-api@7.1.1)))(@swc/core@1.7.28(@swc/helpers@0.5.13)) + '@napi-rs/cli': + specifier: 3.0.0-alpha.63 + version: 3.0.0-alpha.63(@emnapi/runtime@1.2.0)(emnapi@1.3.1(node-addon-api@7.1.1)) + '@napi-rs/wasm-runtime': + specifier: ^0.2.4 + version: 0.2.4 '@vitest/coverage-v8': specifier: ^2.1.1 version: 2.1.1(vitest@2.1.1(@types/node@22.7.3)(@vitest/ui@2.1.1)(terser@5.34.0)) @@ -41,6 +50,9 @@ importers: dotenv: specifier: ^16.4.5 version: 16.4.5 + emnapi: + specifier: ^1.1.0 + version: 1.3.1(node-addon-api@7.1.1) gitmoji-cli: specifier: ^9.4.0 version: 9.4.0 @@ -982,7 +994,7 @@ importers: version: 0.2.0 forge-std: specifier: github:foundry-rs/forge-std - version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/1de6eecf821de7fe2c908cc48d3ab3dced20717f + version: https://codeload.github.com/foundry-rs/forge-std/tar.gz/0e7097750918380d84dd3cfdef595bee74dabb70 react-helmet: specifier: ^6.1.0 version: 6.1.0(react@18.3.1) @@ -1008,40 +1020,6 @@ importers: specifier: ^2.1.1 version: 2.1.1(@types/node@22.7.3)(@vitest/ui@2.1.1)(terser@5.34.0) - experimental/lit: - dependencies: - '@lit-protocol/auth-helpers': - specifier: ^6.11.0 - version: 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/constants': - specifier: ^6.11.0 - version: 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/lit-node-client': - specifier: ^6.11.0 - version: 6.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@tevm/errors': - specifier: workspace:^ - version: link:../../packages/errors - '@tevm/logger': - specifier: workspace:^ - version: link:../../packages/logger - '@tevm/memory-client': - specifier: workspace:^ - version: link:../../packages/memory-client - '@tevm/utils': - specifier: workspace:^ - version: link:../../packages/utils - viem: - specifier: ^2.21.1 - version: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) - devDependencies: - '@tevm/tsconfig': - specifier: workspace:^ - version: link:../../configs/tsconfig - '@tevm/tsupconfig': - specifier: workspace:^ - version: link:../../configs/tsupconfig - experimental/revm: devDependencies: '@tevm/tsconfig': @@ -1073,13 +1051,13 @@ importers: version: 5.6.2 viem: specifier: ^2.21.1 - version: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + version: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) vitest: specifier: ^0.34.6 version: 0.34.6(@vitest/ui@0.34.7)(terser@5.34.0) wagmi: specifier: ^1.4.5 - version: 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + version: 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) wasm-pack: specifier: ^0.12.1 version: 0.12.1 @@ -1150,7 +1128,7 @@ importers: version: 5.6.2 wagmi: specifier: ^1.4.5 - version: 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + version: 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) zod: specifier: ^3.22.4 version: 3.23.8 @@ -1186,10 +1164,10 @@ importers: version: 2.0.0-next.54 isows: specifier: 1.0.3 - version: 1.0.3(ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)) + version: 1.0.3(ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) ws: specifier: 8.14.2 - version: 8.14.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) + version: 8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) devDependencies: '@babel/core': specifier: ^7.23.2 @@ -1229,13 +1207,13 @@ importers: version: 5.6.2 viem: specifier: ^1.x.x - version: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + version: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) vitest: specifier: ^0.34.6 version: 0.34.6(@vitest/ui@0.34.7)(terser@5.34.0) wagmi: specifier: ^1.4.5 - version: 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + version: 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) zod: specifier: ^3.22.4 version: 3.23.8 @@ -1889,6 +1867,8 @@ importers: specifier: workspace:^ version: link:../../configs/tsupconfig + packages/my_rust_node_lib: {} + packages/node: dependencies: '@tevm/address': @@ -3418,21 +3398,6 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} - '@cosmjs/amino@0.30.1': - resolution: {integrity: sha512-yNHnzmvAlkETDYIpeCTdVqgvrdt1qgkOXwuRVi8s27UKI5hfqyE9fJ/fuunXE6ZZPnKkjIecDznmuUOMrMvw4w==} - - '@cosmjs/crypto@0.30.1': - resolution: {integrity: sha512-rAljUlake3MSXs9xAm87mu34GfBLN0h/1uPPV6jEwClWjNkAMotzjC0ab9MARy5FFAvYHL3lWb57bhkbt2GtzQ==} - - '@cosmjs/encoding@0.30.1': - resolution: {integrity: sha512-rXmrTbgqwihORwJ3xYhIgQFfMSrwLu1s43RIK9I8EBudPx3KmnmyAKzMOVsRDo9edLFNuZ9GIvysUCwQfq3WlQ==} - - '@cosmjs/math@0.30.1': - resolution: {integrity: sha512-yaoeI23pin9ZiPHIisa6qqLngfnBR/25tSaWpkTm8Cy10MX70UF5oN4+/t1heLaM6SSmRrhk3psRkV4+7mH51Q==} - - '@cosmjs/utils@0.30.1': - resolution: {integrity: sha512-KvvX58MGMWh7xA+N+deCfunkA/ZNDvFLw4YbOmX3f/XBIkqrVY7qlotfy2aNb1kgp6h4B6Yc8YawJPDTfvWX7g==} - '@ctrl/tinycolor@4.1.0': resolution: {integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==} engines: {node: '>=14'} @@ -4254,9 +4219,6 @@ packages: '@ethersproject/base64@5.7.0': resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==} - '@ethersproject/basex@5.7.0': - resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==} - '@ethersproject/bignumber@5.7.0': resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} @@ -4266,18 +4228,9 @@ packages: '@ethersproject/constants@5.7.0': resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==} - '@ethersproject/contracts@5.7.0': - resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==} - '@ethersproject/hash@5.7.0': resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==} - '@ethersproject/hdnode@5.7.0': - resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==} - - '@ethersproject/json-wallets@5.7.0': - resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==} - '@ethersproject/keccak256@5.7.0': resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} @@ -4287,48 +4240,24 @@ packages: '@ethersproject/networks@5.7.1': resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==} - '@ethersproject/pbkdf2@5.7.0': - resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==} - '@ethersproject/properties@5.7.0': resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==} - '@ethersproject/providers@5.7.2': - resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==} - - '@ethersproject/random@5.7.0': - resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==} - '@ethersproject/rlp@5.7.0': resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} - '@ethersproject/sha2@5.7.0': - resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==} - '@ethersproject/signing-key@5.7.0': resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==} - '@ethersproject/solidity@5.7.0': - resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==} - '@ethersproject/strings@5.7.0': resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==} '@ethersproject/transactions@5.7.0': resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==} - '@ethersproject/units@5.7.0': - resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==} - - '@ethersproject/wallet@5.7.0': - resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==} - '@ethersproject/web@5.7.1': resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==} - '@ethersproject/wordlists@5.7.0': - resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} - '@evmts/base@1.0.0-next.18': resolution: {integrity: sha512-C4dm8iP4T1zY1rtYP1OWr2VY9GpOG/cvqSgsLhiTYXtysJv8ZoNSlf9xkovwdRWnVtbfh5rFoMVplOBQCVWsjQ==} @@ -4528,10 +4457,66 @@ packages: peerDependencies: ink: '>=5' + '@inquirer/checkbox@3.0.1': + resolution: {integrity: sha512-0hm2nrToWUdD6/UHnel/UKGdk1//ke5zGUpHIvk5ZWmaKezlGxZkOJXNSWsdxO/rEqTkbB3lNC2J6nBElV2aAQ==} + engines: {node: '>=18'} + + '@inquirer/confirm@4.0.1': + resolution: {integrity: sha512-46yL28o2NJ9doViqOy0VDcoTzng7rAb6yPQKU7VDLqkmbCaH4JqK4yk4XqlzNWy9PVC5pG1ZUXPBQv+VqnYs2w==} + engines: {node: '>=18'} + + '@inquirer/core@9.2.1': + resolution: {integrity: sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==} + engines: {node: '>=18'} + + '@inquirer/editor@3.0.1': + resolution: {integrity: sha512-VA96GPFaSOVudjKFraokEEmUQg/Lub6OXvbIEZU1SDCmBzRkHGhxoFAVaF30nyiB4m5cEbDgiI2QRacXZ2hw9Q==} + engines: {node: '>=18'} + + '@inquirer/expand@3.0.1': + resolution: {integrity: sha512-ToG8d6RIbnVpbdPdiN7BCxZGiHOTomOX94C2FaT5KOHupV40tKEDozp12res6cMIfRKrXLJyexAZhWVHgbALSQ==} + engines: {node: '>=18'} + '@inquirer/figures@1.0.6': resolution: {integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==} engines: {node: '>=18'} + '@inquirer/figures@1.0.7': + resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==} + engines: {node: '>=18'} + + '@inquirer/input@3.0.1': + resolution: {integrity: sha512-BDuPBmpvi8eMCxqC5iacloWqv+5tQSJlUafYWUe31ow1BVXjW2a5qe3dh4X/Z25Wp22RwvcaLCc2siHobEOfzg==} + engines: {node: '>=18'} + + '@inquirer/number@2.0.1': + resolution: {integrity: sha512-QpR8jPhRjSmlr/mD2cw3IR8HRO7lSVOnqUvQa8scv1Lsr3xoAMMworcYW3J13z3ppjBFBD2ef1Ci6AE5Qn8goQ==} + engines: {node: '>=18'} + + '@inquirer/password@3.0.1': + resolution: {integrity: sha512-haoeEPUisD1NeE2IanLOiFr4wcTXGWrBOyAyPZi1FfLJuXOzNmxCJPgUrGYKVh+Y8hfGJenIfz5Wb/DkE9KkMQ==} + engines: {node: '>=18'} + + '@inquirer/prompts@6.0.1': + resolution: {integrity: sha512-yl43JD/86CIj3Mz5mvvLJqAOfIup7ncxfJ0Btnl0/v5TouVUyeEdcpknfgc+yMevS/48oH9WAkkw93m7otLb/A==} + engines: {node: '>=18'} + + '@inquirer/rawlist@3.0.1': + resolution: {integrity: sha512-VgRtFIwZInUzTiPLSfDXK5jLrnpkuSOh1ctfaoygKAdPqjcjKYmGh6sCY1pb0aGnCGsmhUxoqLDUAU0ud+lGXQ==} + engines: {node: '>=18'} + + '@inquirer/search@2.0.1': + resolution: {integrity: sha512-r5hBKZk3g5MkIzLVoSgE4evypGqtOannnB3PKTG9NRZxyFRKcfzrdxXXPcoJQsxJPzvdSU2Rn7pB7lw0GCmGAg==} + engines: {node: '>=18'} + + '@inquirer/select@3.0.1': + resolution: {integrity: sha512-lUDGUxPhdWMkN/fHy1Lk7pF3nK1fh/gqeyWXmctefhxLYxlDsc7vsPBEpxrfVGDsVdyYJsiJoD4bJ1b623cV1Q==} + engines: {node: '>=18'} + + '@inquirer/type@2.0.0': + resolution: {integrity: sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==} + engines: {node: '>=18'} + '@ioredis/commands@1.2.0': resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} @@ -4619,71 +4604,6 @@ packages: '@lit-labs/ssr-dom-shim@1.2.1': resolution: {integrity: sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==} - '@lit-protocol/access-control-conditions@6.11.0': - resolution: {integrity: sha512-Pl+q3o+zRQlGiYPCqOLELspgwaUVq08fwPGT6Xx6h1B34X/wylk2hb38w87ymetaDY9eTeK1g+/NlQf7KJr+/A==} - - '@lit-protocol/accs-schemas@0.0.15': - resolution: {integrity: sha512-GYF8BolqrU2H/uXr3D39TUbgFN/3u2d68oHHNfwg926iEsCEHwGmUOPvi4EMprV5lJR3EVn9IQODY/4eokJ6Rg==} - - '@lit-protocol/auth-browser@6.11.0': - resolution: {integrity: sha512-THutHhdKjiApJvwFDmPOGfE1a1k0slylC8PZeUWNEf7d10yKWzVxZVQS+PPXjU65R+F5mPf/VE69nKfvrRhy6Q==} - - '@lit-protocol/auth-helpers@6.11.0': - resolution: {integrity: sha512-03PqCIQ+kzXZCLYLcvgdgEVI5zO0+Vblqrt5QAshrRgYhm4X4FoTbjt5vZesTxwaWG+tAAISd651GBM4jVnoTQ==} - - '@lit-protocol/bls-sdk@6.11.0': - resolution: {integrity: sha512-WHfxJ3Siwt/dG139qowf+dT7K8xPejQ0SGGUSBWkhcuAR+zvCQUQ8MHVjDHmhYXKx9DM/OE+iPwXkva3GEYH0A==} - - '@lit-protocol/constants@6.11.0': - resolution: {integrity: sha512-z7WY+qcjy5UXKc9EDqgAyvp7nWKY80IlQAk7lLhP5uIana8zc8RzJSgl0Hkz+vhPrQNmbMuB1/xVjdLD2B1tLg==} - - '@lit-protocol/contracts-sdk@6.11.0': - resolution: {integrity: sha512-Qz7q2uv0adL44QKu/MSzCCeRxpeKQAimL2yGfrc/i2W4vIZLPNTUElVvMC/kHlR/x0M9gHJYNhx8EIzoR9tZwg==} - - '@lit-protocol/contracts@0.0.63': - resolution: {integrity: sha512-CAorNt72ybIY/g//dDeR837izNGuYQR99XwPSK2X2AJ6c+aZX1kdXCrOnxsbY40BzFrOk/dIFo+ymJ9E3qh48w==} - peerDependencies: - typescript: ^5.0.0 - - '@lit-protocol/core@6.11.0': - resolution: {integrity: sha512-jrR7WlDTXDry1PwWTBHbzSwsDZmr4UZPLiWDWiSDdkEdye8j5R2ZO2HmYmajvRaKMlro6IWcgEqUEXUYsbrAeg==} - - '@lit-protocol/crypto@6.11.0': - resolution: {integrity: sha512-Yll7okzIqCdVUk8p3JhGEw5S9BtRO8kAHowI9JywTO97g74D3R9yQxdJbcdzIrEUWDZeJkjh6z2kb+fOFqilUQ==} - - '@lit-protocol/ecdsa-sdk@6.11.0': - resolution: {integrity: sha512-wLx9aYaKzg3ETB7RJtahSE+xFWN/sHzGxVvKERuq7vJR4u+JAayGLAU1kMp5vnWrUCuN1R/SeQmLNKUH0meGAQ==} - - '@lit-protocol/encryption@6.11.0': - resolution: {integrity: sha512-A191FifNfR2HEr9CHSRkIh18oJYbYPGfKWsUWPmR2tpH1ysItF4uZsKtSJDD8k/O9us5hbudslFpM9fXYA1azA==} - - '@lit-protocol/lit-node-client-nodejs@6.11.0': - resolution: {integrity: sha512-5yMb8uxmWljKMfiCT/vtvioKlpu+kkhS/Mci8uWVD6VOGlfLodf/DuvKUVRcwfRyhqBeZZEGx8GPRgxUlv63Cw==} - - '@lit-protocol/lit-node-client@6.11.0': - resolution: {integrity: sha512-AX6x5z58c1HmDK88UWT5WLuBr4/OZvu3KLmB0yrHaTbNrKPRmICsydzQ/Vn+XAIf2Fd1ksKg2WCYQ0tZEshJLA==} - - '@lit-protocol/logger@6.11.0': - resolution: {integrity: sha512-q+MAK99s+bJxXKklu1+TBT3SS0l2rpAmSg/VznEIOwHcRBpcbLpKWftNqzo3gKqETAK4q7DUgBk6oM9kkNgJEw==} - - '@lit-protocol/misc-browser@6.11.0': - resolution: {integrity: sha512-8kGIvn60S6YVabhxL3CQXRroR6G3XNWB/05d29DuG1yMuazO65FciA1mta7D63i2TyVaKIKztbfIO0hsmJhj9Q==} - - '@lit-protocol/misc@6.11.0': - resolution: {integrity: sha512-euQEqMDqt4ehHx7GFr3u7u9ondGcf6sOoE0bYDrPJi5d6DXLYpLL008A6BqZ2tAqJ+A2yKgK7DfnmBLyKvXWGQ==} - - '@lit-protocol/nacl@6.11.0': - resolution: {integrity: sha512-bZRLis6uO4OtWIX7C/CPerMfu+oyP6hd2ErUbzS8u6SJdPyW9KqzYMVdQAeijpCXBvAZAZzmgLadnFpNHT1i3g==} - - '@lit-protocol/sev-snp-utils-sdk@6.11.0': - resolution: {integrity: sha512-T8tmJ4XVyzaufRffy6+rV7tS0XQkVLmbiDpFrGS4d+MVFXE02ct1JWDe/bStJa7xjs9k8HIqf/ejPaj5uhsP0Q==} - - '@lit-protocol/types@6.11.0': - resolution: {integrity: sha512-DiJhJkV/o7kVocP2SSAECv4MyF5V4Giz9BJqvrTfiSdfDjYuQoxIvLoSZUNLF/H+oyQQrKinDKNUy8GzhVTBMA==} - - '@lit-protocol/uint8arrays@6.11.0': - resolution: {integrity: sha512-0MJwBXmDTpiU8ScsCXShSsajs7P5Fw4xRwj6BbHbRjP7vaGtT1R08XUV95GQJVLFjkFMvJOGeqclSVzEA0ZK4Q==} - '@lit/reactive-element@1.6.3': resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==} @@ -4691,6 +4611,9 @@ packages: resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} engines: {node: '>= 0.4'} + '@ltd/j-toml@1.38.0': + resolution: {integrity: sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==} + '@manypkg/find-root@1.1.0': resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} @@ -4793,6 +4716,11 @@ packages: resolution: {integrity: sha512-/u663aUaB6+Xe75i3Mt/1cCljm41HDYIsna5oBrwGvgkY2zH7/9k9Zjd706cxoAbxN7QgLSVAReUiGnuxCuXrQ==} engines: {node: '>=16.0.0'} + '@monodon/rust@2.1.0': + resolution: {integrity: sha512-ZapUazGs6MS1gnNBQPOX3hFSBI/zh6C3MD7oHqhYYDjuCLWgwkFoQUjOwciR6lEhEBfHywCh3lnHwOT+aQBEuw==} + peerDependencies: + '@napi-rs/cli': ^3.0.0-alpha.55 + '@motionone/animation@10.18.0': resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==} @@ -4818,128 +4746,449 @@ packages: resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==} deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion - '@napi-rs/wasm-runtime@0.2.4': - resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} + '@napi-rs/cli@3.0.0-alpha.63': + resolution: {integrity: sha512-kccKMymb6IyS1nEfGHBYNq6aAXwGd3iVvQ6Wx7Wu4ewjO+6i5c6oSgLb75rd4qXL/KtskZp/AOlw7TB5XslTmA==} + engines: {node: '>= 16'} + hasBin: true + peerDependencies: + '@emnapi/runtime': ^1.1.0 + emnapi: ^1.1.0 + peerDependenciesMeta: + '@emnapi/runtime': + optional: true + emnapi: + optional: true - '@next/env@14.2.13': - resolution: {integrity: sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==} + '@napi-rs/cross-toolchain@0.0.16': + resolution: {integrity: sha512-jwdjHT5L0m9MH0CmzDwPp0ckn/UO7afHCsPeo7NugHUvYgvlgS7SWhdMVgIgJW2HHqhcW/2nhaLLGpAU1c7QRQ==} + peerDependencies: + '@napi-rs/cross-toolchain-arm64-target-aarch64': ^0.0.16 + '@napi-rs/cross-toolchain-arm64-target-armv7': ^0.0.16 + '@napi-rs/cross-toolchain-arm64-target-x86_64': ^0.0.16 + '@napi-rs/cross-toolchain-x64-target-aarch64': ^0.0.16 + '@napi-rs/cross-toolchain-x64-target-armv7': ^0.0.16 + '@napi-rs/cross-toolchain-x64-target-x86_64': ^0.0.16 + peerDependenciesMeta: + '@napi-rs/cross-toolchain-arm64-target-aarch64': + optional: true + '@napi-rs/cross-toolchain-arm64-target-armv7': + optional: true + '@napi-rs/cross-toolchain-arm64-target-x86_64': + optional: true + '@napi-rs/cross-toolchain-x64-target-aarch64': + optional: true + '@napi-rs/cross-toolchain-x64-target-armv7': + optional: true + '@napi-rs/cross-toolchain-x64-target-x86_64': + optional: true - '@next/swc-darwin-arm64@14.2.13': - resolution: {integrity: sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg==} + '@napi-rs/lzma-android-arm-eabi@1.4.1': + resolution: {integrity: sha512-yenreSpZ9IrqppJOiWDqWMmja7XtSgio9LhtxYwgdILmy/OJTe/mlTYv+FhJBf7hIV9Razu5eBuEa3zKri81IA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + + '@napi-rs/lzma-android-arm64@1.4.1': + resolution: {integrity: sha512-piutVBz5B1TNxXeEjub0n/IKI6dMaXPPRbVSXuc4gnZgzcihNDUh68vcLZgYd+IMiACZvBxvx2O3t5nthtph3A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@napi-rs/lzma-darwin-arm64@1.4.1': + resolution: {integrity: sha512-sDfOhQQFqV8lGbpgJN9DqNLBPR7QOfYjcWUv8FOGPaVP1LPJDnrc5uCpRWWEa2zIKmTiO8P9xzIl0TDzrYmghg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.2.13': - resolution: {integrity: sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog==} + '@napi-rs/lzma-darwin-x64@1.4.1': + resolution: {integrity: sha512-S5/RbC6EP4QkYy2xhxbfm48ZD9FkysfpWY4Slve0nj5RGGsHvcJBg2Pi69jrTPB/zLKz2SUa0i+RfUt9zvZNaw==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.2.13': - resolution: {integrity: sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg==} + '@napi-rs/lzma-freebsd-x64@1.4.1': + resolution: {integrity: sha512-4AFnq6aZnclwameSBkDWu5Ftb8y4GwvVXeQXJKbN7hf7O5GG/8QpQB1R1NJw2QORUhpKwjAQUpbkTyhL2GFWWw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@napi-rs/lzma-linux-arm-gnueabihf@1.4.1': + resolution: {integrity: sha512-j5rL1YRIm6rWmmGAvN6DPX6QuRjvFGB93xJ7DTRB47GXW4zHekXae6ivowjJ95vT4Iz4hSWkZbuwAy95eFrWRA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@napi-rs/lzma-linux-arm64-gnu@1.4.1': + resolution: {integrity: sha512-1XdFGKyTS9m+VrRQYs9uz+ToHf4Jwm0ejHU48k9lT9MPl8jSqzKdVtFzZBPzronHteSynBfKmUq0+HeWmjrsOQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.2.13': - resolution: {integrity: sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg==} + '@napi-rs/lzma-linux-arm64-musl@1.4.1': + resolution: {integrity: sha512-9d09tYS0/rBwIk1QTcO2hMZEB/ZpsG2+uFW5am1RHElSWMclObirB1An7b6AMDJcRvcomkOg2GZ9COzrvHKwEA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.2.13': - resolution: {integrity: sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA==} + '@napi-rs/lzma-linux-ppc64-gnu@1.4.1': + resolution: {integrity: sha512-UzEkmsgoJ3IOGIRb6kBzNiw+ThUpiighop7dVYfSqlF5juGzwf7YewC57RGn4FoJCvadOCrSm5VikAcgrwVgAw==} + engines: {node: '>= 10'} + cpu: [ppc64] + os: [linux] + + '@napi-rs/lzma-linux-riscv64-gnu@1.4.1': + resolution: {integrity: sha512-9dUKlZ1PdwxTaFF+j3oc+xjlk9nqFwo1NWWOH30uwjl4Rm5Gkv+Fx0pHrzu4kR/iVA+oyQqa9/2uDYnGSTijBA==} + engines: {node: '>= 10'} + cpu: [riscv64] + os: [linux] + + '@napi-rs/lzma-linux-s390x-gnu@1.4.1': + resolution: {integrity: sha512-MOVXUWJSLLCJDCCAlGa39sh7nv9XjvXzCf7QJus7rD8Ciz0mpXNXF9mg0ji7/MZ7pZlKPlXjXDnpVCfFdSEaFQ==} + engines: {node: '>= 10'} + cpu: [s390x] + os: [linux] + + '@napi-rs/lzma-linux-x64-gnu@1.4.1': + resolution: {integrity: sha512-Sxu7aJxU1sDbUTqjqLVDV3DCOAlbsFKvmuCN/S5uXBJd1IF2wJ9jK3NbFzfqTAo5Hudx8Y7kOb6+3K+fYPI1KQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.2.13': - resolution: {integrity: sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg==} + '@napi-rs/lzma-linux-x64-musl@1.4.1': + resolution: {integrity: sha512-4I3BeKBQJSE5gF2/VTEv7wCLLjhapeutbCGpZPmDiLHZ74rm9edmNXAlKpdjADQ4YDLJ2GIBzttvwLXkJ9U+cw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.2.13': - resolution: {integrity: sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ==} + '@napi-rs/lzma-wasm32-wasi@1.4.1': + resolution: {integrity: sha512-s32HdKqQWbohf6DGWpG9YMODaBdbKJ++JpNr6Ii7821sKf4h/o+p8IRFTOaWdmdJdllEWlRirnd5crA29VivJQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@napi-rs/lzma-win32-arm64-msvc@1.4.1': + resolution: {integrity: sha512-ISz+v7ML5mKnjEZ7Kk4Z1BIn411r/fz3tDy9j5yDnwQI0MgTsUQFrIQElGUpULWYs2aYc6EZ9PhECbLBfSjh7A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.2.13': - resolution: {integrity: sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw==} + '@napi-rs/lzma-win32-ia32-msvc@1.4.1': + resolution: {integrity: sha512-3WKuCpZBrd7Jrw+h1jSu5XAsRWepMJu0sYuRoA4Y4Cwfu9gI7p5Z5Bc510nfjg7M7xvdpkI4UoW2WY7kBFRYrQ==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@14.2.13': - resolution: {integrity: sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw==} + '@napi-rs/lzma-win32-x64-msvc@1.4.1': + resolution: {integrity: sha512-0ixRo5z1zFXdh62hlrTV+QCTKHK0te5NHKaExOluhtcc6AdpMmpslvM9JhUxNHI+zM46w/DmmcvcOtqsaTmHgg==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@noble/ciphers@1.0.0': - resolution: {integrity: sha512-wH5EHOmLi0rEazphPbecAzmjd12I6/Yv/SiHdkA9LSycsQk7RuuTp7am5/o62qYr0RScE7Pc9icXGBbsr6cesA==} - engines: {node: ^14.21.3 || >=16} - - '@noble/curves@1.2.0': - resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} + '@napi-rs/lzma@1.4.1': + resolution: {integrity: sha512-5f8K9NHjwHjZKGm3SS+7CFxXQhz8rbg2umBm/9g0xQRXBdYEI31N5z1ACuk9bmBQOusXAq9CArGfs/ZQso2rUA==} + engines: {node: '>= 10'} - '@noble/curves@1.4.0': - resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} + '@napi-rs/tar-android-arm-eabi@0.1.4': + resolution: {integrity: sha512-LMSysWp5AmZj1NOCB2jshc9KCvp4gm7vm0Cra5U2crMvlj/fwGrvv6+EzSw49y8wCkNEcQ8QaGq5NBQKiLogSg==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] - '@noble/curves@1.4.2': - resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + '@napi-rs/tar-android-arm64@0.1.4': + resolution: {integrity: sha512-A/2rl8xr7F5yOtHVARROoSwjRRDNL1RlXCsg/K+RE5/V9iPBojsJsLpFPilp7InF6bi+z7aYn+yWCD6wSwfF4A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] - '@noble/curves@1.6.0': - resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==} - engines: {node: ^14.21.3 || >=16} + '@napi-rs/tar-darwin-arm64@0.1.4': + resolution: {integrity: sha512-mnGBswBRtxDqUwXUZx+f9Uuy2uPssxuvcWFTYgUSZqlS2pg/XIWZdHZhbqWqKGpjpZrYcr+42roytbWlZ+epMA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] - '@noble/hashes@1.2.0': - resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} + '@napi-rs/tar-darwin-x64@0.1.4': + resolution: {integrity: sha512-I81Fvl/cfnFVBET49xywNd57dXLJPO7jqrjD9Z2bKeXA0v0Zt1cwV1IOOTihFZXJv7kgu6EfNB7oumoLOTqq5A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] - '@noble/hashes@1.3.2': - resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} - engines: {node: '>= 16'} + '@napi-rs/tar-freebsd-x64@0.1.4': + resolution: {integrity: sha512-p5OFr3MqidZHkt9bHV2FgeS6k06g+s0GR2kvj/wm2mIxr7u3/sj3+RTr7GHz5DQq08T7uH85HhsrGYWN3vxmSg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] - '@noble/hashes@1.4.0': - resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} - engines: {node: '>= 16'} + '@napi-rs/tar-linux-arm-gnueabihf@0.1.4': + resolution: {integrity: sha512-POp2zb/Yuw6taEmrTlEoQI5S+2HmgfV1VtqGQZgRmCa85NlWLDsR6vbW9euu/6NbLj3ld15cCeJC2oJkv9k/xg==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] - '@noble/hashes@1.5.0': - resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} - engines: {node: ^14.21.3 || >=16} + '@napi-rs/tar-linux-arm64-gnu@0.1.4': + resolution: {integrity: sha512-TV+2AppSgJx5U9nk1C9bh1afWcBVnnANJ4SmtqUF6ediHcDS2rLebeI8BGljfnX9F149qbT9gOGN+R8tofpCsg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] - '@noble/secp256k1@1.7.1': - resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} + '@napi-rs/tar-linux-arm64-musl@0.1.4': + resolution: {integrity: sha512-UFBvKpYmuQRbgmXuSSPb8mRjq4JRZLYJhqwrWWnlfQP13xK2WB7mL2GhewBgynSH4YKDm6biKhK6U5RrSWEDgw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@napi-rs/tar-linux-ppc64-gnu@0.1.4': + resolution: {integrity: sha512-HT+h6Wv51SKXqks8UBF+KVuNJ09fM1GyO+SvCnDB5MF66tGiI2C6/MSX69zf1ZeqjACds1K/UwKiZCmE76/j9A==} + engines: {node: '>= 10'} + cpu: [ppc64] + os: [linux] - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@napi-rs/tar-linux-s390x-gnu@0.1.4': + resolution: {integrity: sha512-SJ+HSr281Y6cgJrQ4nkYbXaTHAmTLv/FZm5k9ZRA6Khml//ZoWi7CiT8dnPeD4QxYwCzAFA4aYMUOQJM/mk2/w==} + engines: {node: '>= 10'} + cpu: [s390x] + os: [linux] - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@napi-rs/tar-linux-x64-gnu@0.1.4': + resolution: {integrity: sha512-LrF0lRFiFOkO40jfgTdF8dRTvYOLV52fdZ/YnJuBodNcxqEl9rChO3v5Uag//sy0me85FjqtobQNRQP8Nd80dA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] - '@nomicfoundation/edr-darwin-arm64@0.6.2': - resolution: {integrity: sha512-o4A9SaPlxJ1MS6u8Ozqq7Y0ri2XO0jASw+qkytQyBYowNFNReoGqVSs7SCwenYCDiN+1il8+M0VAUq7wOovnCQ==} - engines: {node: '>= 18'} + '@napi-rs/tar-linux-x64-musl@0.1.4': + resolution: {integrity: sha512-etGUWbs+Tk1PtzgyWrVzXa2fQrHNKSc/whHm+4x1Num8Oz+wGdjCDTUktYxAVy33PKZhdblVxxE83QXxkgjneQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] - '@nomicfoundation/edr-darwin-x64@0.6.2': - resolution: {integrity: sha512-WG8BeG2eR3rFC+2/9V1hoPGW7tmNRUcuztdHUijO1h2flRsf2YWv+kEHO+EEnhGkEbgBUiwOrwlwlSMxhe2cGA==} - engines: {node: '>= 18'} + '@napi-rs/tar-wasm32-wasi@0.1.4': + resolution: {integrity: sha512-mANkm93AKy+OspkOBAC5WI64SopXT0VawdTjpeGW1OgyUSJWdUB5rhs3I7B/HW1bi5tsUoZOZQe3rVgYdfzA6g==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] - '@nomicfoundation/edr-linux-arm64-gnu@0.6.2': - resolution: {integrity: sha512-wvHaTmOwuPjRIOqBB+paI3RBdNlG8f3e1F2zWj75EdeWwefimPzzFUs05JxOYuPO0JhDQIn2tbYUgdZbBQ+mqg==} - engines: {node: '>= 18'} + '@napi-rs/tar-win32-arm64-msvc@0.1.4': + resolution: {integrity: sha512-/5/gp6WR9b36CysJDe8AdyjNeje+NqCniYJz/AZc+UvpKwG8MG9nS6TMpJ9IgrQacJXvc4lWXxYyn6uuPQVvaQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] - '@nomicfoundation/edr-linux-arm64-musl@0.6.2': - resolution: {integrity: sha512-UrOAxnsywUcEngQM2ZxIuucci0VX29hYxX7jcpwZU50HICCjxNsxnuXYPxv+IM+6gbhBY1FYvYJGW4PJcP1Nyw==} - engines: {node: '>= 18'} + '@napi-rs/tar-win32-ia32-msvc@0.1.4': + resolution: {integrity: sha512-HnQi0op9BqJqPekKXhEAI1TWkLtavxKDBDGXNhUSm2//jriMeRykahUcKoUUxr1UGrmtxpc5dx0cThBt13paEw==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@napi-rs/tar-win32-x64-msvc@0.1.4': + resolution: {integrity: sha512-vy2ebEXerblni6XOgi3a27+CnI6PdQ9Phy/ru5HM4bVd/oulAJohmynAmBAB1AmXg1NLbAEWu43nATEDp5O2hA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@napi-rs/tar@0.1.4': + resolution: {integrity: sha512-hDsvmMZY8tl2CcLfjnTeE1o5W1eGTSL+ZIX8YEybtcJwA+Cc8SNHb7l6JqMnGcjOrWBZbHt8tzTN+W7qHS5Wmg==} + engines: {node: '>= 10'} + + '@napi-rs/wasm-runtime@0.2.4': + resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} + + '@napi-rs/wasm-tools-android-arm-eabi@0.0.2': + resolution: {integrity: sha512-/b+UU3suXjW4P0DzHRNdrnebQtFKcQf/YMeZJH+xUlKgvwli5kbmWjx8Wqqz0VETVkUTuPqJMBDIVLyc+14FGw==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + + '@napi-rs/wasm-tools-android-arm64@0.0.2': + resolution: {integrity: sha512-j57GbDflwJdZtT8pZj5fOV4JAP+LdKN+wzsUYs+QRUoBqpWbbUANudolqfw63bkS9sD4z7fbCuz8iwtJqzxTVA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@napi-rs/wasm-tools-darwin-arm64@0.0.2': + resolution: {integrity: sha512-P2ChgWgVuv9GwmbxN89R84KzIImoTqXINteEixUvmkdnhyFiR+I8deNs89Yed+5w8QLC6MEfrtRqLP9YI+NoQA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@napi-rs/wasm-tools-darwin-x64@0.0.2': + resolution: {integrity: sha512-T/kQQ0gt8+wau1Z821PKVAD76QhmwVoLs2CT7Z9tTBs2pJvwSCP0C/kQiQAHcJIMi7A2E9Ab/Mez0BERy50EFA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@napi-rs/wasm-tools-freebsd-x64@0.0.2': + resolution: {integrity: sha512-GnnHu+r5sfzuxC/1J5UMF/h3BOZnHb3NQZ5hmbCfZYCKzpzRxrAJhzRunlbRN+v0x8M/49dztVTYR3s7K4ooAw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@napi-rs/wasm-tools-linux-arm64-gnu@0.0.2': + resolution: {integrity: sha512-KnZdLT0OnKb1CG2kdt3/WvM43vr9i+FEwXCvSOVC/6Tsifz7ynhMg7LAVESILd03HubzQJfg9nbRsk0bQ+IOwg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@napi-rs/wasm-tools-linux-arm64-musl@0.0.2': + resolution: {integrity: sha512-HkpZOID2U8P6pWqK3mqZ8bxU5xcuT3iA2fO+jrxn78h006iYgfNmdc5JaVhHnHazMmk32xKhSV4iV0VUh8UWDg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@napi-rs/wasm-tools-linux-x64-gnu@0.0.2': + resolution: {integrity: sha512-YksJWBCyOalB9ogtP9+/dZKP+vR6+h7BmzMXaXMT71WW/GvIsifMVgv+DY/FRSNJQupp5Y+ugjqVAOUOc/G65g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@napi-rs/wasm-tools-linux-x64-musl@0.0.2': + resolution: {integrity: sha512-sPtRxPMdw05KdTcxgSPMmSXG2+PiK3vJ/l2+g9hvjnnKtvslJN2Hr7j8zgzuoKRAUFPaJVe6+D2xVh5cpdqhww==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@napi-rs/wasm-tools-wasm32-wasi@0.0.2': + resolution: {integrity: sha512-muRvZK7AIuo88G2AxYx3gA59rHMQgoN004saQkBvXnz3K/DVHKfTZ6TtUebss8zI3dURU6xExL8drxFWYxjEbQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@napi-rs/wasm-tools-win32-arm64-msvc@0.0.2': + resolution: {integrity: sha512-Cn13WQ+tpFqdVwx0DIWKbsI9auFyzVZV4F5UNOUeDt6GgOL+NndgJul0Pc9bSU6fi03AylMPfF/nTCaDWO2Wgw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@napi-rs/wasm-tools-win32-ia32-msvc@0.0.2': + resolution: {integrity: sha512-xsg5DkIQi82a8rcx6246Y3XC8TIqHamY+/C6sIlPLaZEuHctDkMECAw0AANwRf5vN//D2oo2oljOuoYtB1GOKw==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@napi-rs/wasm-tools-win32-x64-msvc@0.0.2': + resolution: {integrity: sha512-yHigltEt33eq8bappvKsIliz4MxfMPn1M+NWbIFRWN+IS1Z57mhmc1osuk+IRXrSlq0Tom0R6MYN1jpkZKz81Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@napi-rs/wasm-tools@0.0.2': + resolution: {integrity: sha512-kBvDQCP5BLw2TxTENXLp3Of7vVEx0uyIye824JHE4dduzzOHVgSoOFVhVqAT3Fx/hLV445RVWfEqQbXMg4w/Mw==} + engines: {node: '>= 10'} + + '@next/env@14.2.13': + resolution: {integrity: sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==} + + '@next/swc-darwin-arm64@14.2.13': + resolution: {integrity: sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@14.2.13': + resolution: {integrity: sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@14.2.13': + resolution: {integrity: sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@14.2.13': + resolution: {integrity: sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@14.2.13': + resolution: {integrity: sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@14.2.13': + resolution: {integrity: sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@14.2.13': + resolution: {integrity: sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-ia32-msvc@14.2.13': + resolution: {integrity: sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@next/swc-win32-x64-msvc@14.2.13': + resolution: {integrity: sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@noble/ciphers@1.0.0': + resolution: {integrity: sha512-wH5EHOmLi0rEazphPbecAzmjd12I6/Yv/SiHdkA9LSycsQk7RuuTp7am5/o62qYr0RScE7Pc9icXGBbsr6cesA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.2.0': + resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} + + '@noble/curves@1.4.0': + resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} + + '@noble/curves@1.4.2': + resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + + '@noble/curves@1.6.0': + resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.2.0': + resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} + + '@noble/hashes@1.3.2': + resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} + engines: {node: '>= 16'} + + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} + + '@noble/hashes@1.5.0': + resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/secp256k1@1.7.1': + resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@nomicfoundation/edr-darwin-arm64@0.6.2': + resolution: {integrity: sha512-o4A9SaPlxJ1MS6u8Ozqq7Y0ri2XO0jASw+qkytQyBYowNFNReoGqVSs7SCwenYCDiN+1il8+M0VAUq7wOovnCQ==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-darwin-x64@0.6.2': + resolution: {integrity: sha512-WG8BeG2eR3rFC+2/9V1hoPGW7tmNRUcuztdHUijO1h2flRsf2YWv+kEHO+EEnhGkEbgBUiwOrwlwlSMxhe2cGA==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-linux-arm64-gnu@0.6.2': + resolution: {integrity: sha512-wvHaTmOwuPjRIOqBB+paI3RBdNlG8f3e1F2zWj75EdeWwefimPzzFUs05JxOYuPO0JhDQIn2tbYUgdZbBQ+mqg==} + engines: {node: '>= 18'} + + '@nomicfoundation/edr-linux-arm64-musl@0.6.2': + resolution: {integrity: sha512-UrOAxnsywUcEngQM2ZxIuucci0VX29hYxX7jcpwZU50HICCjxNsxnuXYPxv+IM+6gbhBY1FYvYJGW4PJcP1Nyw==} + engines: {node: '>= 18'} '@nomicfoundation/edr-linux-x64-gnu@0.6.2': resolution: {integrity: sha512-gYxlPLi7fkNcmDmCwZWQa5eOfNcTDundE+TWjpyafxLAjodQuKBD4I0p4XbnuocHjoBEeNzLWdE5RShbZEXEJA==} @@ -5024,6 +5273,11 @@ packages: resolution: {integrity: sha512-WvGvFjCy/dSpviLJE8YKcSqpTVpX78UFUhYGgd0OxNlnz0I52HDsZekVWJnyCuU0NDGH6BNmS77R79zj+WzxvQ==} hasBin: true + '@nx/devkit@20.0.12': + resolution: {integrity: sha512-HsaDoAmzLPE2vHal2eNYvH7x6NCfHjUblm8WDD12Q/uCdTBvDTZqd7P+bukEH+2FhY89Dn/1fy59vKkA+rcB/g==} + peerDependencies: + nx: '>= 19 <= 21' + '@nx/nx-darwin-arm64@19.8.2': resolution: {integrity: sha512-O06sOObpaF3UQrx6R5s0kFOrhrk/N20rKhOMaD5Qxw6lmVr6TGGH1epGpD8ES7ZPS+p7FUtU9/FPHwY02BZfBg==} engines: {node: '>= 10'} @@ -5084,6 +5338,58 @@ packages: cpu: [x64] os: [win32] + '@octokit/auth-token@5.1.1': + resolution: {integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==} + engines: {node: '>= 18'} + + '@octokit/core@6.1.2': + resolution: {integrity: sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==} + engines: {node: '>= 18'} + + '@octokit/endpoint@10.1.1': + resolution: {integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==} + engines: {node: '>= 18'} + + '@octokit/graphql@8.1.1': + resolution: {integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==} + engines: {node: '>= 18'} + + '@octokit/openapi-types@22.2.0': + resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} + + '@octokit/plugin-paginate-rest@11.3.5': + resolution: {integrity: sha512-cgwIRtKrpwhLoBi0CUNuY83DPGRMaWVjqVI/bGKsLJ4PzyWZNaEmhHroI2xlrVXkk6nFv0IsZpOp+ZWSWUS2AQ==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '>=6' + + '@octokit/plugin-request-log@5.3.1': + resolution: {integrity: sha512-n/lNeCtq+9ofhC15xzmJCNKP2BWTv8Ih2TTy+jatNCCq/gQP/V7rK3fjIfuz0pDWDALO/o/4QY4hyOF6TQQFUw==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '>=6' + + '@octokit/plugin-rest-endpoint-methods@13.2.6': + resolution: {integrity: sha512-wMsdyHMjSfKjGINkdGKki06VEkgdEldIGstIEyGX0wbYHGByOwN/KiM+hAAlUwAtPkP3gvXtVQA9L3ITdV2tVw==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '>=6' + + '@octokit/request-error@6.1.5': + resolution: {integrity: sha512-IlBTfGX8Yn/oFPMwSfvugfncK2EwRLjzbrpifNaMY8o/HTEAFqCA1FZxjD9cWvSKBHgrIhc4CSBIzMxiLsbzFQ==} + engines: {node: '>= 18'} + + '@octokit/request@9.1.3': + resolution: {integrity: sha512-V+TFhu5fdF3K58rs1pGUJIDH5RZLbZm5BI+MNF+6o/ssFNT4vWlCh/tVpF3NxGtP15HUxTTMUbsG5llAuU2CZA==} + engines: {node: '>= 18'} + + '@octokit/rest@21.0.2': + resolution: {integrity: sha512-+CiLisCoyWmYicH25y1cDfCrv41kRSvTq6pPWtRroRJzhsCZWZyCqGyI8foJT5LmScADSwRAnr/xo+eewL04wQ==} + engines: {node: '>= 18'} + + '@octokit/types@13.6.1': + resolution: {integrity: sha512-PHZE9Z+kWXb23Ndik8MKPirBPziOc0D2/3KH1P+6jK5nGWe96kadZuE4jev2/Jq7FvIfTlT2Ltg8Fv2x1v0a5g==} + '@openzeppelin/contracts@4.9.6': resolution: {integrity: sha512-xSmezSupL+y9VkHZJGDoCBpmnB2ogM13ccaYDWqJTfS3dbuHkgjuwDFUmaFauBCboQMGB/S5UqUl2y54X99BmA==} @@ -6205,9 +6511,6 @@ packages: '@socket.io/component-emitter@3.1.2': resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} - '@spruceid/siwe-parser@2.1.2': - resolution: {integrity: sha512-d/r3S1LwJyMaRAKQ0awmo9whfXeE88Qt00vRj91q5uv5ATtWIQEGJ67Yr5eSZw5zp1/fZCXZYuEckt8lSkereQ==} - '@stablelib/aead@1.0.1': resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==} @@ -6574,6 +6877,9 @@ packages: '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + '@types/mute-stream@0.0.4': + resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} + '@types/nlcst@2.0.3': resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} @@ -6679,6 +6985,9 @@ packages: '@types/vscode@1.93.0': resolution: {integrity: sha512-kUK6jAHSR5zY8ps42xuW89NLcBpw1kOabah7yv38J8MyiYuOHxLQBi0e7zeXbQgVefDy/mZZetqEFC+Fl5eIEQ==} + '@types/wrap-ansi@3.0.0': + resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} + '@types/ws@8.5.10': resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} @@ -6880,9 +7189,6 @@ packages: resolution: {integrity: sha512-UlsnEMT5wwFvmxEjX8s4oju7R3zadxNbZgsFeHEsjh7uknY2zgmUe1Lfc5XU6zyPb1Jx7Nqpdx1KN485ee8ogw==} engines: {node: '>=18'} - '@walletconnect/core@2.9.2': - resolution: {integrity: sha512-VARMPAx8sIgodeyngDHbealP3B621PQqjqKsByFUTOep8ZI1/R/20zU+cmq6j9RCrL+kLKZcrZqeVzs8Z7OlqQ==} - '@walletconnect/crypto@1.0.3': resolution: {integrity: sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g==} @@ -6898,14 +7204,6 @@ packages: '@walletconnect/ethereum-provider@2.16.1': resolution: {integrity: sha512-oD7DNCssUX3plS5gGUZ9JQ63muQB/vxO68X6RzD2wd8gBsYtSPw4BqYFc7KTO6dUizD6gfPirw32yW2pTvy92w==} - '@walletconnect/ethereum-provider@2.9.2': - resolution: {integrity: sha512-eO1dkhZffV1g7vpG19XUJTw09M/bwGUwwhy1mJ3AOPbOSbMPvwiCuRz2Kbtm1g9B0Jv15Dl+TvJ9vTgYF8zoZg==} - peerDependencies: - '@walletconnect/modal': '>=2' - peerDependenciesMeta: - '@walletconnect/modal': - optional: true - '@walletconnect/events@1.0.1': resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} @@ -6933,9 +7231,6 @@ packages: '@walletconnect/jsonrpc-utils@1.0.8': resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} - '@walletconnect/jsonrpc-ws-connection@1.0.13': - resolution: {integrity: sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==} - '@walletconnect/jsonrpc-ws-connection@1.0.14': resolution: {integrity: sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA==} @@ -6965,21 +7260,12 @@ packages: '@walletconnect/logger@2.1.2': resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} - '@walletconnect/modal-core@2.6.1': - resolution: {integrity: sha512-f2hYlJ5pwzGvjyaZ6BoGR5uiMgXzWXt6w6ktt1N8lmY6PiYp8whZgqx2hTxVWwVlsGnaIfh6UHp1hGnANx0eTQ==} - '@walletconnect/modal-core@2.6.2': resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==} - '@walletconnect/modal-ui@2.6.1': - resolution: {integrity: sha512-RFUOwDAMijSK8B7W3+KoLKaa1l+KEUG0LCrtHqaB0H0cLnhEGdLR+kdTdygw+W8+yYZbkM5tXBm7MlFbcuyitA==} - '@walletconnect/modal-ui@2.6.2': resolution: {integrity: sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==} - '@walletconnect/modal@2.6.1': - resolution: {integrity: sha512-G84tSzdPKAFk1zimgV7JzIUFT5olZUVtI3GcOk77OeLYjlMfnDT23RVRHm5EyCrjkptnvpD0wQScXePOFd2Xcw==} - '@walletconnect/modal@2.6.2': resolution: {integrity: sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==} @@ -7002,10 +7288,6 @@ packages: '@walletconnect/sign-client@2.16.1': resolution: {integrity: sha512-s2Tx2n2duxt+sHtuWXrN9yZVaHaYqcEcjwlTD+55/vs5NUPlISf+fFmZLwSeX1kUlrSBrAuxPUcqQuRTKcjLOA==} - '@walletconnect/sign-client@2.9.2': - resolution: {integrity: sha512-anRwnXKlR08lYllFMEarS01hp1gr6Q9XUgvacr749hoaC/AwGVlxYFdM8+MyYr3ozlA+2i599kjbK/mAebqdXg==} - deprecated: Reliability and performance greatly improved - please see https://github.com/WalletConnect/walletconnect-monorepo/releases - '@walletconnect/time@1.0.2': resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} @@ -7015,27 +7297,18 @@ packages: '@walletconnect/types@2.16.1': resolution: {integrity: sha512-9P4RG4VoDEF+yBF/n2TF12gsvT/aTaeZTVDb/AOayafqiPnmrQZMKmNCJJjq1sfdsDcHXFcZWMGsuCeSJCmrXA==} - '@walletconnect/types@2.9.2': - resolution: {integrity: sha512-7Rdn30amnJEEal4hk83cdwHUuxI1SWQ+K7fFFHBMqkuHLGi3tpMY6kpyfDxnUScYEZXqgRps4Jo5qQgnRqVM7A==} - '@walletconnect/universal-provider@2.11.0': resolution: {integrity: sha512-zgJv8jDvIMP4Qse/D9oIRXGdfoNqonsrjPZanQ/CHNe7oXGOBiQND2IIeX+tS0H7uNA0TPvctljCLiIN9nw4eA==} '@walletconnect/universal-provider@2.16.1': resolution: {integrity: sha512-q/tyWUVNenizuClEiaekx9FZj/STU1F3wpDK4PUIh3xh+OmUI5fw2dY3MaNDjyb5AyrS0M8BuQDeuoSuOR/Q7w==} - '@walletconnect/universal-provider@2.9.2': - resolution: {integrity: sha512-JmaolkO8D31UdRaQCHwlr8uIFUI5BYhBzqYFt54Mc6gbIa1tijGOmdyr6YhhFO70LPmS6gHIjljwOuEllmlrxw==} - '@walletconnect/utils@2.11.0': resolution: {integrity: sha512-hxkHPlTlDQILHfIKXlmzgNJau/YcSBC3XHUSuZuKZbNEw3duFT6h6pm3HT/1+j1a22IG05WDsNBuTCRkwss+BQ==} '@walletconnect/utils@2.16.1': resolution: {integrity: sha512-aoQirVoDoiiEtYeYDtNtQxFzwO/oCrz9zqeEEXYJaAwXlGVTS34KFe7W3/Rxd/pldTYKFOZsku2EzpISfH8Wsw==} - '@walletconnect/utils@2.9.2': - resolution: {integrity: sha512-D44hwXET/8JhhIjqljY6qxSu7xXnlPrf63UN/Qfl98vDjWlYVcDl2+JIQRxD9GPastw0S8XZXdRq59XDXLuZBg==} - '@walletconnect/window-getters@1.0.1': resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} @@ -7199,9 +7472,6 @@ packages: resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==} engines: {node: '>=0.3.0'} - aes-js@3.0.0: - resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} - aes-js@3.1.2: resolution: {integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==} @@ -7327,9 +7597,6 @@ packages: resolution: {integrity: sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==} engines: {node: '>=8'} - apg-js@4.4.0: - resolution: {integrity: sha512-fefmXFknJmtgtNEXfPwZKYkMFX4Fyeyz+fNF6JWp87biGOPslJbCBVU158zvKRZfHBKnJDy8CMM40oLFGkXT8Q==} - appdirsjs@1.2.7: resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} @@ -7461,6 +7728,9 @@ packages: async-mutex@0.2.6: resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==} + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -7580,9 +7850,6 @@ packages: base-x@3.0.10: resolution: {integrity: sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==} - base-x@4.0.0: - resolution: {integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==} - base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} @@ -7610,11 +7877,8 @@ packages: bcryptjs@2.4.3: resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==} - bech32@1.1.4: - resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} - - bech32@2.0.0: - resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} + before-after-hook@3.0.2: + resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==} better-path-resolve@1.0.0: resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} @@ -7639,14 +7903,6 @@ packages: bindings@1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - bip174@2.1.1: - resolution: {integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==} - engines: {node: '>=8.0.0'} - - bitcoinjs-lib@6.1.6: - resolution: {integrity: sha512-Fk8+Vc+e2rMoDU5gXkW9tD+313rhkm5h6N9HfZxXvYU9LedttVvmXKTgd9k5rsQJjkSfsv6XRM8uhJv94SrvcA==} - engines: {node: '>=8.0.0'} - bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} @@ -7745,15 +8001,9 @@ packages: bs58@4.0.1: resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} - bs58@5.0.0: - resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==} - bs58check@2.1.2: resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} - bs58check@3.0.1: - resolution: {integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==} - bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} @@ -7871,9 +8121,6 @@ packages: caniuse-lite@1.0.30001664: resolution: {integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==} - canonicalize@2.0.0: - resolution: {integrity: sha512-ulDEYPv7asdKvqahuAY35c1selLdzDwHqugK92hfkzvlDCwXRRelDkR+Er33md/PtnpqHemgkuDPanZ4fiYZ8w==} - ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -8065,6 +8312,11 @@ packages: client-only@0.0.1: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + clipanion@3.2.1: + resolution: {integrity: sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==} + peerDependencies: + typanion: '*' + clipboardy@3.0.0: resolution: {integrity: sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -8150,6 +8402,9 @@ packages: colorette@1.4.0: resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + colors@1.4.0: resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} engines: {node: '>=0.1.90'} @@ -8338,9 +8593,6 @@ packages: create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - cross-fetch@3.1.4: - resolution: {integrity: sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==} - cross-fetch@3.1.8: resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} @@ -8405,9 +8657,6 @@ packages: dataloader@1.4.0: resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - date-and-time@2.4.3: - resolution: {integrity: sha512-xkS/imTmsyEdpp9ie5oV5UWolg3XkYWNySbT2W4ESWr6v4V8YrsHbhpk9fIeQcr0NFTnYbQJLXlgU1zrLItysA==} - date-fns@2.30.0: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} @@ -8711,6 +8960,11 @@ packages: effect@3.8.4: resolution: {integrity: sha512-rOZ1XAi+Fb+fAHoUJ5FnJPSPZEBxVbCl5QWtOWFTgOeFHx0QpbK3pezWvq9OIxQPdwvSkPOw926qrs4xdD9dLA==} + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + electron-to-chromium@1.4.633: resolution: {integrity: sha512-7BvxzXrHFliyQ1oZc6NRMjyEaKOO1Ma1NY98sFZofogWlm+klLWSgrDw7EhatiMgi4R4NV+iWxDdxuIKXtPbOw==} @@ -8726,6 +8980,14 @@ packages: emmet@2.4.11: resolution: {integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==} + emnapi@1.3.1: + resolution: {integrity: sha512-8rnw2VLJmHAXBSyhtrL9O5aW1VdbXA1ovRslp0IyTwnM62Fz83jQIo+VaIObgzdo6r1A98J9AHEq4KTqIR67Aw==} + peerDependencies: + node-addon-api: '>= 6.1.0' + peerDependenciesMeta: + node-addon-api: + optional: true + emoji-regex@10.4.0: resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} @@ -8973,9 +9235,6 @@ packages: ethereumjs-util@6.2.1: resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==} - ethers@5.7.2: - resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} - ethers@6.13.2: resolution: {integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==} engines: {node: '>=14.0.0'} @@ -9155,6 +9414,9 @@ packages: file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + filename-regex@2.0.1: resolution: {integrity: sha512-BTCqyBaWBTsauvnHiE8i562+EdJj+oUpkqWp2R1iCoR8f6oo8STRu3of7WJJ0TqWtxN50a5YFpzYK4Jj9esYfQ==} engines: {node: '>=0.10.0'} @@ -9260,9 +9522,9 @@ packages: resolution: {integrity: sha512-W8+hV/qnShs4pZSIcHfYvKi7ds1FjNVW14XG5fMkkTBzbUGJh5BxbTc3KZZy7nWbPpaHLGnRszMZNZlLvi6qww==} hasBin: true - forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/1de6eecf821de7fe2c908cc48d3ab3dced20717f: - resolution: {tarball: https://codeload.github.com/foundry-rs/forge-std/tar.gz/1de6eecf821de7fe2c908cc48d3ab3dced20717f} - version: 1.9.3 + forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/0e7097750918380d84dd3cfdef595bee74dabb70: + resolution: {tarball: https://codeload.github.com/foundry-rs/forge-std/tar.gz/0e7097750918380d84dd3cfdef595bee74dabb70} + version: 1.9.4 form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} @@ -9794,9 +10056,6 @@ packages: engines: {node: '>=16.x'} hasBin: true - immediate@3.0.6: - resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} - immutable@4.3.7: resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} @@ -10277,6 +10536,11 @@ packages: resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} engines: {node: 20 || >=22} + jake@10.9.2: + resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} + engines: {node: '>=10'} + hasBin: true + jest-diff@29.7.0: resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -10324,9 +10588,6 @@ packages: joi@17.13.3: resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} - jose@4.15.9: - resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==} - joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} engines: {node: '>=10'} @@ -10451,9 +10712,6 @@ packages: jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - jszip@3.10.1: - resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} - keccak@3.0.4: resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} engines: {node: '>=10.0.0'} @@ -10499,15 +10757,6 @@ packages: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} - libsodium-wrappers@0.7.15: - resolution: {integrity: sha512-E4anqJQwcfiC6+Yrl01C1m8p99wEhLmJSs0VQqST66SbQXXBoaJY0pF4BNjRYa/sOQAxx6lXAaAFIlx+15tXJQ==} - - libsodium@0.7.15: - resolution: {integrity: sha512-sZwRknt/tUpE2AwzHq3jEyUU5uvIZHtSssktXq7owd++3CSgn8RGrv6UZJJBpP7+iBghBqe7Z06/2M31rI2NKw==} - - lie@3.3.0: - resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} - lighthouse-logger@1.4.2: resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} @@ -10542,9 +10791,6 @@ packages: lit-html@2.8.0: resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} - lit@2.7.6: - resolution: {integrity: sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==} - lit@2.8.0: resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} @@ -10588,6 +10834,9 @@ packages: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} @@ -11209,10 +11458,6 @@ packages: muggle-string@0.4.1: resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} - multiformats@11.0.2: - resolution: {integrity: sha512-b5mYMkOkARIuVZCpvijFj9a6m5wMVLC7cf/jIPd5D/ARDOfLC5+IFkbgDXQgcU2goIsTD/O9NY4DI/Mt4OGvlg==} - engines: {node: '>=16.0.0', npm: '>=7.0.0'} - multiformats@9.9.0: resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} @@ -11331,10 +11576,6 @@ packages: node-fetch-native@1.6.4: resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} - node-fetch@2.6.1: - resolution: {integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==} - engines: {node: 4.x || >=6.0.0} - node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -12402,9 +12643,6 @@ packages: readline@1.3.0: resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} - readonly-date@1.0.0: - resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==} - real-require@0.1.0: resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} engines: {node: '>= 12.13.0'} @@ -12753,6 +12991,11 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true + semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + semver@7.6.3: resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} @@ -12891,16 +13134,6 @@ packages: engines: {node: '>=12.0.0', npm: '>=5.6.0'} hasBin: true - siwe-recap@0.0.2-alpha.0: - resolution: {integrity: sha512-xqFUnvrACWW/Q4s5HQ02avg8IyH2RcgkUzfvN4scYaaHErotLVtTGDZkSS0sn/oNK4MXRt83lTqredsvXgt8iA==} - peerDependencies: - ethers: ^5.5.1 - - siwe@2.3.2: - resolution: {integrity: sha512-aSf+6+Latyttbj5nMu6GF3doMfv2UYj83hhwZgUF20ky6fTS83uVhkQABdIVnEuS8y1bBdk7p6ltb9SmlhTTlA==} - peerDependencies: - ethers: ^5.6.8 || ^6.0.8 - skin-tone@2.0.0: resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} engines: {node: '>=8'} @@ -13545,6 +13778,9 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} + toml@3.0.0: + resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} + totalist@3.0.1: resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} engines: {node: '>=6'} @@ -13595,9 +13831,6 @@ packages: tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - tslib@2.6.0: - resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} - tslib@2.7.0: resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} @@ -13665,6 +13898,9 @@ packages: tweetnacl@1.0.3: resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} + typanion@3.14.0: + resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} + type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} @@ -13732,9 +13968,6 @@ packages: peerDependencies: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x - typeforce@1.18.0: - resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} - typesafe-path@0.2.2: resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} @@ -13878,6 +14111,9 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + universal-user-agent@7.0.2: + resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==} + universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} @@ -14076,9 +14312,6 @@ packages: resolution: {integrity: sha512-SKfhk/LlaXzvtowJabLZwD4K6SGRYeoxA7KJeISlUMAB/NT4CBkZjMq3WceX2Ckm4llwqYVo8TICgsDYCBU2tA==} engines: {node: '>= 0.10.0'} - valid-url@1.0.9: - resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} - validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -14090,15 +14323,6 @@ packages: resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} engines: {node: '>= 0.10'} - valtio@1.11.0: - resolution: {integrity: sha512-65Yd0yU5qs86b5lN1eu/nzcTgQ9/6YnD6iO+DDaDbQLn1Zv2w12Gwk43WkPlUBxk5wL/6cD5YMFf7kj6HZ1Kpg==} - engines: {node: '>=12.20.0'} - peerDependencies: - react: '>=16.8' - peerDependenciesMeta: - react: - optional: true - valtio@1.11.2: resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==} engines: {node: '>=12.20.0'} @@ -14111,9 +14335,6 @@ packages: react: optional: true - varuint-bitcoin@1.1.2: - resolution: {integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==} - vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} @@ -14476,6 +14697,9 @@ packages: resolution: {integrity: sha512-dIyKWUumPFsGohdndZjDXRFaokUT/kQS+SavbbiXVAvA/eN4riX5QNdB6AhXQx37zNxluxQkuixZUgJ8adKjOg==} hasBin: true + wasm-sjlj@1.0.5: + resolution: {integrity: sha512-Z/MHJeOkAvJJVWnGX3/YZGYldGaawZbYHX4ldYG9kLhcdB8H31F5x66M7Zc4BP/7pg0aLsusQj1629m2B3Rilg==} + watchpack@2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} engines: {node: '>=10.13.0'} @@ -14640,18 +14864,6 @@ packages: utf-8-validate: optional: true - ws@7.4.6: - resolution: {integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==} - engines: {node: '>=8.3.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - ws@7.5.10: resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} engines: {node: '>=8.3.0'} @@ -14810,6 +15022,10 @@ packages: resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} + yoctocolors-cjs@2.1.2: + resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==} + engines: {node: '>=18'} + yoga-wasm-web@0.3.3: resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==} @@ -16167,35 +16383,6 @@ snapshots: '@colors/colors@1.5.0': optional: true - '@cosmjs/amino@0.30.1': - dependencies: - '@cosmjs/crypto': 0.30.1 - '@cosmjs/encoding': 0.30.1 - '@cosmjs/math': 0.30.1 - '@cosmjs/utils': 0.30.1 - - '@cosmjs/crypto@0.30.1': - dependencies: - '@cosmjs/encoding': 0.30.1 - '@cosmjs/math': 0.30.1 - '@cosmjs/utils': 0.30.1 - '@noble/hashes': 1.3.2 - bn.js: 5.2.1 - elliptic: 6.5.7 - libsodium-wrappers: 0.7.15 - - '@cosmjs/encoding@0.30.1': - dependencies: - base64-js: 1.5.1 - bech32: 1.1.4 - readonly-date: 1.0.0 - - '@cosmjs/math@0.30.1': - dependencies: - bn.js: 5.2.1 - - '@cosmjs/utils@0.30.1': {} - '@ctrl/tinycolor@4.1.0': {} '@effect/codemod@0.0.16(@babel/preset-env@7.25.4(@babel/core@7.25.2))': @@ -16775,11 +16962,6 @@ snapshots: dependencies: '@ethersproject/bytes': 5.7.0 - '@ethersproject/basex@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/bignumber@5.7.0': dependencies: '@ethersproject/bytes': 5.7.0 @@ -16794,19 +16976,6 @@ snapshots: dependencies: '@ethersproject/bignumber': 5.7.0 - '@ethersproject/contracts@5.7.0': - dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/hash@5.7.0': dependencies: '@ethersproject/abstract-signer': 5.7.0 @@ -16819,37 +16988,6 @@ snapshots: '@ethersproject/properties': 5.7.0 '@ethersproject/strings': 5.7.0 - '@ethersproject/hdnode@5.7.0': - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 - - '@ethersproject/json-wallets@5.7.0': - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - aes-js: 3.0.0 - scrypt-js: 3.0.1 - '@ethersproject/keccak256@5.7.0': dependencies: '@ethersproject/bytes': 5.7.0 @@ -16861,57 +16999,15 @@ snapshots: dependencies: '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/properties@5.7.0': dependencies: '@ethersproject/logger': 5.7.0 - '@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 - bech32: 1.1.4 - ws: 7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@ethersproject/random@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/rlp@5.7.0': dependencies: '@ethersproject/bytes': 5.7.0 '@ethersproject/logger': 5.7.0 - '@ethersproject/sha2@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - hash.js: 1.1.7 - '@ethersproject/signing-key@5.7.0': dependencies: '@ethersproject/bytes': 5.7.0 @@ -16921,15 +17017,6 @@ snapshots: elliptic: 6.5.4 hash.js: 1.1.7 - '@ethersproject/solidity@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/strings@5.7.0': dependencies: '@ethersproject/bytes': 5.7.0 @@ -16948,30 +17035,6 @@ snapshots: '@ethersproject/rlp': 5.7.0 '@ethersproject/signing-key': 5.7.0 - '@ethersproject/units@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - - '@ethersproject/wallet@5.7.0': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 - '@ethersproject/web@5.7.1': dependencies: '@ethersproject/base64': 5.7.0 @@ -16980,14 +17043,6 @@ snapshots: '@ethersproject/properties': 5.7.0 '@ethersproject/strings': 5.7.0 - '@ethersproject/wordlists@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@evmts/base@1.0.0-next.18(bufferutil@4.0.8)(esbuild@0.19.5)(fast-check@3.22.0)(solc@0.8.23-fixed)(typescript@5.6.2)(utf-8-validate@6.0.4)(webpack-sources@3.2.3)(zod@3.23.8)': dependencies: '@evmts/config': 1.0.0-next.17(bufferutil@4.0.8)(esbuild@0.19.5)(fast-check@3.22.0)(solc@0.8.23-fixed)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) @@ -17381,8 +17436,104 @@ snapshots: figures: 6.1.0 ink: 5.0.1(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4) + '@inquirer/checkbox@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/figures': 1.0.7 + '@inquirer/type': 2.0.0 + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.2 + + '@inquirer/confirm@4.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + + '@inquirer/core@9.2.1': + dependencies: + '@inquirer/figures': 1.0.7 + '@inquirer/type': 2.0.0 + '@types/mute-stream': 0.0.4 + '@types/node': 22.7.3 + '@types/wrap-ansi': 3.0.0 + ansi-escapes: 4.3.2 + cli-width: 4.1.0 + mute-stream: 1.0.0 + signal-exit: 4.1.0 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.2 + + '@inquirer/editor@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + external-editor: 3.1.0 + + '@inquirer/expand@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + yoctocolors-cjs: 2.1.2 + '@inquirer/figures@1.0.6': {} + '@inquirer/figures@1.0.7': {} + + '@inquirer/input@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + + '@inquirer/number@2.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + + '@inquirer/password@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + ansi-escapes: 4.3.2 + + '@inquirer/prompts@6.0.1': + dependencies: + '@inquirer/checkbox': 3.0.1 + '@inquirer/confirm': 4.0.1 + '@inquirer/editor': 3.0.1 + '@inquirer/expand': 3.0.1 + '@inquirer/input': 3.0.1 + '@inquirer/number': 2.0.1 + '@inquirer/password': 3.0.1 + '@inquirer/rawlist': 3.0.1 + '@inquirer/search': 2.0.1 + '@inquirer/select': 3.0.1 + + '@inquirer/rawlist@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/type': 2.0.0 + yoctocolors-cjs: 2.1.2 + + '@inquirer/search@2.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/figures': 1.0.7 + '@inquirer/type': 2.0.0 + yoctocolors-cjs: 2.1.2 + + '@inquirer/select@3.0.1': + dependencies: + '@inquirer/core': 9.2.1 + '@inquirer/figures': 1.0.7 + '@inquirer/type': 2.0.0 + ansi-escapes: 4.3.2 + yoctocolors-cjs: 2.1.2 + + '@inquirer/type@2.0.0': + dependencies: + mute-stream: 1.0.0 + '@ioredis/commands@1.2.0': optional: true @@ -17488,476 +17639,33 @@ snapshots: '@lit-labs/ssr-dom-shim@1.2.1': {} - '@lit-protocol/access-control-conditions@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/accs-schemas@0.0.15': + '@lit/reactive-element@1.6.3': dependencies: - ajv: 8.17.1 + '@lit-labs/ssr-dom-shim': 1.2.1 - '@lit-protocol/auth-browser@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@ljharb/through@2.3.13': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@ethersproject/strings': 5.7.0 - '@ethersproject/wallet': 5.7.0 - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc-browser': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - tslib: 1.14.1 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate + call-bind: 1.0.7 - '@lit-protocol/auth-helpers@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/access-control-conditions': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - siwe-recap: 0.0.2-alpha.0(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 2.6.0 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate + '@ltd/j-toml@1.38.0': {} - '@lit-protocol/bls-sdk@6.11.0': + '@manypkg/find-root@1.1.0': dependencies: - tslib: 1.14.1 - util: 0.12.5 + '@babel/runtime': 7.25.6 + '@types/node': 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 - '@lit-protocol/constants@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@manypkg/get-packages@1.1.3': dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate + '@babel/runtime': 7.25.6 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 - '@lit-protocol/contracts-sdk@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@cosmjs/amino': 0.30.1 - '@cosmjs/crypto': 0.30.1 - '@cosmjs/encoding': 0.30.1 - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - ajv: 8.17.1 - bitcoinjs-lib: 6.1.6 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jose: 4.15.9 - jszip: 3.10.1 - process: 0.11.10 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/contracts@0.0.63(typescript@5.6.2)': - dependencies: - typescript: 5.6.2 - - '@lit-protocol/core@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@cosmjs/amino': 0.30.1 - '@cosmjs/crypto': 0.30.1 - '@cosmjs/encoding': 0.30.1 - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/access-control-conditions': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/bls-sdk': 6.11.0 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/contracts-sdk': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/crypto': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/ecdsa-sdk': 6.11.0 - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/nacl': 6.11.0 - '@lit-protocol/sev-snp-utils-sdk': 6.11.0 - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - bitcoinjs-lib: 6.1.6 - bs58: 5.0.0 - cross-fetch: 3.1.4 - date-and-time: 2.4.3 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jose: 4.15.9 - jszip: 3.10.1 - multiformats: 9.9.0 - pako: 1.0.11 - process: 0.11.10 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/crypto@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/bls-sdk': 6.11.0 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/ecdsa-sdk': 6.11.0 - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/nacl': 6.11.0 - '@lit-protocol/sev-snp-utils-sdk': 6.11.0 - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - cross-fetch: 3.1.4 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - pako: 1.0.11 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/ecdsa-sdk@6.11.0': - dependencies: - tslib: 1.14.1 - util: 0.12.5 - - '@lit-protocol/encryption@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/bls-sdk': 6.11.0 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/crypto': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/ecdsa-sdk': 6.11.0 - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/nacl': 6.11.0 - '@lit-protocol/sev-snp-utils-sdk': 6.11.0 - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - cross-fetch: 3.1.4 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - pako: 1.0.11 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/lit-node-client-nodejs@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@cosmjs/amino': 0.30.1 - '@cosmjs/crypto': 0.30.1 - '@cosmjs/encoding': 0.30.1 - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@ethersproject/transactions': 5.7.0 - '@lit-protocol/access-control-conditions': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/auth-helpers': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/bls-sdk': 6.11.0 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/contracts-sdk': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/core': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/crypto': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/ecdsa-sdk': 6.11.0 - '@lit-protocol/encryption': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc-browser': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/nacl': 6.11.0 - '@lit-protocol/sev-snp-utils-sdk': 6.11.0 - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ajv: 8.17.1 - bitcoinjs-lib: 6.1.6 - bs58: 5.0.0 - cross-fetch: 3.1.4 - date-and-time: 2.4.3 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jose: 4.15.9 - jszip: 3.10.1 - multiformats: 9.9.0 - pako: 1.0.11 - process: 0.11.10 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - siwe-recap: 0.0.2-alpha.0(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 2.7.0 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/lit-node-client@6.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@cosmjs/amino': 0.30.1 - '@cosmjs/crypto': 0.30.1 - '@cosmjs/encoding': 0.30.1 - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wallet': 5.7.0 - '@lit-protocol/access-control-conditions': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/auth-browser': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/auth-helpers': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/bls-sdk': 6.11.0 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/contracts-sdk': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/core': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/crypto': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/ecdsa-sdk': 6.11.0 - '@lit-protocol/encryption': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/lit-node-client-nodejs': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/misc-browser': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/nacl': 6.11.0 - '@lit-protocol/sev-snp-utils-sdk': 6.11.0 - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@walletconnect/ethereum-provider': 2.9.2(@walletconnect/modal@2.6.1(react@18.3.1))(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) - '@walletconnect/modal': 2.6.1(react@18.3.1) - ajv: 8.17.1 - bitcoinjs-lib: 6.1.6 - bs58: 5.0.0 - cross-fetch: 3.1.4 - date-and-time: 2.4.3 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jose: 4.15.9 - jszip: 3.10.1 - multiformats: 9.9.0 - pako: 1.0.11 - process: 0.11.10 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - siwe-recap: 0.0.2-alpha.0(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tweetnacl: 1.0.3 - tweetnacl-util: 0.15.1 - util: 0.12.5 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - react - - typescript - - uWebSockets.js - - utf-8-validate - - '@lit-protocol/logger@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/misc-browser@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/uint8arrays': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/misc@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/constants': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - '@lit-protocol/logger': 6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) - '@lit-protocol/types': 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - ajv: 8.17.1 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - util: 0.12.5 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit-protocol/nacl@6.11.0': - dependencies: - tslib: 1.14.1 - - '@lit-protocol/sev-snp-utils-sdk@6.11.0': - dependencies: - cross-fetch: 3.1.4 - tslib: 1.14.1 - - '@lit-protocol/types@6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@lit-protocol/accs-schemas': 0.0.15 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - '@lit-protocol/uint8arrays@6.11.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@lit-protocol/accs-schemas': 0.0.15 - '@lit-protocol/contracts': 0.0.63(typescript@5.6.2) - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - jszip: 3.10.1 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - tslib: 1.14.1 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - '@lit/reactive-element@1.6.3': - dependencies: - '@lit-labs/ssr-dom-shim': 1.2.1 - - '@ljharb/through@2.3.13': - dependencies: - call-bind: 1.0.7 - - '@manypkg/find-root@1.1.0': - dependencies: - '@babel/runtime': 7.25.6 - '@types/node': 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - - '@manypkg/get-packages@1.1.3': - dependencies: - '@babel/runtime': 7.25.6 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - - '@mdx-js/mdx@3.0.1': + '@mdx-js/mdx@3.0.1': dependencies: '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.5 @@ -18163,6 +17871,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@monodon/rust@2.1.0(@napi-rs/cli@3.0.0-alpha.63(@emnapi/runtime@1.2.0)(emnapi@1.3.1(node-addon-api@7.1.1)))(@swc/core@1.7.28(@swc/helpers@0.5.13))': + dependencies: + '@ltd/j-toml': 1.38.0 + '@napi-rs/cli': 3.0.0-alpha.63(@emnapi/runtime@1.2.0)(emnapi@1.3.1(node-addon-api@7.1.1)) + '@nx/devkit': 20.0.12(nx@19.8.2(@swc/core@1.7.28(@swc/helpers@0.5.13))) + chalk: 4.1.2 + npm-run-path: 4.0.1 + nx: 19.8.2(@swc/core@1.7.28(@swc/helpers@0.5.13)) + semver: 7.5.4 + tslib: 2.7.0 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + '@motionone/animation@10.18.0': dependencies: '@motionone/easing': 10.18.0 @@ -18208,12 +17931,246 @@ snapshots: '@motionone/dom': 10.18.0 tslib: 2.7.0 + '@napi-rs/cli@3.0.0-alpha.63(@emnapi/runtime@1.2.0)(emnapi@1.3.1(node-addon-api@7.1.1))': + dependencies: + '@inquirer/prompts': 6.0.1 + '@napi-rs/cross-toolchain': 0.0.16 + '@napi-rs/wasm-tools': 0.0.2 + '@octokit/rest': 21.0.2 + clipanion: 3.2.1(typanion@3.14.0) + colorette: 2.0.20 + debug: 4.3.7(supports-color@8.1.1) + js-yaml: 4.1.0 + lodash-es: 4.17.21 + semver: 7.6.3 + toml: 3.0.0 + typanion: 3.14.0 + wasm-sjlj: 1.0.5 + optionalDependencies: + '@emnapi/runtime': 1.2.0 + emnapi: 1.3.1(node-addon-api@7.1.1) + transitivePeerDependencies: + - '@napi-rs/cross-toolchain-arm64-target-aarch64' + - '@napi-rs/cross-toolchain-arm64-target-armv7' + - '@napi-rs/cross-toolchain-arm64-target-x86_64' + - '@napi-rs/cross-toolchain-x64-target-aarch64' + - '@napi-rs/cross-toolchain-x64-target-armv7' + - '@napi-rs/cross-toolchain-x64-target-x86_64' + - supports-color + + '@napi-rs/cross-toolchain@0.0.16': + dependencies: + '@napi-rs/lzma': 1.4.1 + '@napi-rs/tar': 0.1.4 + debug: 4.3.7(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + '@napi-rs/lzma-android-arm-eabi@1.4.1': + optional: true + + '@napi-rs/lzma-android-arm64@1.4.1': + optional: true + + '@napi-rs/lzma-darwin-arm64@1.4.1': + optional: true + + '@napi-rs/lzma-darwin-x64@1.4.1': + optional: true + + '@napi-rs/lzma-freebsd-x64@1.4.1': + optional: true + + '@napi-rs/lzma-linux-arm-gnueabihf@1.4.1': + optional: true + + '@napi-rs/lzma-linux-arm64-gnu@1.4.1': + optional: true + + '@napi-rs/lzma-linux-arm64-musl@1.4.1': + optional: true + + '@napi-rs/lzma-linux-ppc64-gnu@1.4.1': + optional: true + + '@napi-rs/lzma-linux-riscv64-gnu@1.4.1': + optional: true + + '@napi-rs/lzma-linux-s390x-gnu@1.4.1': + optional: true + + '@napi-rs/lzma-linux-x64-gnu@1.4.1': + optional: true + + '@napi-rs/lzma-linux-x64-musl@1.4.1': + optional: true + + '@napi-rs/lzma-wasm32-wasi@1.4.1': + dependencies: + '@napi-rs/wasm-runtime': 0.2.4 + optional: true + + '@napi-rs/lzma-win32-arm64-msvc@1.4.1': + optional: true + + '@napi-rs/lzma-win32-ia32-msvc@1.4.1': + optional: true + + '@napi-rs/lzma-win32-x64-msvc@1.4.1': + optional: true + + '@napi-rs/lzma@1.4.1': + optionalDependencies: + '@napi-rs/lzma-android-arm-eabi': 1.4.1 + '@napi-rs/lzma-android-arm64': 1.4.1 + '@napi-rs/lzma-darwin-arm64': 1.4.1 + '@napi-rs/lzma-darwin-x64': 1.4.1 + '@napi-rs/lzma-freebsd-x64': 1.4.1 + '@napi-rs/lzma-linux-arm-gnueabihf': 1.4.1 + '@napi-rs/lzma-linux-arm64-gnu': 1.4.1 + '@napi-rs/lzma-linux-arm64-musl': 1.4.1 + '@napi-rs/lzma-linux-ppc64-gnu': 1.4.1 + '@napi-rs/lzma-linux-riscv64-gnu': 1.4.1 + '@napi-rs/lzma-linux-s390x-gnu': 1.4.1 + '@napi-rs/lzma-linux-x64-gnu': 1.4.1 + '@napi-rs/lzma-linux-x64-musl': 1.4.1 + '@napi-rs/lzma-wasm32-wasi': 1.4.1 + '@napi-rs/lzma-win32-arm64-msvc': 1.4.1 + '@napi-rs/lzma-win32-ia32-msvc': 1.4.1 + '@napi-rs/lzma-win32-x64-msvc': 1.4.1 + + '@napi-rs/tar-android-arm-eabi@0.1.4': + optional: true + + '@napi-rs/tar-android-arm64@0.1.4': + optional: true + + '@napi-rs/tar-darwin-arm64@0.1.4': + optional: true + + '@napi-rs/tar-darwin-x64@0.1.4': + optional: true + + '@napi-rs/tar-freebsd-x64@0.1.4': + optional: true + + '@napi-rs/tar-linux-arm-gnueabihf@0.1.4': + optional: true + + '@napi-rs/tar-linux-arm64-gnu@0.1.4': + optional: true + + '@napi-rs/tar-linux-arm64-musl@0.1.4': + optional: true + + '@napi-rs/tar-linux-ppc64-gnu@0.1.4': + optional: true + + '@napi-rs/tar-linux-s390x-gnu@0.1.4': + optional: true + + '@napi-rs/tar-linux-x64-gnu@0.1.4': + optional: true + + '@napi-rs/tar-linux-x64-musl@0.1.4': + optional: true + + '@napi-rs/tar-wasm32-wasi@0.1.4': + dependencies: + '@napi-rs/wasm-runtime': 0.2.4 + optional: true + + '@napi-rs/tar-win32-arm64-msvc@0.1.4': + optional: true + + '@napi-rs/tar-win32-ia32-msvc@0.1.4': + optional: true + + '@napi-rs/tar-win32-x64-msvc@0.1.4': + optional: true + + '@napi-rs/tar@0.1.4': + optionalDependencies: + '@napi-rs/tar-android-arm-eabi': 0.1.4 + '@napi-rs/tar-android-arm64': 0.1.4 + '@napi-rs/tar-darwin-arm64': 0.1.4 + '@napi-rs/tar-darwin-x64': 0.1.4 + '@napi-rs/tar-freebsd-x64': 0.1.4 + '@napi-rs/tar-linux-arm-gnueabihf': 0.1.4 + '@napi-rs/tar-linux-arm64-gnu': 0.1.4 + '@napi-rs/tar-linux-arm64-musl': 0.1.4 + '@napi-rs/tar-linux-ppc64-gnu': 0.1.4 + '@napi-rs/tar-linux-s390x-gnu': 0.1.4 + '@napi-rs/tar-linux-x64-gnu': 0.1.4 + '@napi-rs/tar-linux-x64-musl': 0.1.4 + '@napi-rs/tar-wasm32-wasi': 0.1.4 + '@napi-rs/tar-win32-arm64-msvc': 0.1.4 + '@napi-rs/tar-win32-ia32-msvc': 0.1.4 + '@napi-rs/tar-win32-x64-msvc': 0.1.4 + '@napi-rs/wasm-runtime@0.2.4': dependencies: '@emnapi/core': 1.2.0 '@emnapi/runtime': 1.2.0 '@tybys/wasm-util': 0.9.0 + '@napi-rs/wasm-tools-android-arm-eabi@0.0.2': + optional: true + + '@napi-rs/wasm-tools-android-arm64@0.0.2': + optional: true + + '@napi-rs/wasm-tools-darwin-arm64@0.0.2': + optional: true + + '@napi-rs/wasm-tools-darwin-x64@0.0.2': + optional: true + + '@napi-rs/wasm-tools-freebsd-x64@0.0.2': + optional: true + + '@napi-rs/wasm-tools-linux-arm64-gnu@0.0.2': + optional: true + + '@napi-rs/wasm-tools-linux-arm64-musl@0.0.2': + optional: true + + '@napi-rs/wasm-tools-linux-x64-gnu@0.0.2': + optional: true + + '@napi-rs/wasm-tools-linux-x64-musl@0.0.2': + optional: true + + '@napi-rs/wasm-tools-wasm32-wasi@0.0.2': + dependencies: + '@napi-rs/wasm-runtime': 0.2.4 + optional: true + + '@napi-rs/wasm-tools-win32-arm64-msvc@0.0.2': + optional: true + + '@napi-rs/wasm-tools-win32-ia32-msvc@0.0.2': + optional: true + + '@napi-rs/wasm-tools-win32-x64-msvc@0.0.2': + optional: true + + '@napi-rs/wasm-tools@0.0.2': + optionalDependencies: + '@napi-rs/wasm-tools-android-arm-eabi': 0.0.2 + '@napi-rs/wasm-tools-android-arm64': 0.0.2 + '@napi-rs/wasm-tools-darwin-arm64': 0.0.2 + '@napi-rs/wasm-tools-darwin-x64': 0.0.2 + '@napi-rs/wasm-tools-freebsd-x64': 0.0.2 + '@napi-rs/wasm-tools-linux-arm64-gnu': 0.0.2 + '@napi-rs/wasm-tools-linux-arm64-musl': 0.0.2 + '@napi-rs/wasm-tools-linux-x64-gnu': 0.0.2 + '@napi-rs/wasm-tools-linux-x64-musl': 0.0.2 + '@napi-rs/wasm-tools-wasm32-wasi': 0.0.2 + '@napi-rs/wasm-tools-win32-arm64-msvc': 0.0.2 + '@napi-rs/wasm-tools-win32-ia32-msvc': 0.0.2 + '@napi-rs/wasm-tools-win32-x64-msvc': 0.0.2 + '@next/env@14.2.13': {} '@next/swc-darwin-arm64@14.2.13': @@ -18372,6 +18329,18 @@ snapshots: - '@swc/core' - debug + '@nx/devkit@20.0.12(nx@19.8.2(@swc/core@1.7.28(@swc/helpers@0.5.13)))': + dependencies: + ejs: 3.1.10 + enquirer: 2.3.6 + ignore: 5.3.2 + minimatch: 9.0.3 + nx: 19.8.2(@swc/core@1.7.28(@swc/helpers@0.5.13)) + semver: 7.6.3 + tmp: 0.2.3 + tslib: 2.7.0 + yargs-parser: 21.1.1 + '@nx/nx-darwin-arm64@19.8.2': optional: true @@ -18402,6 +18371,67 @@ snapshots: '@nx/nx-win32-x64-msvc@19.8.2': optional: true + '@octokit/auth-token@5.1.1': {} + + '@octokit/core@6.1.2': + dependencies: + '@octokit/auth-token': 5.1.1 + '@octokit/graphql': 8.1.1 + '@octokit/request': 9.1.3 + '@octokit/request-error': 6.1.5 + '@octokit/types': 13.6.1 + before-after-hook: 3.0.2 + universal-user-agent: 7.0.2 + + '@octokit/endpoint@10.1.1': + dependencies: + '@octokit/types': 13.6.1 + universal-user-agent: 7.0.2 + + '@octokit/graphql@8.1.1': + dependencies: + '@octokit/request': 9.1.3 + '@octokit/types': 13.6.1 + universal-user-agent: 7.0.2 + + '@octokit/openapi-types@22.2.0': {} + + '@octokit/plugin-paginate-rest@11.3.5(@octokit/core@6.1.2)': + dependencies: + '@octokit/core': 6.1.2 + '@octokit/types': 13.6.1 + + '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.2)': + dependencies: + '@octokit/core': 6.1.2 + + '@octokit/plugin-rest-endpoint-methods@13.2.6(@octokit/core@6.1.2)': + dependencies: + '@octokit/core': 6.1.2 + '@octokit/types': 13.6.1 + + '@octokit/request-error@6.1.5': + dependencies: + '@octokit/types': 13.6.1 + + '@octokit/request@9.1.3': + dependencies: + '@octokit/endpoint': 10.1.1 + '@octokit/request-error': 6.1.5 + '@octokit/types': 13.6.1 + universal-user-agent: 7.0.2 + + '@octokit/rest@21.0.2': + dependencies: + '@octokit/core': 6.1.2 + '@octokit/plugin-paginate-rest': 11.3.5(@octokit/core@6.1.2) + '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.2) + '@octokit/plugin-rest-endpoint-methods': 13.2.6(@octokit/core@6.1.2) + + '@octokit/types@13.6.1': + dependencies: + '@octokit/openapi-types': 22.2.0 + '@openzeppelin/contracts@4.9.6': {} '@openzeppelin/contracts@5.0.2': {} @@ -19211,23 +19241,6 @@ snapshots: - supports-color - utf-8-validate - '@react-native-community/cli-server-api@14.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)': - dependencies: - '@react-native-community/cli-debugger-ui': 14.1.0 - '@react-native-community/cli-tools': 14.1.0 - compression: 1.7.4 - connect: 3.7.0 - errorhandler: 1.5.1 - nocache: 3.0.4 - pretty-format: 26.6.2 - serve-static: 1.16.2 - ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - optional: true - '@react-native-community/cli-tools@14.1.0': dependencies: appdirsjs: 1.2.7 @@ -19269,31 +19282,6 @@ snapshots: - typescript - utf-8-validate - '@react-native-community/cli@14.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)': - dependencies: - '@react-native-community/cli-clean': 14.1.0 - '@react-native-community/cli-config': 14.1.0(typescript@5.6.2) - '@react-native-community/cli-debugger-ui': 14.1.0 - '@react-native-community/cli-doctor': 14.1.0(typescript@5.6.2) - '@react-native-community/cli-server-api': 14.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@react-native-community/cli-tools': 14.1.0 - '@react-native-community/cli-types': 14.1.0 - chalk: 4.1.2 - commander: 9.5.0 - deepmerge: 4.3.1 - execa: 5.1.1 - find-up: 5.0.0 - fs-extra: 8.1.0 - graceful-fs: 4.2.11 - prompts: 2.4.2 - semver: 7.6.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - typescript - - utf-8-validate - optional: true - '@react-native/assets-registry@0.75.3': {} '@react-native/babel-plugin-codegen@0.75.3(@babel/preset-env@7.25.4(@babel/core@7.25.2))': @@ -19389,28 +19377,6 @@ snapshots: - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(bufferutil@4.0.8)(utf-8-validate@6.0.4)': - dependencies: - '@react-native-community/cli-server-api': 14.1.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@react-native-community/cli-tools': 14.1.0 - '@react-native/dev-middleware': 0.75.3(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@react-native/metro-babel-transformer': 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2)) - chalk: 4.1.2 - execa: 5.1.1 - metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4) - metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4) - metro-core: 0.80.12 - node-fetch: 2.7.0 - readline: 1.3.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - optional: true - '@react-native/debugger-frontend@0.75.3': {} '@react-native/dev-middleware@0.75.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -19433,27 +19399,6 @@ snapshots: - supports-color - utf-8-validate - '@react-native/dev-middleware@0.75.3(bufferutil@4.0.8)(utf-8-validate@6.0.4)': - dependencies: - '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.75.3 - chrome-launcher: 0.15.2 - chromium-edge-launcher: 0.2.0 - connect: 3.7.0 - debug: 2.6.9 - node-fetch: 2.7.0 - nullthrows: 1.1.1 - open: 7.4.2 - selfsigned: 2.4.1 - serve-static: 1.16.2 - ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - optional: true - '@react-native/gradle-plugin@0.75.3': {} '@react-native/js-polyfills@0.75.3': {} @@ -19479,16 +19424,6 @@ snapshots: optionalDependencies: '@types/react': 18.3.9 - '@react-native/virtualized-lists@0.75.3(@types/react@18.3.9)(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)': - dependencies: - invariant: 2.2.4 - nullthrows: 1.1.1 - react: 18.3.1 - react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4) - optionalDependencies: - '@types/react': 18.3.9 - optional: true - '@rollup/plugin-inject@5.0.5(rollup@4.22.4)': dependencies: '@rollup/pluginutils': 5.1.2(rollup@4.22.4) @@ -19585,20 +19520,10 @@ snapshots: - utf-8-validate - zod - '@safe-global/safe-apps-provider@0.18.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8)': - dependencies: - '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) - events: 3.3.0 - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod - - '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8)': + '@safe-global/safe-apps-sdk@8.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8)': dependencies: '@safe-global/safe-gateway-typescript-sdk': 3.22.2 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) transitivePeerDependencies: - bufferutil - typescript @@ -19615,16 +19540,6 @@ snapshots: - utf-8-validate - zod - '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8)': - dependencies: - '@safe-global/safe-gateway-typescript-sdk': 3.22.2 - viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) - transitivePeerDependencies: - - bufferutil - - typescript - - utf-8-validate - - zod - '@safe-global/safe-gateway-typescript-sdk@3.22.2': {} '@scure/base@1.1.9': {} @@ -19779,13 +19694,6 @@ snapshots: '@socket.io/component-emitter@3.1.2': {} - '@spruceid/siwe-parser@2.1.2': - dependencies: - '@noble/hashes': 1.3.2 - apg-js: 4.4.0 - uri-js: 4.4.1 - valid-url: 1.0.9 - '@stablelib/aead@1.0.1': {} '@stablelib/binary@1.0.1': @@ -19987,19 +19895,19 @@ snapshots: dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1))': + '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1))': dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1) - '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)': + '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)': dependencies: '@tanstack/query-core': 4.36.1 react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) optionalDependencies: react-dom: 18.3.1(react@18.3.1) - react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4) + react-native: 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10) '@tanstack/react-query@5.56.2(react@18.3.1)': dependencies: @@ -20195,6 +20103,10 @@ snapshots: '@types/ms@0.7.34': {} + '@types/mute-stream@0.0.4': + dependencies: + '@types/node': 22.7.3 + '@types/nlcst@2.0.3': dependencies: '@types/unist': 3.0.3 @@ -20304,6 +20216,8 @@ snapshots: '@types/vscode@1.93.0': {} + '@types/wrap-ansi@3.0.0': {} + '@types/ws@8.5.10': dependencies: '@types/node': 22.7.3 @@ -20582,18 +20496,18 @@ snapshots: '@vue/shared@3.5.9': {} - '@wagmi/connectors@3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': + '@wagmi/connectors@3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: '@coinbase/wallet-sdk': 3.9.3 - '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) - '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4) + '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0 '@walletconnect/modal': 2.6.2(@types/react@18.3.9)(react@18.3.1) - '@walletconnect/utils': 2.11.0 + '@walletconnect/utils': 2.11.0(ioredis@5.4.1) abitype: 0.8.7(typescript@5.6.2)(zod@3.23.8) eventemitter3: 4.0.7 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -20619,18 +20533,18 @@ snapshots: - utf-8-validate - zod - '@wagmi/connectors@3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': + '@wagmi/connectors@3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: '@coinbase/wallet-sdk': 3.9.3 - '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) - '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) - '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4) + '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) + '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0 '@walletconnect/modal': 2.6.2(@types/react@18.3.9)(react@18.3.1) - '@walletconnect/utils': 2.11.0 + '@walletconnect/utils': 2.11.0(ioredis@5.4.1) abitype: 0.8.7(typescript@5.6.2)(zod@3.23.8) eventemitter3: 4.0.7 - viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -20695,12 +20609,12 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': + '@wagmi/core@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: - '@wagmi/connectors': 3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@wagmi/connectors': 3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) abitype: 0.8.7(typescript@5.6.2)(zod@3.23.8) eventemitter3: 4.0.7 - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) zustand: 4.4.1(@types/react@18.3.9)(react@18.3.1) optionalDependencies: typescript: 5.6.2 @@ -20728,12 +20642,12 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8)': + '@wagmi/core@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: - '@wagmi/connectors': 3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@wagmi/connectors': 3.1.11(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) abitype: 0.8.7(typescript@5.6.2)(zod@3.23.8) eventemitter3: 4.0.7 - viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) zustand: 4.4.1(@types/react@18.3.9)(react@18.3.1) optionalDependencies: typescript: 5.6.2 @@ -20775,21 +20689,21 @@ snapshots: - immer - react - '@walletconnect/core@2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)': + '@walletconnect/core@2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.4.1) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.11 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 + '@walletconnect/types': 2.11.0(ioredis@5.4.1) + '@walletconnect/utils': 2.11.0(ioredis@5.4.1) events: 3.3.0 isomorphic-unfetch: 3.1.0 lodash.isequal: 4.5.0 @@ -20849,42 +20763,6 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/core@2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': - dependencies: - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/jsonrpc-ws-connection': 1.0.13(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.4.1) - '@walletconnect/logger': 2.1.2 - '@walletconnect/relay-api': 1.0.11 - '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.2(ioredis@5.4.1) - '@walletconnect/utils': 2.9.2(ioredis@5.4.1) - events: 3.3.0 - lodash.isequal: 4.5.0 - uint8arrays: 3.1.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - ioredis - - uWebSockets.js - - utf-8-validate - '@walletconnect/crypto@1.0.3': dependencies: '@walletconnect/encoding': 1.0.2 @@ -20904,17 +20782,17 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/ethereum-provider@2.11.0(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@6.0.4)': + '@walletconnect/ethereum-provider@2.11.0(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(@types/react@18.3.9)(react@18.3.1) - '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@walletconnect/types': 2.11.0 - '@walletconnect/universal-provider': 2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@walletconnect/utils': 2.11.0 + '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(ioredis@5.4.1) + '@walletconnect/universal-provider': 2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.11.0(ioredis@5.4.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -20970,38 +20848,6 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/ethereum-provider@2.9.2(@walletconnect/modal@2.6.1(react@18.3.1))(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': - dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.8 - '@walletconnect/jsonrpc-provider': 1.0.14 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/sign-client': 2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.9.2(ioredis@5.4.1) - '@walletconnect/universal-provider': 2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.9.2(ioredis@5.4.1) - events: 3.3.0 - optionalDependencies: - '@walletconnect/modal': 2.6.1(react@18.3.1) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - uWebSockets.js - - utf-8-validate - '@walletconnect/events@1.0.1': dependencies: keyvaluestorage-interface: 1.0.0 @@ -21056,17 +20902,6 @@ snapshots: '@walletconnect/jsonrpc-types': 1.0.4 tslib: 1.14.1 - '@walletconnect/jsonrpc-ws-connection@1.0.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - events: 3.3.0 - tslib: 1.14.1 - ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 @@ -21077,16 +20912,6 @@ snapshots: - bufferutil - utf-8-validate - '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@6.0.4)': - dependencies: - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/safe-json': 1.0.2 - events: 3.3.0 - ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - '@walletconnect/keyvaluestorage@1.1.1(ioredis@5.4.1)': dependencies: '@walletconnect/safe-json': 1.0.2 @@ -21159,12 +20984,6 @@ snapshots: '@walletconnect/safe-json': 1.0.2 pino: 7.11.0 - '@walletconnect/modal-core@2.6.1(react@18.3.1)': - dependencies: - valtio: 1.11.0(react@18.3.1) - transitivePeerDependencies: - - react - '@walletconnect/modal-core@2.6.2(@types/react@18.3.9)(react@18.3.1)': dependencies: valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -21172,15 +20991,6 @@ snapshots: - '@types/react' - react - '@walletconnect/modal-ui@2.6.1(react@18.3.1)': - dependencies: - '@walletconnect/modal-core': 2.6.1(react@18.3.1) - lit: 2.7.6 - motion: 10.16.2 - qrcode: 1.5.3 - transitivePeerDependencies: - - react - '@walletconnect/modal-ui@2.6.2(@types/react@18.3.9)(react@18.3.1)': dependencies: '@walletconnect/modal-core': 2.6.2(@types/react@18.3.9)(react@18.3.1) @@ -21191,13 +21001,6 @@ snapshots: - '@types/react' - react - '@walletconnect/modal@2.6.1(react@18.3.1)': - dependencies: - '@walletconnect/modal-core': 2.6.1(react@18.3.1) - '@walletconnect/modal-ui': 2.6.1(react@18.3.1) - transitivePeerDependencies: - - react - '@walletconnect/modal@2.6.2(@types/react@18.3.9)(react@18.3.1)': dependencies: '@walletconnect/modal-core': 2.6.2(@types/react@18.3.9)(react@18.3.1) @@ -21230,16 +21033,16 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)': + '@walletconnect/sign-client@2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 + '@walletconnect/types': 2.11.0(ioredis@5.4.1) + '@walletconnect/utils': 2.11.0(ioredis@5.4.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21289,40 +21092,11 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/sign-client@2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': - dependencies: - '@walletconnect/core': 2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.1.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.2(ioredis@5.4.1) - '@walletconnect/utils': 2.9.2(ioredis@5.4.1) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - ioredis - - uWebSockets.js - - utf-8-validate - '@walletconnect/time@1.0.2': dependencies: tslib: 1.14.1 - '@walletconnect/types@2.11.0': + '@walletconnect/types@2.11.0(ioredis@5.4.1)': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 @@ -21370,40 +21144,16 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/types@2.9.2(ioredis@5.4.1)': - dependencies: - '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.4.1) - '@walletconnect/logger': 2.1.2 - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - ioredis - - uWebSockets.js - - '@walletconnect/universal-provider@2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)': + '@walletconnect/universal-provider@2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 + '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(ioredis@5.4.1) + '@walletconnect/utils': 2.11.0(ioredis@5.4.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21454,37 +21204,7 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/universal-provider@2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10)': - dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.8 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.9.2(bufferutil@4.0.8)(ioredis@5.4.1)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.9.2(ioredis@5.4.1) - '@walletconnect/utils': 2.9.2(ioredis@5.4.1) - events: 3.3.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - ioredis - - uWebSockets.js - - utf-8-validate - - '@walletconnect/utils@2.11.0': + '@walletconnect/utils@2.11.0(ioredis@5.4.1)': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -21494,7 +21214,7 @@ snapshots: '@walletconnect/relay-api': 1.0.11 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0 + '@walletconnect/types': 2.11.0(ioredis@5.4.1) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -21550,38 +21270,6 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/utils@2.9.2(ioredis@5.4.1)': - dependencies: - '@stablelib/chacha20poly1305': 1.0.1 - '@stablelib/hkdf': 1.0.1 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.11 - '@walletconnect/safe-json': 1.0.2 - '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.2(ioredis@5.4.1) - '@walletconnect/window-getters': 1.0.1 - '@walletconnect/window-metadata': 1.0.1 - detect-browser: 5.3.0 - query-string: 7.1.3 - uint8arrays: 3.1.0 - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@upstash/redis' - - '@vercel/kv' - - ioredis - - uWebSockets.js - '@walletconnect/window-getters@1.0.1': dependencies: tslib: 1.14.1 @@ -21739,8 +21427,6 @@ snapshots: adm-zip@0.4.16: {} - aes-js@3.0.0: {} - aes-js@3.1.2: {} aes-js@4.0.0-beta.5: {} @@ -21865,8 +21551,6 @@ snapshots: apache-md5@1.1.8: {} - apg-js@4.4.0: {} - appdirsjs@1.2.7: {} arch@2.2.0: {} @@ -22056,6 +21740,8 @@ snapshots: dependencies: tslib: 2.7.0 + async@3.2.6: {} + asynckit@0.4.0: {} atob@2.1.2: {} @@ -22277,8 +21963,6 @@ snapshots: dependencies: safe-buffer: 5.2.1 - base-x@4.0.0: {} - base64-js@1.5.1: {} base@0.11.2: @@ -22309,9 +21993,7 @@ snapshots: bcryptjs@2.4.3: {} - bech32@1.1.4: {} - - bech32@2.0.0: {} + before-after-hook@3.0.2: {} better-path-resolve@1.0.0: dependencies: @@ -22336,17 +22018,6 @@ snapshots: file-uri-to-path: 1.0.0 optional: true - bip174@2.1.1: {} - - bitcoinjs-lib@6.1.6: - dependencies: - '@noble/hashes': 1.3.2 - bech32: 2.0.0 - bip174: 2.1.1 - bs58check: 3.0.1 - typeforce: 1.18.0 - varuint-bitcoin: 1.1.2 - bl@4.1.0: dependencies: buffer: 5.7.1 @@ -22530,21 +22201,12 @@ snapshots: dependencies: base-x: 3.0.10 - bs58@5.0.0: - dependencies: - base-x: 4.0.0 - bs58check@2.1.2: dependencies: bs58: 4.0.1 create-hash: 1.2.0 safe-buffer: 5.2.1 - bs58check@3.0.1: - dependencies: - '@noble/hashes': 1.3.2 - bs58: 5.0.0 - bser@2.1.1: dependencies: node-int64: 0.4.0 @@ -22660,8 +22322,6 @@ snapshots: caniuse-lite@1.0.30001664: {} - canonicalize@2.0.0: {} - ccount@2.0.1: {} cfonts@3.3.0: @@ -22907,6 +22567,10 @@ snapshots: client-only@0.0.1: {} + clipanion@3.2.1(typanion@3.14.0): + dependencies: + typanion: 3.14.0 + clipboardy@3.0.0: dependencies: arch: 2.2.0 @@ -23007,6 +22671,8 @@ snapshots: colorette@1.4.0: {} + colorette@2.0.20: {} + colors@1.4.0: {} combined-stream@1.0.8: @@ -23199,10 +22865,6 @@ snapshots: create-require@1.1.1: {} - cross-fetch@3.1.4: - dependencies: - node-fetch: 2.6.1 - cross-fetch@3.1.8: dependencies: node-fetch: 2.7.0 @@ -23279,8 +22941,6 @@ snapshots: dataloader@1.4.0: {} - date-and-time@2.4.3: {} - date-fns@2.30.0: dependencies: '@babel/runtime': 7.25.6 @@ -23548,6 +23208,10 @@ snapshots: effect@3.8.4: {} + ejs@3.1.10: + dependencies: + jake: 10.9.2 + electron-to-chromium@1.4.633: {} electron-to-chromium@1.5.29: {} @@ -23577,6 +23241,10 @@ snapshots: '@emmetio/abbreviation': 2.3.3 '@emmetio/css-abbreviation': 2.1.8 + emnapi@1.3.1(node-addon-api@7.1.1): + optionalDependencies: + node-addon-api: 7.1.1 + emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -23954,42 +23622,6 @@ snapshots: ethjs-util: 0.1.6 rlp: 2.2.7 - ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): - dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/solidity': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/units': 5.7.0 - '@ethersproject/wallet': 5.7.0 - '@ethersproject/web': 5.7.1 - '@ethersproject/wordlists': 5.7.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@adraffy/ens-normalize': 1.10.1 @@ -24262,6 +23894,10 @@ snapshots: file-uri-to-path@1.0.0: optional: true + filelist@1.0.4: + dependencies: + minimatch: 5.1.6 + filename-regex@2.0.1: optional: true @@ -24387,7 +24023,7 @@ snapshots: transitivePeerDependencies: - debug - forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/1de6eecf821de7fe2c908cc48d3ab3dced20717f: {} + forge-std@https://codeload.github.com/foundry-rs/forge-std/tar.gz/0e7097750918380d84dd3cfdef595bee74dabb70: {} form-data@4.0.0: dependencies: @@ -25159,8 +24795,6 @@ snapshots: dependencies: queue: 6.0.2 - immediate@3.0.6: {} - immutable@4.3.7: {} import-fresh@2.0.0: @@ -25572,13 +25206,17 @@ snapshots: transitivePeerDependencies: - encoding + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + dependencies: + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)): dependencies: ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) - isows@1.0.3(ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@6.0.4)): + isows@1.0.3(ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: - ws: 8.14.2(bufferutil@4.0.8)(utf-8-validate@6.0.4) + ws: 8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) isows@1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: @@ -25627,6 +25265,13 @@ snapshots: dependencies: '@isaacs/cliui': 8.0.2 + jake@10.9.2: + dependencies: + async: 3.2.6 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 + jest-diff@29.7.0: dependencies: chalk: 4.1.2 @@ -25706,8 +25351,6 @@ snapshots: '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - jose@4.15.9: {} - joycon@3.1.1: {} js-cookie@2.2.1: {} @@ -25856,13 +25499,6 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jszip@3.10.1: - dependencies: - lie: 3.3.0 - pako: 1.0.11 - readable-stream: 2.3.8 - setimmediate: 1.0.5 - keccak@3.0.4: dependencies: node-addon-api: 2.0.2 @@ -25900,16 +25536,6 @@ snapshots: leven@3.1.0: {} - libsodium-wrappers@0.7.15: - dependencies: - libsodium: 0.7.15 - - libsodium@0.7.15: {} - - lie@3.3.0: - dependencies: - immediate: 3.0.6 - lighthouse-logger@1.4.2: dependencies: debug: 2.6.9 @@ -25966,12 +25592,6 @@ snapshots: dependencies: '@types/trusted-types': 2.0.7 - lit@2.7.6: - dependencies: - '@lit/reactive-element': 1.6.3 - lit-element: 3.3.3 - lit-html: 2.8.0 - lit@2.8.0: dependencies: '@lit/reactive-element': 1.6.3 @@ -26029,6 +25649,8 @@ snapshots: dependencies: p-locate: 5.0.0 + lodash-es@4.17.21: {} + lodash.debounce@4.0.8: {} lodash.defaults@4.2.0: @@ -26443,22 +26065,6 @@ snapshots: - supports-color - utf-8-validate - metro-config@0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - connect: 3.7.0 - cosmiconfig: 5.2.1 - flow-enums-runtime: 0.0.6 - jest-validate: 29.7.0 - metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4) - metro-cache: 0.80.12 - metro-core: 0.80.12 - metro-runtime: 0.80.12 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - optional: true - metro-core@0.80.12: dependencies: flow-enums-runtime: 0.0.6 @@ -26554,27 +26160,6 @@ snapshots: - supports-color - utf-8-validate - metro-transform-worker@0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 - flow-enums-runtime: 0.0.6 - metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4) - metro-babel-transformer: 0.80.12 - metro-cache: 0.80.12 - metro-cache-key: 0.80.12 - metro-minify-terser: 0.80.12 - metro-source-map: 0.80.12 - metro-transform-plugins: 0.80.12 - nullthrows: 1.1.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - optional: true - metro@0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@babel/code-frame': 7.24.7 @@ -26624,56 +26209,6 @@ snapshots: - supports-color - utf-8-validate - metro@0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 - accepts: 1.3.8 - chalk: 4.1.2 - ci-info: 2.0.0 - connect: 3.7.0 - debug: 2.6.9 - denodeify: 1.2.1 - error-stack-parser: 2.1.4 - flow-enums-runtime: 0.0.6 - graceful-fs: 4.2.11 - hermes-parser: 0.23.1 - image-size: 1.1.1 - invariant: 2.2.4 - jest-worker: 29.7.0 - jsc-safe-url: 0.2.4 - lodash.throttle: 4.1.1 - metro-babel-transformer: 0.80.12 - metro-cache: 0.80.12 - metro-cache-key: 0.80.12 - metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4) - metro-core: 0.80.12 - metro-file-map: 0.80.12 - metro-resolver: 0.80.12 - metro-runtime: 0.80.12 - metro-source-map: 0.80.12 - metro-symbolicate: 0.80.12 - metro-transform-plugins: 0.80.12 - metro-transform-worker: 0.80.12(bufferutil@4.0.8)(utf-8-validate@6.0.4) - mime-types: 2.1.35 - nullthrows: 1.1.1 - serialize-error: 2.1.0 - source-map: 0.5.7 - strip-ansi: 6.0.1 - throat: 5.0.0 - ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4) - yargs: 17.7.2 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - optional: true - micro-ftch@0.3.1: {} micromark-core-commonmark@2.0.1: @@ -27150,8 +26685,6 @@ snapshots: muggle-string@0.4.1: {} - multiformats@11.0.2: {} - multiformats@9.9.0: {} multimatch@5.0.0: @@ -27281,8 +26814,6 @@ snapshots: node-fetch-native@1.6.4: {} - node-fetch@2.6.1: {} - node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 @@ -28241,15 +27772,6 @@ snapshots: - bufferutil - utf-8-validate - react-devtools-core@5.3.1(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - shell-quote: 1.8.1 - ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - optional: true - react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 @@ -28332,60 +27854,6 @@ snapshots: - typescript - utf-8-validate - react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 14.1.0(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4) - '@react-native-community/cli-platform-android': 14.1.0 - '@react-native-community/cli-platform-ios': 14.1.0 - '@react-native/assets-registry': 0.75.3 - '@react-native/codegen': 0.75.3(@babel/preset-env@7.25.4(@babel/core@7.25.2)) - '@react-native/community-cli-plugin': 0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@react-native/gradle-plugin': 0.75.3 - '@react-native/js-polyfills': 0.75.3 - '@react-native/normalize-colors': 0.75.3 - '@react-native/virtualized-lists': 0.75.3(@types/react@18.3.9)(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1) - abort-controller: 3.0.0 - anser: 1.4.10 - ansi-regex: 5.0.1 - base64-js: 1.5.1 - chalk: 4.1.2 - commander: 9.5.0 - event-target-shim: 5.0.1 - flow-enums-runtime: 0.0.6 - glob: 7.2.3 - invariant: 2.2.4 - jest-environment-node: 29.7.0 - jsc-android: 250231.0.0 - memoize-one: 5.2.1 - metro-runtime: 0.80.12 - metro-source-map: 0.80.12 - mkdirp: 0.5.6 - nullthrows: 1.1.1 - pretty-format: 26.6.2 - promise: 8.3.0 - react: 18.3.1 - react-devtools-core: 5.3.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) - react-refresh: 0.14.2 - regenerator-runtime: 0.13.11 - scheduler: 0.24.0-canary-efb381bbf-20230505 - semver: 7.6.3 - stacktrace-parser: 0.1.10 - whatwg-fetch: 3.6.20 - ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@6.0.4) - yargs: 17.7.2 - optionalDependencies: - '@types/react': 18.3.9 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - typescript - - utf-8-validate - optional: true - react-reconciler@0.29.2(react@18.3.1): dependencies: loose-envify: 1.4.0 @@ -28550,8 +28018,6 @@ snapshots: readline@1.3.0: {} - readonly-date@1.0.0: {} - real-require@0.1.0: {} real-require@0.2.0: {} @@ -28968,6 +28434,10 @@ snapshots: semver@6.3.1: {} + semver@7.5.4: + dependencies: + lru-cache: 6.0.0 + semver@7.6.3: {} send@0.19.0: @@ -29196,21 +28666,6 @@ snapshots: arg: 5.0.2 sax: 1.4.1 - siwe-recap@0.0.2-alpha.0(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)): - dependencies: - canonicalize: 2.0.0 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - multiformats: 11.0.2 - siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - - siwe@2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)): - dependencies: - '@spruceid/siwe-parser': 2.1.2 - '@stablelib/random': 1.0.2 - ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - uri-js: 4.4.1 - valid-url: 1.0.9 - skin-tone@2.0.0: dependencies: unicode-emoji-modifier-base: 1.0.0 @@ -29952,6 +29407,8 @@ snapshots: toidentifier@1.0.1: {} + toml@3.0.0: {} + totalist@3.0.1: {} tr46@0.0.3: {} @@ -29986,8 +29443,6 @@ snapshots: tslib@2.4.0: {} - tslib@2.6.0: {} - tslib@2.7.0: {} tsort@0.0.1: {} @@ -30071,6 +29526,8 @@ snapshots: tweetnacl@1.0.3: {} + typanion@3.14.0: {} + type-detect@4.0.8: {} type-detect@4.1.0: {} @@ -30128,8 +29585,6 @@ snapshots: typescript: 5.6.2 yaml: 2.5.1 - typeforce@1.18.0: {} - typesafe-path@0.2.2: {} typescript-auto-import-cache@0.3.3: @@ -30269,6 +29724,8 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 + universal-user-agent@7.0.2: {} + universalify@0.1.2: {} universalify@2.0.1: {} @@ -30426,8 +29883,6 @@ snapshots: dependencies: user-home: 1.1.1 - valid-url@1.0.9: {} - validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 @@ -30437,13 +29892,6 @@ snapshots: validator@13.12.0: {} - valtio@1.11.0(react@18.3.1): - dependencies: - proxy-compare: 2.5.1 - use-sync-external-store: 1.2.0(react@18.3.1) - optionalDependencies: - react: 18.3.1 - valtio@1.11.2(@types/react@18.3.9)(react@18.3.1): dependencies: proxy-compare: 2.5.1 @@ -30452,10 +29900,6 @@ snapshots: '@types/react': 18.3.9 react: 18.3.1 - varuint-bitcoin@1.1.2: - dependencies: - safe-buffer: 5.2.1 - vary@1.1.2: {} vaul@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): @@ -30482,6 +29926,23 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 + viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8): + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 0.9.8(typescript@5.6.2)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.6.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8): dependencies: '@adraffy/ens-normalize': 1.10.0 @@ -30887,16 +30348,16 @@ snapshots: vscode-uri@3.0.8: {} - wagmi@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8): + wagmi@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)) - '@wagmi/core': 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)) + '@wagmi/core': 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) abitype: 0.8.7(typescript@5.6.2)(zod@3.23.8) react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) - viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 1.21.4(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -30924,16 +30385,16 @@ snapshots: - utf-8-validate - zod - wagmi@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8): + wagmi@1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4))(react@18.3.1)) - '@wagmi/core': 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@6.0.4)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8))(zod@3.23.8) + '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1) + '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)) + '@wagmi/core': 1.4.13(@types/react@18.3.9)(bufferutil@4.0.8)(ioredis@5.4.1)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) abitype: 0.8.7(typescript@5.6.2)(zod@3.23.8) react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) - viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@6.0.4)(zod@3.23.8) + viem: 2.21.15(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -31008,6 +30469,8 @@ snapshots: transitivePeerDependencies: - debug + wasm-sjlj@1.0.5: {} + watchpack@2.4.0: dependencies: glob-to-regexp: 0.4.1 @@ -31192,38 +30655,25 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - ws@6.2.3(bufferutil@4.0.8)(utf-8-validate@6.0.4): - dependencies: - async-limiter: 1.0.1 - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 6.0.4 - optional: true - - ws@7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10): - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 5.0.10 - ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@6.0.4): + ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 - utf-8-validate: 6.0.4 + utf-8-validate: 5.0.10 ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 6.0.4 - ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@6.0.4): + ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8 - utf-8-validate: 6.0.4 + utf-8-validate: 5.0.10 ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: @@ -31349,6 +30799,8 @@ snapshots: yocto-queue@1.1.1: {} + yoctocolors-cjs@2.1.2: {} + yoga-wasm-web@0.3.3: {} zod-to-json-schema@3.23.3(zod@3.23.8):