From 438e05b8705d79ae5bd20d06b56661f4b5012ea0 Mon Sep 17 00:00:00 2001 From: Thunnini Date: Tue, 15 Oct 2024 23:08:21 +0900 Subject: [PATCH] v0.12.136 --- apps/extension/package.json | 52 ++-- apps/extension/src/manifest.v2.json | 2 +- apps/extension/src/manifest.v3.json | 2 +- apps/hooks-internal/package.json | 12 +- apps/mobile/package.json | 2 +- apps/stores-internal/package.json | 14 +- lerna.json | 2 +- packages/analytics/package.json | 2 +- packages/background/package.json | 24 +- packages/chain-validator/package.json | 8 +- packages/common/package.json | 6 +- packages/cosmjs-test/package.json | 4 +- packages/cosmos/package.json | 14 +- packages/crypto/package.json | 2 +- packages/hooks-starknet/package.json | 26 +- packages/hooks/package.json | 24 +- packages/ledger-cosmos/package.json | 2 +- packages/mobx-utils/package.json | 4 +- packages/popup/package.json | 2 +- packages/proto-types/package.json | 2 +- packages/provider-extension/package.json | 4 +- packages/provider-extension/src/version.ts | 2 +- packages/provider-mock/package.json | 14 +- packages/provider/package.json | 6 +- packages/router-extension/package.json | 6 +- packages/router-mock/package.json | 6 +- packages/router/package.json | 2 +- packages/simple-fetch/package.json | 2 +- packages/stores-core/package.json | 16 +- packages/stores-etc/package.json | 12 +- packages/stores-eth/package.json | 12 +- packages/stores-ibc/package.json | 12 +- packages/stores-starknet/package.json | 12 +- packages/stores/package.json | 20 +- packages/types/package.json | 2 +- packages/unit/package.json | 4 +- packages/wc-client-example/package.json | 16 +- packages/wc-client/package.json | 6 +- packages/wc-qrcode-modal/package.json | 2 +- yarn.lock | 342 ++++++++++----------- 40 files changed, 352 insertions(+), 352 deletions(-) diff --git a/apps/extension/package.json b/apps/extension/package.json index 989cab2272..fa33210e40 100644 --- a/apps/extension/package.json +++ b/apps/extension/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/extension", - "version": "0.12.135", + "version": "0.12.136", "author": "chainapsis", "license": "Apache-2.0", "private": true, @@ -26,31 +26,31 @@ "@ethersproject/transactions": "^5.7.0", "@floating-ui/react": "^0.23.0", "@floating-ui/react-dom": "^1.3.0", - "@keplr-wallet/analytics": "0.12.135", - "@keplr-wallet/background": "0.12.135", - "@keplr-wallet/chain-validator": "0.12.135", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/hooks": "0.12.135", - "@keplr-wallet/hooks-internal": "0.12.135", - "@keplr-wallet/hooks-starknet": "0.12.135", - "@keplr-wallet/ledger-cosmos": "0.12.135", - "@keplr-wallet/popup": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/provider": "0.12.135", - "@keplr-wallet/router": "0.12.135", - "@keplr-wallet/router-extension": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/stores-core": "0.12.135", - "@keplr-wallet/stores-etc": "0.12.135", - "@keplr-wallet/stores-eth": "0.12.135", - "@keplr-wallet/stores-ibc": "0.12.135", - "@keplr-wallet/stores-internal": "0.12.135", - "@keplr-wallet/stores-starknet": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/analytics": "0.12.136", + "@keplr-wallet/background": "0.12.136", + "@keplr-wallet/chain-validator": "0.12.136", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/hooks": "0.12.136", + "@keplr-wallet/hooks-internal": "0.12.136", + "@keplr-wallet/hooks-starknet": "0.12.136", + "@keplr-wallet/ledger-cosmos": "0.12.136", + "@keplr-wallet/popup": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/provider": "0.12.136", + "@keplr-wallet/router": "0.12.136", + "@keplr-wallet/router-extension": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/stores-core": "0.12.136", + "@keplr-wallet/stores-etc": "0.12.136", + "@keplr-wallet/stores-eth": "0.12.136", + "@keplr-wallet/stores-ibc": "0.12.136", + "@keplr-wallet/stores-internal": "0.12.136", + "@keplr-wallet/stores-starknet": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "@keystonehq/animated-qr": "^0.8.6", "@keystonehq/keystone-sdk": "^0.2.3", "@ledgerhq/devices": "^6.20.0", diff --git a/apps/extension/src/manifest.v2.json b/apps/extension/src/manifest.v2.json index 5e079a312c..aaa5786a9a 100644 --- a/apps/extension/src/manifest.v2.json +++ b/apps/extension/src/manifest.v2.json @@ -3,7 +3,7 @@ "name": "Keplr", "description": "Keplr is a browser extension wallet for the Inter blockchain ecosystem.", - "version": "0.12.135", + "version": "0.12.136", "icons": { "16": "assets/icon-16.png", "48": "assets/icon-48.png", diff --git a/apps/extension/src/manifest.v3.json b/apps/extension/src/manifest.v3.json index 9ccc74cdc1..158091620b 100644 --- a/apps/extension/src/manifest.v3.json +++ b/apps/extension/src/manifest.v3.json @@ -3,7 +3,7 @@ "name": "Keplr", "description": "Keplr is a browser extension wallet for the Inter blockchain ecosystem.", - "version": "0.12.135", + "version": "0.12.136", "icons": { "16": "assets/icon-16.png", "48": "assets/icon-48.png", diff --git a/apps/hooks-internal/package.json b/apps/hooks-internal/package.json index 3f5524f333..b75c528397 100644 --- a/apps/hooks-internal/package.json +++ b/apps/hooks-internal/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/hooks-internal", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -14,11 +14,11 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/hooks": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/stores-internal": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135" + "@keplr-wallet/hooks": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/stores-internal": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136" }, "peerDependencies": { "mobx": "^6", diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 0bc951c05b..9dc177674b 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/mobile", - "version": "0.12.135", + "version": "0.12.136", "private": true, "installConfig": { "hoistingLimits": "workspaces" diff --git a/apps/stores-internal/package.json b/apps/stores-internal/package.json index 4854691d5b..ba79faf6ac 100644 --- a/apps/stores-internal/package.json +++ b/apps/stores-internal/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores-internal", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -14,12 +14,12 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "joi": "^17.5.0", "utility-types": "^3.10.0" }, diff --git a/lerna.json b/lerna.json index 2c11e38606..6d2a5f9c64 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.12.135", + "version": "0.12.136", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/analytics/package.json b/packages/analytics/package.json index e65b04e5af..9547156777 100644 --- a/packages/analytics/package.json +++ b/packages/analytics/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/analytics", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/background/package.json b/packages/background/package.json index 242c99ce08..24bbbf6e7b 100644 --- a/packages/background/package.json +++ b/packages/background/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/background", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -29,17 +29,17 @@ "@ethersproject/hash": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@ethersproject/wallet": "^5.7.0", - "@keplr-wallet/chain-validator": "0.12.135", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/ledger-cosmos": "0.12.135", - "@keplr-wallet/popup": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/router": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/chain-validator": "0.12.136", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/ledger-cosmos": "0.12.136", + "@keplr-wallet/popup": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/router": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "@ledgerhq/hw-app-eth": "^6.29.3", "@ledgerhq/hw-transport": "^6.20.0", "@ledgerhq/hw-transport-webhid": "^6.20.0", diff --git a/packages/chain-validator/package.json b/packages/chain-validator/package.json index dd1f8a86be..d70cc168be 100644 --- a/packages/chain-validator/package.json +++ b/packages/chain-validator/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/chain-validator", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -17,9 +17,9 @@ }, "dependencies": { "@ethersproject/abi": "^5.7.0", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/types": "0.12.136", "joi": "^17.5.0", "utility-types": "^3.10.0" } diff --git a/packages/common/package.json b/packages/common/package.json index 939d9a59cc..be00cafd6f 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/common", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,8 +16,8 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/types": "0.12.136", "buffer": "^6.0.3", "delay": "^4.4.0" } diff --git a/packages/cosmjs-test/package.json b/packages/cosmjs-test/package.json index 1fac469185..36cd019874 100644 --- a/packages/cosmjs-test/package.json +++ b/packages/cosmjs-test/package.json @@ -1,6 +1,6 @@ { "name": "cosmjs-test", - "version": "0.12.135", + "version": "0.12.136", "author": "chainapsis", "license": "Apache-2.0", "private": true, @@ -12,7 +12,7 @@ }, "devDependencies": { "@cosmjs/stargate": "^0.29.3", - "@keplr-wallet/provider-mock": "0.12.135", + "@keplr-wallet/provider-mock": "0.12.136", "secretjs": "^1.6.0" } } diff --git a/packages/cosmos/package.json b/packages/cosmos/package.json index cae90db1be..81af20965a 100644 --- a/packages/cosmos/package.json +++ b/packages/cosmos/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/cosmos", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -17,12 +17,12 @@ }, "dependencies": { "@ethersproject/address": "^5.6.0", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "bech32": "^1.1.4", "buffer": "^6.0.3", "long": "^4.0.0", diff --git a/packages/crypto/package.json b/packages/crypto/package.json index fe171fcb0c..3d314fabe3 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/crypto", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/hooks-starknet/package.json b/packages/hooks-starknet/package.json index ec17287bfb..e19076a542 100644 --- a/packages/hooks-starknet/package.json +++ b/packages/hooks-starknet/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/hooks-starknet", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -18,18 +18,18 @@ "dependencies": { "@ethersproject/address": "^5.7.0", "@ethersproject/providers": "^5.7.0", - "@keplr-wallet/background": "0.12.135", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/stores-etc": "0.12.135", - "@keplr-wallet/stores-eth": "0.12.135", - "@keplr-wallet/stores-starknet": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/background": "0.12.136", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/stores-etc": "0.12.136", + "@keplr-wallet/stores-eth": "0.12.136", + "@keplr-wallet/stores-starknet": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "buffer": "^6.0.3", "long": "^4.0.0", "utility-types": "^3.10.0" diff --git a/packages/hooks/package.json b/packages/hooks/package.json index 3cb71e466b..fd5dae7c15 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/hooks", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -18,17 +18,17 @@ "dependencies": { "@ethersproject/address": "^5.7.0", "@ethersproject/providers": "^5.7.0", - "@keplr-wallet/background": "0.12.135", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/stores-etc": "0.12.135", - "@keplr-wallet/stores-eth": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/background": "0.12.136", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/stores-etc": "0.12.136", + "@keplr-wallet/stores-eth": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "buffer": "^6.0.3", "long": "^4.0.0", "utility-types": "^3.10.0" diff --git a/packages/ledger-cosmos/package.json b/packages/ledger-cosmos/package.json index fc311f1781..1268c2e5a7 100644 --- a/packages/ledger-cosmos/package.json +++ b/packages/ledger-cosmos/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/ledger-cosmos", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/mobx-utils/package.json b/packages/mobx-utils/package.json index be537e21ff..bb539aa726 100644 --- a/packages/mobx-utils/package.json +++ b/packages/mobx-utils/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/mobx-utils", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/types": "0.12.135" + "@keplr-wallet/types": "0.12.136" }, "peerDependencies": { "mobx": "^6" diff --git a/packages/popup/package.json b/packages/popup/package.json index 00892e6ee2..1486c1ac6e 100644 --- a/packages/popup/package.json +++ b/packages/popup/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/popup", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/proto-types/package.json b/packages/proto-types/package.json index 126265263d..4d8b9f6354 100644 --- a/packages/proto-types/package.json +++ b/packages/proto-types/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/proto-types", - "version": "0.12.135", + "version": "0.12.136", "author": "chainapsis", "license": "Apache-2.0", "publishConfig": { diff --git a/packages/provider-extension/package.json b/packages/provider-extension/package.json index 2ef5f6bd80..f8140d0a02 100644 --- a/packages/provider-extension/package.json +++ b/packages/provider-extension/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/provider-extension", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -17,7 +17,7 @@ "version": "zx ./scripts/lerna-lifecyle-version.mjs" }, "dependencies": { - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/types": "0.12.136", "deepmerge": "^4.2.2", "long": "^4.0.0" }, diff --git a/packages/provider-extension/src/version.ts b/packages/provider-extension/src/version.ts index dbe477800c..7efe9f2a24 100644 --- a/packages/provider-extension/src/version.ts +++ b/packages/provider-extension/src/version.ts @@ -1 +1 @@ -export const BUILD_VERSION = "0.12.135"; +export const BUILD_VERSION = "0.12.136"; diff --git a/packages/provider-mock/package.json b/packages/provider-mock/package.json index 3130710244..d2e8921ddc 100644 --- a/packages/provider-mock/package.json +++ b/packages/provider-mock/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/provider-mock", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,12 +16,12 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/provider": "0.12.135", - "@keplr-wallet/router": "0.12.135", - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/provider": "0.12.136", + "@keplr-wallet/router": "0.12.136", + "@keplr-wallet/types": "0.12.136", "buffer": "^6.0.3", "deepmerge": "^4.2.2", "long": "^4.0.0" diff --git a/packages/provider/package.json b/packages/provider/package.json index 86af98e06c..c38d0d454f 100644 --- a/packages/provider/package.json +++ b/packages/provider/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/provider", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,8 +16,8 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/router": "0.12.135", - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/router": "0.12.136", + "@keplr-wallet/types": "0.12.136", "buffer": "^6.0.3", "deepmerge": "^4.2.2", "long": "^4.0.0" diff --git a/packages/router-extension/package.json b/packages/router-extension/package.json index 565a25ff7f..f507b5d565 100644 --- a/packages/router-extension/package.json +++ b/packages/router-extension/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/router-extension", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/popup": "0.12.135", - "@keplr-wallet/router": "0.12.135" + "@keplr-wallet/popup": "0.12.136", + "@keplr-wallet/router": "0.12.136" } } diff --git a/packages/router-mock/package.json b/packages/router-mock/package.json index 489f7a12fc..ef8ae09516 100644 --- a/packages/router-mock/package.json +++ b/packages/router-mock/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/router-mock", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/router": "0.12.135", - "@keplr-wallet/router-extension": "0.12.135" + "@keplr-wallet/router": "0.12.136", + "@keplr-wallet/router-extension": "0.12.136" } } diff --git a/packages/router/package.json b/packages/router/package.json index d5d7c013c9..8d8d8545b1 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/router", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/simple-fetch/package.json b/packages/simple-fetch/package.json index b29da088e7..6f2201df6e 100644 --- a/packages/simple-fetch/package.json +++ b/packages/simple-fetch/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/simple-fetch", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/stores-core/package.json b/packages/stores-core/package.json index 4a9ff26655..721bb12dfe 100644 --- a/packages/stores-core/package.json +++ b/packages/stores-core/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores-core", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,13 +16,13 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/background": "0.12.135", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/router": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/background": "0.12.136", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/router": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/types": "0.12.136", "buffer": "^6.0.3" }, "peerDependencies": { diff --git a/packages/stores-etc/package.json b/packages/stores-etc/package.json index 04d49c472d..4bc125ad97 100644 --- a/packages/stores-etc/package.json +++ b/packages/stores-etc/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores-etc", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -17,11 +17,11 @@ }, "dependencies": { "@ethersproject/abi": "^5.6.0", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "utility-types": "^3.10.0" }, "peerDependencies": { diff --git a/packages/stores-eth/package.json b/packages/stores-eth/package.json index 53716c82b8..3a4f50a4c0 100644 --- a/packages/stores-eth/package.json +++ b/packages/stores-eth/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores-eth", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -21,11 +21,11 @@ "@ethersproject/bytes": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@ethersproject/units": "^5.7.0", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "big-integer": "^1.6.48", "utility-types": "^3.10.0" }, diff --git a/packages/stores-ibc/package.json b/packages/stores-ibc/package.json index ccb907fef8..f053eb53a6 100644 --- a/packages/stores-ibc/package.json +++ b/packages/stores-ibc/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores-ibc", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,11 +16,11 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/stores-eth": "0.12.135", - "@keplr-wallet/types": "0.12.135" + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/stores-eth": "0.12.136", + "@keplr-wallet/types": "0.12.136" }, "peerDependencies": { "mobx": "^6", diff --git a/packages/stores-starknet/package.json b/packages/stores-starknet/package.json index 4f2a559127..ccc33e0ad1 100644 --- a/packages/stores-starknet/package.json +++ b/packages/stores-starknet/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores-starknet", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -21,11 +21,11 @@ "@ethersproject/bytes": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@ethersproject/units": "^5.7.0", - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "big-integer": "^1.6.48", "utility-types": "^3.10.0" }, diff --git a/packages/stores/package.json b/packages/stores/package.json index fc196c1a7e..193664a3c7 100644 --- a/packages/stores/package.json +++ b/packages/stores/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,17 +16,17 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "devDependencies": { - "@keplr-wallet/provider-mock": "0.12.135" + "@keplr-wallet/provider-mock": "0.12.136" }, "dependencies": { - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/crypto": "0.12.135", - "@keplr-wallet/mobx-utils": "0.12.135", - "@keplr-wallet/proto-types": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/unit": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/crypto": "0.12.136", + "@keplr-wallet/mobx-utils": "0.12.136", + "@keplr-wallet/proto-types": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/unit": "0.12.136", "buffer": "^6.0.3", "deepmerge": "^4.2.2", "eventemitter3": "^4.0.7", diff --git a/packages/types/package.json b/packages/types/package.json index e3e60649c0..83ae2ebaba 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/types", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/unit/package.json b/packages/unit/package.json index f20c3b4bfa..3d6afaf230 100644 --- a/packages/unit/package.json +++ b/packages/unit/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/unit", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/types": "0.12.136", "big-integer": "^1.6.48", "utility-types": "^3.10.0" } diff --git a/packages/wc-client-example/package.json b/packages/wc-client-example/package.json index 83e41c34c2..2a0e9df160 100644 --- a/packages/wc-client-example/package.json +++ b/packages/wc-client-example/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/wc-client-example", - "version": "0.12.135", + "version": "0.12.136", "author": "chainapsis", "license": "Apache-2.0", "private": true, @@ -8,13 +8,13 @@ "serve": "parcel ./src/index.html" }, "dependencies": { - "@keplr-wallet/common": "0.12.135", - "@keplr-wallet/cosmos": "0.12.135", - "@keplr-wallet/simple-fetch": "0.12.135", - "@keplr-wallet/stores": "0.12.135", - "@keplr-wallet/types": "0.12.135", - "@keplr-wallet/wc-client": "0.12.135", - "@keplr-wallet/wc-qrcode-modal": "0.12.135", + "@keplr-wallet/common": "0.12.136", + "@keplr-wallet/cosmos": "0.12.136", + "@keplr-wallet/simple-fetch": "0.12.136", + "@keplr-wallet/stores": "0.12.136", + "@keplr-wallet/types": "0.12.136", + "@keplr-wallet/wc-client": "0.12.136", + "@keplr-wallet/wc-qrcode-modal": "0.12.136", "@walletconnect/sign-client": "^2.13.3", "@walletconnect/types": "^2.13.3", "buffer": "^6.0.3" diff --git a/packages/wc-client/package.json b/packages/wc-client/package.json index ae5eba5b88..d3f7889b35 100644 --- a/packages/wc-client/package.json +++ b/packages/wc-client/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/wc-client", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -16,8 +16,8 @@ "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"" }, "dependencies": { - "@keplr-wallet/provider": "0.12.135", - "@keplr-wallet/types": "0.12.135", + "@keplr-wallet/provider": "0.12.136", + "@keplr-wallet/types": "0.12.136", "buffer": "^6.0.3", "deepmerge": "^4.2.2", "long": "^3 || ^4 || ^5" diff --git a/packages/wc-qrcode-modal/package.json b/packages/wc-qrcode-modal/package.json index d6ea32dbed..075c738db0 100644 --- a/packages/wc-qrcode-modal/package.json +++ b/packages/wc-qrcode-modal/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/wc-qrcode-modal", - "version": "0.12.135", + "version": "0.12.136", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/yarn.lock b/yarn.lock index a231390d08..c20d814214 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8602,13 +8602,13 @@ __metadata: languageName: node linkType: hard -"@keplr-wallet/analytics@0.12.135, @keplr-wallet/analytics@workspace:packages/analytics": +"@keplr-wallet/analytics@0.12.136, @keplr-wallet/analytics@workspace:packages/analytics": version: 0.0.0-use.local resolution: "@keplr-wallet/analytics@workspace:packages/analytics" languageName: unknown linkType: soft -"@keplr-wallet/background@0.12.135, @keplr-wallet/background@workspace:packages/background": +"@keplr-wallet/background@0.12.136, @keplr-wallet/background@workspace:packages/background": version: 0.0.0-use.local resolution: "@keplr-wallet/background@workspace:packages/background" dependencies: @@ -8618,17 +8618,17 @@ __metadata: "@ethersproject/hash": ^5.7.0 "@ethersproject/transactions": ^5.7.0 "@ethersproject/wallet": ^5.7.0 - "@keplr-wallet/chain-validator": 0.12.135 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/ledger-cosmos": 0.12.135 - "@keplr-wallet/popup": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/router": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/chain-validator": 0.12.136 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/ledger-cosmos": 0.12.136 + "@keplr-wallet/popup": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/router": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 "@ledgerhq/hw-app-eth": ^6.29.3 "@ledgerhq/hw-transport": ^6.20.0 "@ledgerhq/hw-transport-webhid": ^6.20.0 @@ -8657,41 +8657,41 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/chain-validator@0.12.135, @keplr-wallet/chain-validator@workspace:packages/chain-validator": +"@keplr-wallet/chain-validator@0.12.136, @keplr-wallet/chain-validator@workspace:packages/chain-validator": version: 0.0.0-use.local resolution: "@keplr-wallet/chain-validator@workspace:packages/chain-validator" dependencies: "@ethersproject/abi": ^5.7.0 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/types": 0.12.136 joi: ^17.5.0 utility-types: ^3.10.0 languageName: unknown linkType: soft -"@keplr-wallet/common@0.12.135, @keplr-wallet/common@workspace:packages/common": +"@keplr-wallet/common@0.12.136, @keplr-wallet/common@workspace:packages/common": version: 0.0.0-use.local resolution: "@keplr-wallet/common@workspace:packages/common" dependencies: - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/types": 0.12.136 buffer: ^6.0.3 delay: ^4.4.0 languageName: unknown linkType: soft -"@keplr-wallet/cosmos@0.12.135, @keplr-wallet/cosmos@workspace:packages/cosmos": +"@keplr-wallet/cosmos@0.12.136, @keplr-wallet/cosmos@workspace:packages/cosmos": version: 0.0.0-use.local resolution: "@keplr-wallet/cosmos@workspace:packages/cosmos" dependencies: "@ethersproject/address": ^5.6.0 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 bech32: ^1.1.4 buffer: ^6.0.3 long: ^4.0.0 @@ -8699,7 +8699,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/crypto@0.12.135, @keplr-wallet/crypto@workspace:packages/crypto": +"@keplr-wallet/crypto@0.12.136, @keplr-wallet/crypto@workspace:packages/crypto": version: 0.0.0-use.local resolution: "@keplr-wallet/crypto@workspace:packages/crypto" dependencies: @@ -8727,31 +8727,31 @@ __metadata: "@ethersproject/transactions": ^5.7.0 "@floating-ui/react": ^0.23.0 "@floating-ui/react-dom": ^1.3.0 - "@keplr-wallet/analytics": 0.12.135 - "@keplr-wallet/background": 0.12.135 - "@keplr-wallet/chain-validator": 0.12.135 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/hooks": 0.12.135 - "@keplr-wallet/hooks-internal": 0.12.135 - "@keplr-wallet/hooks-starknet": 0.12.135 - "@keplr-wallet/ledger-cosmos": 0.12.135 - "@keplr-wallet/popup": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/provider": 0.12.135 - "@keplr-wallet/router": 0.12.135 - "@keplr-wallet/router-extension": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/stores-core": 0.12.135 - "@keplr-wallet/stores-etc": 0.12.135 - "@keplr-wallet/stores-eth": 0.12.135 - "@keplr-wallet/stores-ibc": 0.12.135 - "@keplr-wallet/stores-internal": 0.12.135 - "@keplr-wallet/stores-starknet": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/analytics": 0.12.136 + "@keplr-wallet/background": 0.12.136 + "@keplr-wallet/chain-validator": 0.12.136 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/hooks": 0.12.136 + "@keplr-wallet/hooks-internal": 0.12.136 + "@keplr-wallet/hooks-starknet": 0.12.136 + "@keplr-wallet/ledger-cosmos": 0.12.136 + "@keplr-wallet/popup": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/provider": 0.12.136 + "@keplr-wallet/router": 0.12.136 + "@keplr-wallet/router-extension": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/stores-core": 0.12.136 + "@keplr-wallet/stores-etc": 0.12.136 + "@keplr-wallet/stores-eth": 0.12.136 + "@keplr-wallet/stores-ibc": 0.12.136 + "@keplr-wallet/stores-internal": 0.12.136 + "@keplr-wallet/stores-starknet": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 "@keystonehq/animated-qr": ^0.8.6 "@keystonehq/keystone-sdk": ^0.2.3 "@ledgerhq/devices": ^6.20.0 @@ -8843,15 +8843,15 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/hooks-internal@0.12.135, @keplr-wallet/hooks-internal@workspace:apps/hooks-internal": +"@keplr-wallet/hooks-internal@0.12.136, @keplr-wallet/hooks-internal@workspace:apps/hooks-internal": version: 0.0.0-use.local resolution: "@keplr-wallet/hooks-internal@workspace:apps/hooks-internal" dependencies: - "@keplr-wallet/hooks": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/stores-internal": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/hooks": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/stores-internal": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 peerDependencies: mobx: ^6 mobx-utils: ^6 @@ -8859,24 +8859,24 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/hooks-starknet@0.12.135, @keplr-wallet/hooks-starknet@workspace:packages/hooks-starknet": +"@keplr-wallet/hooks-starknet@0.12.136, @keplr-wallet/hooks-starknet@workspace:packages/hooks-starknet": version: 0.0.0-use.local resolution: "@keplr-wallet/hooks-starknet@workspace:packages/hooks-starknet" dependencies: "@ethersproject/address": ^5.7.0 "@ethersproject/providers": ^5.7.0 - "@keplr-wallet/background": 0.12.135 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/stores-etc": 0.12.135 - "@keplr-wallet/stores-eth": 0.12.135 - "@keplr-wallet/stores-starknet": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/background": 0.12.136 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/stores-etc": 0.12.136 + "@keplr-wallet/stores-eth": 0.12.136 + "@keplr-wallet/stores-starknet": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 buffer: ^6.0.3 long: ^4.0.0 utility-types: ^3.10.0 @@ -8887,23 +8887,23 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/hooks@0.12.135, @keplr-wallet/hooks@workspace:packages/hooks": +"@keplr-wallet/hooks@0.12.136, @keplr-wallet/hooks@workspace:packages/hooks": version: 0.0.0-use.local resolution: "@keplr-wallet/hooks@workspace:packages/hooks" dependencies: "@ethersproject/address": ^5.7.0 "@ethersproject/providers": ^5.7.0 - "@keplr-wallet/background": 0.12.135 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/stores-etc": 0.12.135 - "@keplr-wallet/stores-eth": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/background": 0.12.136 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/stores-etc": 0.12.136 + "@keplr-wallet/stores-eth": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 buffer: ^6.0.3 long: ^4.0.0 utility-types: ^3.10.0 @@ -8914,7 +8914,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/ledger-cosmos@0.12.135, @keplr-wallet/ledger-cosmos@workspace:packages/ledger-cosmos": +"@keplr-wallet/ledger-cosmos@0.12.136, @keplr-wallet/ledger-cosmos@workspace:packages/ledger-cosmos": version: 0.0.0-use.local resolution: "@keplr-wallet/ledger-cosmos@workspace:packages/ledger-cosmos" dependencies: @@ -9027,23 +9027,23 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/mobx-utils@0.12.135, @keplr-wallet/mobx-utils@workspace:packages/mobx-utils": +"@keplr-wallet/mobx-utils@0.12.136, @keplr-wallet/mobx-utils@workspace:packages/mobx-utils": version: 0.0.0-use.local resolution: "@keplr-wallet/mobx-utils@workspace:packages/mobx-utils" dependencies: - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/types": 0.12.136 peerDependencies: mobx: ^6 languageName: unknown linkType: soft -"@keplr-wallet/popup@0.12.135, @keplr-wallet/popup@workspace:packages/popup": +"@keplr-wallet/popup@0.12.136, @keplr-wallet/popup@workspace:packages/popup": version: 0.0.0-use.local resolution: "@keplr-wallet/popup@workspace:packages/popup" languageName: unknown linkType: soft -"@keplr-wallet/proto-types@0.12.135, @keplr-wallet/proto-types@workspace:packages/proto-types": +"@keplr-wallet/proto-types@0.12.136, @keplr-wallet/proto-types@workspace:packages/proto-types": version: 0.0.0-use.local resolution: "@keplr-wallet/proto-types@workspace:packages/proto-types" dependencies: @@ -9057,7 +9057,7 @@ __metadata: version: 0.0.0-use.local resolution: "@keplr-wallet/provider-extension@workspace:packages/provider-extension" dependencies: - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/types": 0.12.136 deepmerge: ^4.2.2 long: ^4.0.0 peerDependencies: @@ -9065,16 +9065,16 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/provider-mock@0.12.135, @keplr-wallet/provider-mock@workspace:packages/provider-mock": +"@keplr-wallet/provider-mock@0.12.136, @keplr-wallet/provider-mock@workspace:packages/provider-mock": version: 0.0.0-use.local resolution: "@keplr-wallet/provider-mock@workspace:packages/provider-mock" dependencies: - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/provider": 0.12.135 - "@keplr-wallet/router": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/provider": 0.12.136 + "@keplr-wallet/router": 0.12.136 + "@keplr-wallet/types": 0.12.136 buffer: ^6.0.3 deepmerge: ^4.2.2 long: ^4.0.0 @@ -9083,12 +9083,12 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/provider@0.12.135, @keplr-wallet/provider@workspace:packages/provider": +"@keplr-wallet/provider@0.12.136, @keplr-wallet/provider@workspace:packages/provider": version: 0.0.0-use.local resolution: "@keplr-wallet/provider@workspace:packages/provider" dependencies: - "@keplr-wallet/router": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/router": 0.12.136 + "@keplr-wallet/types": 0.12.136 buffer: ^6.0.3 deepmerge: ^4.2.2 long: ^4.0.0 @@ -9097,12 +9097,12 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/router-extension@0.12.135, @keplr-wallet/router-extension@workspace:packages/router-extension": +"@keplr-wallet/router-extension@0.12.136, @keplr-wallet/router-extension@workspace:packages/router-extension": version: 0.0.0-use.local resolution: "@keplr-wallet/router-extension@workspace:packages/router-extension" dependencies: - "@keplr-wallet/popup": 0.12.135 - "@keplr-wallet/router": 0.12.135 + "@keplr-wallet/popup": 0.12.136 + "@keplr-wallet/router": 0.12.136 languageName: unknown linkType: soft @@ -9110,34 +9110,34 @@ __metadata: version: 0.0.0-use.local resolution: "@keplr-wallet/router-mock@workspace:packages/router-mock" dependencies: - "@keplr-wallet/router": 0.12.135 - "@keplr-wallet/router-extension": 0.12.135 + "@keplr-wallet/router": 0.12.136 + "@keplr-wallet/router-extension": 0.12.136 languageName: unknown linkType: soft -"@keplr-wallet/router@0.12.135, @keplr-wallet/router@workspace:packages/router": +"@keplr-wallet/router@0.12.136, @keplr-wallet/router@workspace:packages/router": version: 0.0.0-use.local resolution: "@keplr-wallet/router@workspace:packages/router" languageName: unknown linkType: soft -"@keplr-wallet/simple-fetch@0.12.135, @keplr-wallet/simple-fetch@workspace:packages/simple-fetch": +"@keplr-wallet/simple-fetch@0.12.136, @keplr-wallet/simple-fetch@workspace:packages/simple-fetch": version: 0.0.0-use.local resolution: "@keplr-wallet/simple-fetch@workspace:packages/simple-fetch" languageName: unknown linkType: soft -"@keplr-wallet/stores-core@0.12.135, @keplr-wallet/stores-core@workspace:packages/stores-core": +"@keplr-wallet/stores-core@0.12.136, @keplr-wallet/stores-core@workspace:packages/stores-core": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-core@workspace:packages/stores-core" dependencies: - "@keplr-wallet/background": 0.12.135 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/router": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/background": 0.12.136 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/router": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/types": 0.12.136 buffer: ^6.0.3 peerDependencies: mobx: ^6 @@ -9146,16 +9146,16 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-etc@0.12.135, @keplr-wallet/stores-etc@workspace:packages/stores-etc": +"@keplr-wallet/stores-etc@0.12.136, @keplr-wallet/stores-etc@workspace:packages/stores-etc": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-etc@workspace:packages/stores-etc" dependencies: "@ethersproject/abi": ^5.6.0 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 utility-types: ^3.10.0 peerDependencies: mobx: ^6 @@ -9163,7 +9163,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-eth@0.12.135, @keplr-wallet/stores-eth@workspace:packages/stores-eth": +"@keplr-wallet/stores-eth@0.12.136, @keplr-wallet/stores-eth@workspace:packages/stores-eth": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-eth@workspace:packages/stores-eth" dependencies: @@ -9172,11 +9172,11 @@ __metadata: "@ethersproject/bytes": ^5.7.0 "@ethersproject/transactions": ^5.7.0 "@ethersproject/units": ^5.7.0 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 big-integer: ^1.6.48 utility-types: ^3.10.0 peerDependencies: @@ -9185,31 +9185,31 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-ibc@0.12.135, @keplr-wallet/stores-ibc@workspace:packages/stores-ibc": +"@keplr-wallet/stores-ibc@0.12.136, @keplr-wallet/stores-ibc@workspace:packages/stores-ibc": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-ibc@workspace:packages/stores-ibc" dependencies: - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/stores-eth": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/stores-eth": 0.12.136 + "@keplr-wallet/types": 0.12.136 peerDependencies: mobx: ^6 mobx-utils: ^6 languageName: unknown linkType: soft -"@keplr-wallet/stores-internal@0.12.135, @keplr-wallet/stores-internal@workspace:apps/stores-internal": +"@keplr-wallet/stores-internal@0.12.136, @keplr-wallet/stores-internal@workspace:apps/stores-internal": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-internal@workspace:apps/stores-internal" dependencies: - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 joi: ^17.5.0 utility-types: ^3.10.0 peerDependencies: @@ -9218,7 +9218,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-starknet@0.12.135, @keplr-wallet/stores-starknet@workspace:packages/stores-starknet": +"@keplr-wallet/stores-starknet@0.12.136, @keplr-wallet/stores-starknet@workspace:packages/stores-starknet": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-starknet@workspace:packages/stores-starknet" dependencies: @@ -9227,11 +9227,11 @@ __metadata: "@ethersproject/bytes": ^5.7.0 "@ethersproject/transactions": ^5.7.0 "@ethersproject/units": ^5.7.0 - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 big-integer: ^1.6.48 utility-types: ^3.10.0 peerDependencies: @@ -9241,19 +9241,19 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores@0.12.135, @keplr-wallet/stores@workspace:packages/stores": +"@keplr-wallet/stores@0.12.136, @keplr-wallet/stores@workspace:packages/stores": version: 0.0.0-use.local resolution: "@keplr-wallet/stores@workspace:packages/stores" dependencies: - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/crypto": 0.12.135 - "@keplr-wallet/mobx-utils": 0.12.135 - "@keplr-wallet/proto-types": 0.12.135 - "@keplr-wallet/provider-mock": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/unit": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/crypto": 0.12.136 + "@keplr-wallet/mobx-utils": 0.12.136 + "@keplr-wallet/proto-types": 0.12.136 + "@keplr-wallet/provider-mock": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/unit": 0.12.136 buffer: ^6.0.3 deepmerge: ^4.2.2 eventemitter3: ^4.0.7 @@ -9266,7 +9266,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/types@0.12.135, @keplr-wallet/types@workspace:packages/types": +"@keplr-wallet/types@0.12.136, @keplr-wallet/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@keplr-wallet/types@workspace:packages/types" dependencies: @@ -9276,11 +9276,11 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/unit@0.12.135, @keplr-wallet/unit@workspace:packages/unit": +"@keplr-wallet/unit@0.12.136, @keplr-wallet/unit@workspace:packages/unit": version: 0.0.0-use.local resolution: "@keplr-wallet/unit@workspace:packages/unit" dependencies: - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/types": 0.12.136 big-integer: ^1.6.48 utility-types: ^3.10.0 languageName: unknown @@ -9290,13 +9290,13 @@ __metadata: version: 0.0.0-use.local resolution: "@keplr-wallet/wc-client-example@workspace:packages/wc-client-example" dependencies: - "@keplr-wallet/common": 0.12.135 - "@keplr-wallet/cosmos": 0.12.135 - "@keplr-wallet/simple-fetch": 0.12.135 - "@keplr-wallet/stores": 0.12.135 - "@keplr-wallet/types": 0.12.135 - "@keplr-wallet/wc-client": 0.12.135 - "@keplr-wallet/wc-qrcode-modal": 0.12.135 + "@keplr-wallet/common": 0.12.136 + "@keplr-wallet/cosmos": 0.12.136 + "@keplr-wallet/simple-fetch": 0.12.136 + "@keplr-wallet/stores": 0.12.136 + "@keplr-wallet/types": 0.12.136 + "@keplr-wallet/wc-client": 0.12.136 + "@keplr-wallet/wc-qrcode-modal": 0.12.136 "@walletconnect/sign-client": ^2.13.3 "@walletconnect/types": ^2.13.3 buffer: ^6.0.3 @@ -9308,12 +9308,12 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/wc-client@0.12.135, @keplr-wallet/wc-client@workspace:packages/wc-client": +"@keplr-wallet/wc-client@0.12.136, @keplr-wallet/wc-client@workspace:packages/wc-client": version: 0.0.0-use.local resolution: "@keplr-wallet/wc-client@workspace:packages/wc-client" dependencies: - "@keplr-wallet/provider": 0.12.135 - "@keplr-wallet/types": 0.12.135 + "@keplr-wallet/provider": 0.12.136 + "@keplr-wallet/types": 0.12.136 buffer: ^6.0.3 deepmerge: ^4.2.2 long: ^3 || ^4 || ^5 @@ -9324,7 +9324,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/wc-qrcode-modal@0.12.135, @keplr-wallet/wc-qrcode-modal@workspace:packages/wc-qrcode-modal": +"@keplr-wallet/wc-qrcode-modal@0.12.136, @keplr-wallet/wc-qrcode-modal@workspace:packages/wc-qrcode-modal": version: 0.0.0-use.local resolution: "@keplr-wallet/wc-qrcode-modal@workspace:packages/wc-qrcode-modal" dependencies: @@ -20498,7 +20498,7 @@ __metadata: resolution: "cosmjs-test@workspace:packages/cosmjs-test" dependencies: "@cosmjs/stargate": ^0.29.3 - "@keplr-wallet/provider-mock": 0.12.135 + "@keplr-wallet/provider-mock": 0.12.136 secretjs: ^1.6.0 languageName: unknown linkType: soft