diff --git a/apps/extension/package.json b/apps/extension/package.json index 107725f9ba..41840c9b8e 100644 --- a/apps/extension/package.json +++ b/apps/extension/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/extension", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/background": "0.12.177", - "@keplr-wallet/chain-validator": "0.12.177", - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/hooks": "0.12.177", - "@keplr-wallet/hooks-internal": "0.12.177", - "@keplr-wallet/hooks-starknet": "0.12.177", - "@keplr-wallet/ledger-cosmos": "0.12.177", - "@keplr-wallet/popup": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/provider": "0.12.177", - "@keplr-wallet/router": "0.12.177", - "@keplr-wallet/router-extension": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/stores-core": "0.12.177", - "@keplr-wallet/stores-etc": "0.12.177", - "@keplr-wallet/stores-eth": "0.12.177", - "@keplr-wallet/stores-ibc": "0.12.177", - "@keplr-wallet/stores-internal": "0.12.177", - "@keplr-wallet/stores-starknet": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/analytics": "0.12.178-rc.1", + "@keplr-wallet/background": "0.12.178-rc.1", + "@keplr-wallet/chain-validator": "0.12.178-rc.1", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/hooks": "0.12.178-rc.1", + "@keplr-wallet/hooks-internal": "0.12.178-rc.1", + "@keplr-wallet/hooks-starknet": "0.12.178-rc.1", + "@keplr-wallet/ledger-cosmos": "0.12.178-rc.1", + "@keplr-wallet/popup": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/provider": "0.12.178-rc.1", + "@keplr-wallet/router": "0.12.178-rc.1", + "@keplr-wallet/router-extension": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/stores-core": "0.12.178-rc.1", + "@keplr-wallet/stores-etc": "0.12.178-rc.1", + "@keplr-wallet/stores-eth": "0.12.178-rc.1", + "@keplr-wallet/stores-ibc": "0.12.178-rc.1", + "@keplr-wallet/stores-internal": "0.12.178-rc.1", + "@keplr-wallet/stores-starknet": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "@keystonehq/animated-qr": "^0.8.6", "@keystonehq/hw-app-base": "0.1.1", "@keystonehq/hw-transport-webusb": "0.4.0", diff --git a/apps/extension/src/config.ts b/apps/extension/src/config.ts index eeab5443f5..fd1c3cd66e 100644 --- a/apps/extension/src/config.ts +++ b/apps/extension/src/config.ts @@ -3005,6 +3005,52 @@ export const EmbedChainInfos: (ChainInfo | ModularChainInfo)[] = [ }, features: [], }, + { + rpc: "https://rpc.derive.xyz/", + rest: "https://rpc.derive.xyz/", + evm: { + chainId: 957, + rpc: "https://rpc.derive.xyz/", + websocket: "wss://rpc.derive.xyz/", + }, + chainId: "eip155:957", + chainName: "Derive", + bip44: { + coinType: 60, + }, + currencies: [ + { + coinDenom: "ETH", + coinMinimalDenom: "derive-ethereum", + coinDecimals: 18, + coinGeckoId: "ethereum", + }, + { + type: "erc20", + contractAddress: "0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be", + coinDenom: "DRV", + coinMinimalDenom: "erc20:0xb1d1eae60eea9525032a6dcb4c1ce336a1de71be", + coinDecimals: 18, + coinGeckoId: "derive", + }, + { + type: "erc20", + contractAddress: "0x7499d654422023a407d92e1D83D387d81BC68De1", + coinDenom: "stDRV", + coinMinimalDenom: "erc20:0x7499d654422023a407d92e1D83D387d81BC68De1", + coinDecimals: 18, + }, + ], + feeCurrencies: [ + { + coinDenom: "ETH", + coinMinimalDenom: "derive-ethereum", + coinDecimals: 18, + coinGeckoId: "ethereum", + }, + ], + features: ["op-stack-l1-data-fee"], + }, ]; // The origins that are able to pass any permission that external webpages can have. diff --git a/apps/extension/src/manifest.v2.json b/apps/extension/src/manifest.v2.json index 351450009e..e668a5ca04 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.177", + "version": "0.12.178", "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 84d972063b..8bccb58af4 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.177", + "version": "0.12.178", "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 d60f5b46b5..34c86730c6 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.177", + "version": "0.12.178-rc.1", "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/hooks": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/stores-eth": "0.12.177", - "@keplr-wallet/stores-internal": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177" + "@keplr-wallet/hooks": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/stores-eth": "0.12.178-rc.1", + "@keplr-wallet/stores-internal": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1" }, "peerDependencies": { "mobx": "^6", diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 0a642fce18..a989708d2e 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/mobile", - "version": "0.12.177", + "version": "0.12.178-rc.1", "private": true, "installConfig": { "hoistingLimits": "workspaces" diff --git a/apps/stores-internal/package.json b/apps/stores-internal/package.json index 8fc24061fa..3d5a981a1c 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "joi": "^17.5.0", "utility-types": "^3.10.0" }, diff --git a/lerna.json b/lerna.json index fc9e3882fe..519048f696 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.12.177", + "version": "0.12.178-rc.1", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/analytics/package.json b/packages/analytics/package.json index 611ea26614..c9659103e7 100644 --- a/packages/analytics/package.json +++ b/packages/analytics/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/analytics", - "version": "0.12.177", + "version": "0.12.178-rc.1", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/background/package.json b/packages/background/package.json index b50518267e..3b239dce8f 100644 --- a/packages/background/package.json +++ b/packages/background/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/background", - "version": "0.12.177", + "version": "0.12.178-rc.1", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", @@ -28,17 +28,17 @@ "@ethersproject/hash": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@ethersproject/wallet": "^5.7.0", - "@keplr-wallet/chain-validator": "0.12.177", - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/ledger-cosmos": "0.12.177", - "@keplr-wallet/popup": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/router": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/chain-validator": "0.12.178-rc.1", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/ledger-cosmos": "0.12.178-rc.1", + "@keplr-wallet/popup": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/router": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "@ledgerhq/hw-app-eth": "^6.40.3", "@ledgerhq/hw-app-starknet": "^2.4.0", "@ledgerhq/hw-transport": "^6.31.4", diff --git a/packages/chain-validator/package.json b/packages/chain-validator/package.json index a30f2f316c..247728bfb6 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/types": "0.12.177", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", "joi": "^17.5.0", "utility-types": "^3.10.0" } diff --git a/packages/common/package.json b/packages/common/package.json index f9d63dcf2f..0c103f17a0 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/common", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/types": "0.12.177", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", "buffer": "^6.0.3", "delay": "^4.4.0" } diff --git a/packages/cosmjs-test/package.json b/packages/cosmjs-test/package.json index 0f92c172be..fbbf05de14 100644 --- a/packages/cosmjs-test/package.json +++ b/packages/cosmjs-test/package.json @@ -1,6 +1,6 @@ { "name": "cosmjs-test", - "version": "0.12.177", + "version": "0.12.178-rc.1", "author": "chainapsis", "license": "Apache-2.0", "private": true, @@ -12,7 +12,7 @@ }, "devDependencies": { "@cosmjs/stargate": "^0.29.3", - "@keplr-wallet/provider-mock": "0.12.177", + "@keplr-wallet/provider-mock": "0.12.178-rc.1", "secretjs": "^1.6.0" } } diff --git a/packages/cosmos/package.json b/packages/cosmos/package.json index f8d0d70785..06b73160ec 100644 --- a/packages/cosmos/package.json +++ b/packages/cosmos/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/cosmos", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "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 5b6170d3ae..1689d63e81 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/crypto", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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 bf982b75ca..cde95382ef 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/stores-etc": "0.12.177", - "@keplr-wallet/stores-eth": "0.12.177", - "@keplr-wallet/stores-starknet": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/background": "0.12.178-rc.1", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/stores-etc": "0.12.178-rc.1", + "@keplr-wallet/stores-eth": "0.12.178-rc.1", + "@keplr-wallet/stores-starknet": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "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 0f54da9a6d..5374770beb 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/hooks", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/stores-etc": "0.12.177", - "@keplr-wallet/stores-eth": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/background": "0.12.178-rc.1", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/stores-etc": "0.12.178-rc.1", + "@keplr-wallet/stores-eth": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "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 7ba51ce5ab..76347065aa 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.177", + "version": "0.12.178-rc.1", "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 f995b6df60..89dc97ba4b 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.177", + "version": "0.12.178-rc.1", "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.177" + "@keplr-wallet/types": "0.12.178-rc.1" }, "peerDependencies": { "mobx": "^6" diff --git a/packages/popup/package.json b/packages/popup/package.json index 0323b3976f..f47dec38e4 100644 --- a/packages/popup/package.json +++ b/packages/popup/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/popup", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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 42e3fc4bb6..42897ad903 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.177", + "version": "0.12.178-rc.1", "author": "chainapsis", "license": "Apache-2.0", "publishConfig": { diff --git a/packages/provider-extension/package.json b/packages/provider-extension/package.json index 96da0d39d7..52266fb1e4 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.177", + "version": "0.12.178-rc.1", "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.177", + "@keplr-wallet/types": "0.12.178-rc.1", "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 ecc0b969f8..4a8410ded7 100644 --- a/packages/provider-extension/src/version.ts +++ b/packages/provider-extension/src/version.ts @@ -1 +1 @@ -export const BUILD_VERSION = "0.12.177"; +export const BUILD_VERSION = "0.12.178"; diff --git a/packages/provider-mock/package.json b/packages/provider-mock/package.json index b3f4c3af99..9e1e5f7d87 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/provider": "0.12.177", - "@keplr-wallet/router": "0.12.177", - "@keplr-wallet/types": "0.12.177", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/provider": "0.12.178-rc.1", + "@keplr-wallet/router": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", "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 3bd56af246..1092392220 100644 --- a/packages/provider/package.json +++ b/packages/provider/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/provider", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/types": "0.12.177", + "@keplr-wallet/router": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", "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 6b3c7205d0..1fc9e1daca 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/router": "0.12.177" + "@keplr-wallet/popup": "0.12.178-rc.1", + "@keplr-wallet/router": "0.12.178-rc.1" } } diff --git a/packages/router-mock/package.json b/packages/router-mock/package.json index 107f43d608..022f569b4a 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/router-extension": "0.12.177" + "@keplr-wallet/router": "0.12.178-rc.1", + "@keplr-wallet/router-extension": "0.12.178-rc.1" } } diff --git a/packages/router/package.json b/packages/router/package.json index a643859c6c..fd2a1e6dd5 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/router", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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 feb681e0ce..829b2fb131 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.177", + "version": "0.12.178-rc.1", "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 71d540cb38..79fef54b70 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/router": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/types": "0.12.177", + "@keplr-wallet/background": "0.12.178-rc.1", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/router": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", "buffer": "^6.0.3" }, "peerDependencies": { diff --git a/packages/stores-etc/package.json b/packages/stores-etc/package.json index cf8360021a..bf5581ceb2 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "utility-types": "^3.10.0" }, "peerDependencies": { diff --git a/packages/stores-eth/package.json b/packages/stores-eth/package.json index 2780b5a670..3439b3c1d5 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "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 e497fb0a3c..7cc1378adb 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/stores-eth": "0.12.177", - "@keplr-wallet/types": "0.12.177" + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/stores-eth": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1" }, "peerDependencies": { "mobx": "^6", diff --git a/packages/stores-starknet/package.json b/packages/stores-starknet/package.json index f4971fc185..5c8e14a669 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "big-integer": "^1.6.48", "utility-types": "^3.10.0" }, diff --git a/packages/stores/package.json b/packages/stores/package.json index b6cf3baf43..c636fc52ed 100644 --- a/packages/stores/package.json +++ b/packages/stores/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/stores", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177" + "@keplr-wallet/provider-mock": "0.12.178-rc.1" }, "dependencies": { - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/crypto": "0.12.177", - "@keplr-wallet/mobx-utils": "0.12.177", - "@keplr-wallet/proto-types": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/unit": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/crypto": "0.12.178-rc.1", + "@keplr-wallet/mobx-utils": "0.12.178-rc.1", + "@keplr-wallet/proto-types": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/unit": "0.12.178-rc.1", "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 3ffa3f3d4f..8a5f818258 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/types", - "version": "0.12.177", + "version": "0.12.178-rc.1", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/packages/unit/package.json b/packages/unit/package.json index 9d8f35dc0e..bcf71f786d 100644 --- a/packages/unit/package.json +++ b/packages/unit/package.json @@ -1,6 +1,6 @@ { "name": "@keplr-wallet/unit", - "version": "0.12.177", + "version": "0.12.178-rc.1", "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.177", + "@keplr-wallet/types": "0.12.178-rc.1", "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 cac080f8d0..04d98c8e55 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.177", + "version": "0.12.178-rc.1", "author": "chainapsis", "license": "Apache-2.0", "private": true, @@ -8,13 +8,13 @@ "serve": "parcel ./src/index.html" }, "dependencies": { - "@keplr-wallet/common": "0.12.177", - "@keplr-wallet/cosmos": "0.12.177", - "@keplr-wallet/simple-fetch": "0.12.177", - "@keplr-wallet/stores": "0.12.177", - "@keplr-wallet/types": "0.12.177", - "@keplr-wallet/wc-client": "0.12.177", - "@keplr-wallet/wc-qrcode-modal": "0.12.177", + "@keplr-wallet/common": "0.12.178-rc.1", + "@keplr-wallet/cosmos": "0.12.178-rc.1", + "@keplr-wallet/simple-fetch": "0.12.178-rc.1", + "@keplr-wallet/stores": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", + "@keplr-wallet/wc-client": "0.12.178-rc.1", + "@keplr-wallet/wc-qrcode-modal": "0.12.178-rc.1", "@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 263759886c..aaf634802d 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.177", + "version": "0.12.178-rc.1", "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.177", - "@keplr-wallet/types": "0.12.177", + "@keplr-wallet/provider": "0.12.178-rc.1", + "@keplr-wallet/types": "0.12.178-rc.1", "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 2780543107..45a7453aa0 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.177", + "version": "0.12.178-rc.1", "main": "build/index.js", "author": "chainapsis", "license": "Apache-2.0", diff --git a/yarn.lock b/yarn.lock index fb3d2e106f..de286863ea 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8656,13 +8656,13 @@ __metadata: languageName: node linkType: hard -"@keplr-wallet/analytics@0.12.177, @keplr-wallet/analytics@workspace:packages/analytics": +"@keplr-wallet/analytics@0.12.178-rc.1, @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.177, @keplr-wallet/background@workspace:packages/background": +"@keplr-wallet/background@0.12.178-rc.1, @keplr-wallet/background@workspace:packages/background": version: 0.0.0-use.local resolution: "@keplr-wallet/background@workspace:packages/background" dependencies: @@ -8672,17 +8672,17 @@ __metadata: "@ethersproject/hash": ^5.7.0 "@ethersproject/transactions": ^5.7.0 "@ethersproject/wallet": ^5.7.0 - "@keplr-wallet/chain-validator": 0.12.177 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/ledger-cosmos": 0.12.177 - "@keplr-wallet/popup": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/router": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/chain-validator": 0.12.178-rc.1 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/ledger-cosmos": 0.12.178-rc.1 + "@keplr-wallet/popup": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/router": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 "@ledgerhq/hw-app-eth": ^6.40.3 "@ledgerhq/hw-app-starknet": ^2.4.0 "@ledgerhq/hw-transport": ^6.31.4 @@ -8711,41 +8711,41 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/chain-validator@0.12.177, @keplr-wallet/chain-validator@workspace:packages/chain-validator": +"@keplr-wallet/chain-validator@0.12.178-rc.1, @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.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 joi: ^17.5.0 utility-types: ^3.10.0 languageName: unknown linkType: soft -"@keplr-wallet/common@0.12.177, @keplr-wallet/common@workspace:packages/common": +"@keplr-wallet/common@0.12.178-rc.1, @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.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 buffer: ^6.0.3 delay: ^4.4.0 languageName: unknown linkType: soft -"@keplr-wallet/cosmos@0.12.177, @keplr-wallet/cosmos@workspace:packages/cosmos": +"@keplr-wallet/cosmos@0.12.178-rc.1, @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.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 bech32: ^1.1.4 buffer: ^6.0.3 long: ^4.0.0 @@ -8753,7 +8753,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/crypto@0.12.177, @keplr-wallet/crypto@workspace:packages/crypto": +"@keplr-wallet/crypto@0.12.178-rc.1, @keplr-wallet/crypto@workspace:packages/crypto": version: 0.0.0-use.local resolution: "@keplr-wallet/crypto@workspace:packages/crypto" dependencies: @@ -8781,31 +8781,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.177 - "@keplr-wallet/background": 0.12.177 - "@keplr-wallet/chain-validator": 0.12.177 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/hooks": 0.12.177 - "@keplr-wallet/hooks-internal": 0.12.177 - "@keplr-wallet/hooks-starknet": 0.12.177 - "@keplr-wallet/ledger-cosmos": 0.12.177 - "@keplr-wallet/popup": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/provider": 0.12.177 - "@keplr-wallet/router": 0.12.177 - "@keplr-wallet/router-extension": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/stores-core": 0.12.177 - "@keplr-wallet/stores-etc": 0.12.177 - "@keplr-wallet/stores-eth": 0.12.177 - "@keplr-wallet/stores-ibc": 0.12.177 - "@keplr-wallet/stores-internal": 0.12.177 - "@keplr-wallet/stores-starknet": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/analytics": 0.12.178-rc.1 + "@keplr-wallet/background": 0.12.178-rc.1 + "@keplr-wallet/chain-validator": 0.12.178-rc.1 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/hooks": 0.12.178-rc.1 + "@keplr-wallet/hooks-internal": 0.12.178-rc.1 + "@keplr-wallet/hooks-starknet": 0.12.178-rc.1 + "@keplr-wallet/ledger-cosmos": 0.12.178-rc.1 + "@keplr-wallet/popup": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/provider": 0.12.178-rc.1 + "@keplr-wallet/router": 0.12.178-rc.1 + "@keplr-wallet/router-extension": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/stores-core": 0.12.178-rc.1 + "@keplr-wallet/stores-etc": 0.12.178-rc.1 + "@keplr-wallet/stores-eth": 0.12.178-rc.1 + "@keplr-wallet/stores-ibc": 0.12.178-rc.1 + "@keplr-wallet/stores-internal": 0.12.178-rc.1 + "@keplr-wallet/stores-starknet": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 "@keystonehq/animated-qr": ^0.8.6 "@keystonehq/hw-app-base": 0.1.1 "@keystonehq/hw-transport-webusb": 0.4.0 @@ -8903,16 +8903,16 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/hooks-internal@0.12.177, @keplr-wallet/hooks-internal@workspace:apps/hooks-internal": +"@keplr-wallet/hooks-internal@0.12.178-rc.1, @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.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/stores-eth": 0.12.177 - "@keplr-wallet/stores-internal": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/hooks": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/stores-eth": 0.12.178-rc.1 + "@keplr-wallet/stores-internal": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 peerDependencies: mobx: ^6 mobx-utils: ^6 @@ -8920,24 +8920,24 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/hooks-starknet@0.12.177, @keplr-wallet/hooks-starknet@workspace:packages/hooks-starknet": +"@keplr-wallet/hooks-starknet@0.12.178-rc.1, @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.177 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/stores-etc": 0.12.177 - "@keplr-wallet/stores-eth": 0.12.177 - "@keplr-wallet/stores-starknet": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/background": 0.12.178-rc.1 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/stores-etc": 0.12.178-rc.1 + "@keplr-wallet/stores-eth": 0.12.178-rc.1 + "@keplr-wallet/stores-starknet": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 buffer: ^6.0.3 long: ^4.0.0 utility-types: ^3.10.0 @@ -8949,23 +8949,23 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/hooks@0.12.177, @keplr-wallet/hooks@workspace:packages/hooks": +"@keplr-wallet/hooks@0.12.178-rc.1, @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.177 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/stores-etc": 0.12.177 - "@keplr-wallet/stores-eth": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/background": 0.12.178-rc.1 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/stores-etc": 0.12.178-rc.1 + "@keplr-wallet/stores-eth": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 buffer: ^6.0.3 long: ^4.0.0 utility-types: ^3.10.0 @@ -8976,7 +8976,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/ledger-cosmos@0.12.177, @keplr-wallet/ledger-cosmos@workspace:packages/ledger-cosmos": +"@keplr-wallet/ledger-cosmos@0.12.178-rc.1, @keplr-wallet/ledger-cosmos@workspace:packages/ledger-cosmos": version: 0.0.0-use.local resolution: "@keplr-wallet/ledger-cosmos@workspace:packages/ledger-cosmos" dependencies: @@ -9089,23 +9089,23 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/mobx-utils@0.12.177, @keplr-wallet/mobx-utils@workspace:packages/mobx-utils": +"@keplr-wallet/mobx-utils@0.12.178-rc.1, @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.177 + "@keplr-wallet/types": 0.12.178-rc.1 peerDependencies: mobx: ^6 languageName: unknown linkType: soft -"@keplr-wallet/popup@0.12.177, @keplr-wallet/popup@workspace:packages/popup": +"@keplr-wallet/popup@0.12.178-rc.1, @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.177, @keplr-wallet/proto-types@workspace:packages/proto-types": +"@keplr-wallet/proto-types@0.12.178-rc.1, @keplr-wallet/proto-types@workspace:packages/proto-types": version: 0.0.0-use.local resolution: "@keplr-wallet/proto-types@workspace:packages/proto-types" dependencies: @@ -9119,7 +9119,7 @@ __metadata: version: 0.0.0-use.local resolution: "@keplr-wallet/provider-extension@workspace:packages/provider-extension" dependencies: - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/types": 0.12.178-rc.1 deepmerge: ^4.2.2 long: ^4.0.0 peerDependencies: @@ -9127,16 +9127,16 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/provider-mock@0.12.177, @keplr-wallet/provider-mock@workspace:packages/provider-mock": +"@keplr-wallet/provider-mock@0.12.178-rc.1, @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.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/provider": 0.12.177 - "@keplr-wallet/router": 0.12.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/provider": 0.12.178-rc.1 + "@keplr-wallet/router": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 buffer: ^6.0.3 deepmerge: ^4.2.2 long: ^4.0.0 @@ -9145,12 +9145,12 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/provider@0.12.177, @keplr-wallet/provider@workspace:packages/provider": +"@keplr-wallet/provider@0.12.178-rc.1, @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.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/router": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 buffer: ^6.0.3 deepmerge: ^4.2.2 long: ^4.0.0 @@ -9159,12 +9159,12 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/router-extension@0.12.177, @keplr-wallet/router-extension@workspace:packages/router-extension": +"@keplr-wallet/router-extension@0.12.178-rc.1, @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.177 - "@keplr-wallet/router": 0.12.177 + "@keplr-wallet/popup": 0.12.178-rc.1 + "@keplr-wallet/router": 0.12.178-rc.1 languageName: unknown linkType: soft @@ -9172,34 +9172,34 @@ __metadata: version: 0.0.0-use.local resolution: "@keplr-wallet/router-mock@workspace:packages/router-mock" dependencies: - "@keplr-wallet/router": 0.12.177 - "@keplr-wallet/router-extension": 0.12.177 + "@keplr-wallet/router": 0.12.178-rc.1 + "@keplr-wallet/router-extension": 0.12.178-rc.1 languageName: unknown linkType: soft -"@keplr-wallet/router@0.12.177, @keplr-wallet/router@workspace:packages/router": +"@keplr-wallet/router@0.12.178-rc.1, @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.177, @keplr-wallet/simple-fetch@workspace:packages/simple-fetch": +"@keplr-wallet/simple-fetch@0.12.178-rc.1, @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.177, @keplr-wallet/stores-core@workspace:packages/stores-core": +"@keplr-wallet/stores-core@0.12.178-rc.1, @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.177 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/router": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/background": 0.12.178-rc.1 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/router": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 buffer: ^6.0.3 peerDependencies: mobx: ^6 @@ -9208,16 +9208,16 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-etc@0.12.177, @keplr-wallet/stores-etc@workspace:packages/stores-etc": +"@keplr-wallet/stores-etc@0.12.178-rc.1, @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.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 utility-types: ^3.10.0 peerDependencies: mobx: ^6 @@ -9225,7 +9225,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-eth@0.12.177, @keplr-wallet/stores-eth@workspace:packages/stores-eth": +"@keplr-wallet/stores-eth@0.12.178-rc.1, @keplr-wallet/stores-eth@workspace:packages/stores-eth": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-eth@workspace:packages/stores-eth" dependencies: @@ -9234,11 +9234,11 @@ __metadata: "@ethersproject/bytes": ^5.7.0 "@ethersproject/transactions": ^5.7.0 "@ethersproject/units": ^5.7.0 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 big-integer: ^1.6.48 utility-types: ^3.10.0 peerDependencies: @@ -9247,31 +9247,31 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-ibc@0.12.177, @keplr-wallet/stores-ibc@workspace:packages/stores-ibc": +"@keplr-wallet/stores-ibc@0.12.178-rc.1, @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.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/stores-eth": 0.12.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/stores-eth": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 peerDependencies: mobx: ^6 mobx-utils: ^6 languageName: unknown linkType: soft -"@keplr-wallet/stores-internal@0.12.177, @keplr-wallet/stores-internal@workspace:apps/stores-internal": +"@keplr-wallet/stores-internal@0.12.178-rc.1, @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.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 joi: ^17.5.0 utility-types: ^3.10.0 peerDependencies: @@ -9280,7 +9280,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores-starknet@0.12.177, @keplr-wallet/stores-starknet@workspace:packages/stores-starknet": +"@keplr-wallet/stores-starknet@0.12.178-rc.1, @keplr-wallet/stores-starknet@workspace:packages/stores-starknet": version: 0.0.0-use.local resolution: "@keplr-wallet/stores-starknet@workspace:packages/stores-starknet" dependencies: @@ -9289,11 +9289,11 @@ __metadata: "@ethersproject/bytes": ^5.7.0 "@ethersproject/transactions": ^5.7.0 "@ethersproject/units": ^5.7.0 - "@keplr-wallet/common": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 big-integer: ^1.6.48 utility-types: ^3.10.0 peerDependencies: @@ -9303,19 +9303,19 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/stores@0.12.177, @keplr-wallet/stores@workspace:packages/stores": +"@keplr-wallet/stores@0.12.178-rc.1, @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.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/crypto": 0.12.177 - "@keplr-wallet/mobx-utils": 0.12.177 - "@keplr-wallet/proto-types": 0.12.177 - "@keplr-wallet/provider-mock": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/unit": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/crypto": 0.12.178-rc.1 + "@keplr-wallet/mobx-utils": 0.12.178-rc.1 + "@keplr-wallet/proto-types": 0.12.178-rc.1 + "@keplr-wallet/provider-mock": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/unit": 0.12.178-rc.1 buffer: ^6.0.3 deepmerge: ^4.2.2 eventemitter3: ^4.0.7 @@ -9328,7 +9328,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/types@0.12.177, @keplr-wallet/types@workspace:packages/types": +"@keplr-wallet/types@0.12.178-rc.1, @keplr-wallet/types@workspace:packages/types": version: 0.0.0-use.local resolution: "@keplr-wallet/types@workspace:packages/types" dependencies: @@ -9338,11 +9338,11 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/unit@0.12.177, @keplr-wallet/unit@workspace:packages/unit": +"@keplr-wallet/unit@0.12.178-rc.1, @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.177 + "@keplr-wallet/types": 0.12.178-rc.1 big-integer: ^1.6.48 utility-types: ^3.10.0 languageName: unknown @@ -9352,13 +9352,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.177 - "@keplr-wallet/cosmos": 0.12.177 - "@keplr-wallet/simple-fetch": 0.12.177 - "@keplr-wallet/stores": 0.12.177 - "@keplr-wallet/types": 0.12.177 - "@keplr-wallet/wc-client": 0.12.177 - "@keplr-wallet/wc-qrcode-modal": 0.12.177 + "@keplr-wallet/common": 0.12.178-rc.1 + "@keplr-wallet/cosmos": 0.12.178-rc.1 + "@keplr-wallet/simple-fetch": 0.12.178-rc.1 + "@keplr-wallet/stores": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 + "@keplr-wallet/wc-client": 0.12.178-rc.1 + "@keplr-wallet/wc-qrcode-modal": 0.12.178-rc.1 "@walletconnect/sign-client": ^2.13.3 "@walletconnect/types": ^2.13.3 buffer: ^6.0.3 @@ -9370,12 +9370,12 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/wc-client@0.12.177, @keplr-wallet/wc-client@workspace:packages/wc-client": +"@keplr-wallet/wc-client@0.12.178-rc.1, @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.177 - "@keplr-wallet/types": 0.12.177 + "@keplr-wallet/provider": 0.12.178-rc.1 + "@keplr-wallet/types": 0.12.178-rc.1 buffer: ^6.0.3 deepmerge: ^4.2.2 long: ^3 || ^4 || ^5 @@ -9386,7 +9386,7 @@ __metadata: languageName: unknown linkType: soft -"@keplr-wallet/wc-qrcode-modal@0.12.177, @keplr-wallet/wc-qrcode-modal@workspace:packages/wc-qrcode-modal": +"@keplr-wallet/wc-qrcode-modal@0.12.178-rc.1, @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: @@ -20886,7 +20886,7 @@ __metadata: resolution: "cosmjs-test@workspace:packages/cosmjs-test" dependencies: "@cosmjs/stargate": ^0.29.3 - "@keplr-wallet/provider-mock": 0.12.177 + "@keplr-wallet/provider-mock": 0.12.178-rc.1 secretjs: ^1.6.0 languageName: unknown linkType: soft