Skip to content

Commit a7bcf03

Browse files
committed
fix: fixed type mistmatch from chainify
1 parent 50ce990 commit a7bcf03

File tree

9 files changed

+237
-89
lines changed

9 files changed

+237
-89
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "liquality-wallet",
3-
"version": "0.86.0",
3+
"version": "0.87.0",
44
"private": true,
55
"author": "Liquality <info@liquality.io>",
66
"scripts": {
@@ -23,14 +23,14 @@
2323
"devtools": "node_modules/.bin/vue-devtools"
2424
},
2525
"dependencies": {
26-
"@chainify/hw-ledger": "2.4.0",
27-
"@liquality/cryptoassets": "2.9.0",
28-
"@liquality/error-parser": "2.2.8",
26+
"@chainify/hw-ledger": "2.4.1",
27+
"@liquality/cryptoassets": "2.10.0",
28+
"@liquality/error-parser": "2.2.9",
2929
"@liquality/ethereum-utils": "^1.13.12",
3030
"@liquality/terra-networks": "^1.13.12",
3131
"@liquality/types": "^1.13.12",
32-
"@liquality/wallet-core": "4.23.0",
33-
"@terra-money/terra.js": "^3.1.6",
32+
"@liquality/wallet-core": "4.24.0",
33+
"@terra-money/terra.js": "3.1.6",
3434
"@testing-library/vue": "^5.8.2",
3535
"amplitude-js": "8.18.2",
3636
"bignumber.js": "9.1.1",
@@ -57,7 +57,7 @@
5757
"qrcode": "1.5.0",
5858
"qs": "6.10.3",
5959
"setimmediate": "^1.0.5",
60-
"socket.io-client": "4.5.2",
60+
"socket.io-client": "4.6.1",
6161
"svg-url-loader": "7.1.1",
6262
"uuid": "^8.1.0",
6363
"v-tooltip": "^2.0.3",

src/locales/cb/whats_new.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Now you can use Teleswap Swap Provider http://teleswap.xyz to wrap/unwrap and exchange services for BTC using a trustless light client bridge.",
7-
"You can now use a Ledger device to interact with the Ethereum, Polygon, BSC, Arbitrum, Avalanche, Rootstock, and Bitcoin networks!"
6+
"Fixes for Nft screen and node providers."
87
]
98
},
109
{

src/locales/en/whats_new.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Now you can use Teleswap Swap Provider http://teleswap.xyz to wrap/unwrap and exchange services for BTC using a trustless light client bridge.",
7-
"You can now use a Ledger device to interact with the Ethereum, Polygon, BSC, Arbitrum, Avalanche, Rootstock, and Bitcoin networks!"
6+
"Fixes for Nft screen and node providers."
87
]
98
},
109
{

src/locales/es/whats_new.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Now you can use Teleswap Swap Provider http://teleswap.xyz to wrap/unwrap and exchange services for BTC using a trustless light client bridge.",
7-
"You can now use a Ledger device to interact with the Ethereum, Polygon, BSC, Arbitrum, Avalanche, Rootstock, and Bitcoin networks!"
6+
"Fixes for Nft screen and node providers."
87
]
98
},
109
{

src/locales/ph/whats_new.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Now you can use Teleswap Swap Provider http://teleswap.xyz to wrap/unwrap and exchange services for BTC using a trustless light client bridge.",
7-
"You can now use a Ledger device to interact with the Ethereum, Polygon, BSC, Arbitrum, Avalanche, Rootstock, and Bitcoin networks!"
6+
"Fixes for Nft screen and node providers."
87
]
98
},
109
{

src/locales/pt/whats_new.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Now you can use Teleswap Swap Provider http://teleswap.xyz to wrap/unwrap and exchange services for BTC using a trustless light client bridge.",
7-
"You can now use a Ledger device to interact with the Ethereum, Polygon, BSC, Arbitrum, Avalanche, Rootstock, and Bitcoin networks!"
6+
"Fixes for Nft screen and node providers."
87
]
98
},
109
{

src/locales/zh/whats_new.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"page": "1",
44
"title": "What's New?",
55
"content": [
6-
"Now you can use Teleswap Swap Provider http://teleswap.xyz to wrap/unwrap and exchange services for BTC using a trustless light client bridge.",
7-
"You can now use a Ledger device to interact with the Ethereum, Polygon, BSC, Arbitrum, Avalanche, Rootstock, and Bitcoin networks!"
6+
"Fixes for Nft screen and node providers."
87
]
98
},
109
{

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": 2,
3-
"version": "0.86.0",
3+
"version": "0.87.0",
44
"name": "__MSG_appName__",
55
"description": "__MSG_appDesc__",
66
"default_locale": "en",

0 commit comments

Comments
 (0)