Skip to content

Commit f0c24a0

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/master' into subwallet-dev
2 parents 673054a + a9448c5 commit f0c24a0

37 files changed

+173
-128
lines changed

.123trigger

+2-1
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,5 @@
135135
1.1.65
136136
1.1.66
137137
1.1.67
138-
1.1.68
138+
1.1.68
139+
1.2.2

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# CHANGELOG
22

3+
## 1.2.2
4+
Build date: May 30, 2024.
5+
6+
Features & Update:
7+
- Remove support for Moonbeam on Polkadot vault (#3056)
8+
- Update UI for Earning position details (#3127)
9+
- Remove the logic that differentiates between Native tokens and Local tokens in case show sub-logo (#3075)
10+
- Show duplicate transaction history when transfer local token (#2613)
11+
12+
Bugs fixed:
13+
- Fixed some bug related to MV3 (#3146)
14+
- Timing logic to display seed phrase backup prompt popup
15+
- Bug disconnect port
16+
317
## 1.2.1
418
Build date: May 28, 2024.
519

CONTRIBUTORS

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
2633 AnhMTV Release version 1.2.1
1+
2643 AnhMTV Release version 1.2.2
22
2355 Nam Phạm [Issue 3129] fix: force apply patch
3-
2050 S2kael [Issue-3121] Fix HTTP provider error when subscribe tx status
3+
2060 S2kael [Issue-3121] Fix HTTP provider error when subscribe tx status
44
815 lw-cdm Fix eslint issues
55
465 Jaco 0.42.5 (#969)
6-
416 nguyentiendung [Issue-2914] Update yarn.lock
6+
425 nguyentiendung
77
185 quangdo
88
150 bluezdot [Issue-3088] Update logo earning option
99
129 Thiendekaco [Issue 3117] [fix] [mv3] Extension - Still show icon ZK mode on Export account screen in case upgrade version MV2 -> MV3

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/Koniverse/Subwallet-V2.git"
1111
},
1212
"sideEffects": false,
13-
"version": "1.2.1",
13+
"version": "1.2.2",
1414
"workspaces": [
1515
"packages/*"
1616
],

packages/extension-base/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"./detectPackage.cjs"
1818
],
1919
"type": "module",
20-
"version": "1.2.1",
20+
"version": "1.2.2-0",
2121
"main": "index.js",
2222
"dependencies": {
2323
"@acala-network/api": "^5.0.2",
@@ -53,10 +53,10 @@
5353
"@sora-substrate/type-definitions": "^1.17.7",
5454
"@substrate/connect": "^0.8.9",
5555
"@subwallet/chain-list": "0.2.65",
56-
"@subwallet/extension-base": "^1.2.1",
57-
"@subwallet/extension-chains": "^1.2.1",
58-
"@subwallet/extension-dapp": "^1.2.1",
59-
"@subwallet/extension-inject": "^1.2.1",
56+
"@subwallet/extension-base": "^1.2.2-0",
57+
"@subwallet/extension-chains": "^1.2.2-0",
58+
"@subwallet/extension-dapp": "^1.2.2-0",
59+
"@subwallet/extension-inject": "^1.2.2-0",
6060
"@subwallet/keyring": "^0.1.5",
6161
"@subwallet/ui-keyring": "^0.1.5",
6262
"@walletconnect/keyvaluestorage": "^1.1.1",
@@ -96,7 +96,7 @@
9696
"web3-utils": "^1.10.0"
9797
},
9898
"devDependencies": {
99-
"@subwallet/extension-mocks": "^1.2.1",
99+
"@subwallet/extension-mocks": "^1.2.2-0",
100100
"@types/uuid": "^9.0.1"
101101
}
102102
}

packages/extension-base/src/packageInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@subwallet/extension-base', path: 'auto', type: 'auto', version: '1.2.1' };
6+
export const packageInfo = { name: '@subwallet/extension-base', path: 'auto', type: 'auto', version: '1.2.2-0' };

packages/extension-chains/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"./detectPackage.cjs"
1818
],
1919
"type": "module",
20-
"version": "1.2.1",
20+
"version": "1.2.2-0",
2121
"main": "index.js",
2222
"dependencies": {
2323
"@babel/runtime": "^7.20.6",
2424
"@polkadot/networks": "^12.6.2",
2525
"@polkadot/util": "^12.6.2",
2626
"@polkadot/util-crypto": "^12.6.2",
27-
"@subwallet/extension-inject": "^1.2.1"
27+
"@subwallet/extension-inject": "^1.2.2-0"
2828
},
2929
"peerDependencies": {
3030
"@polkadot/api": "*",

packages/extension-chains/src/packageInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@subwallet/extension-chains', path: 'auto', type: 'auto', version: '1.2.1' };
6+
export const packageInfo = { name: '@subwallet/extension-chains', path: 'auto', type: 'auto', version: '1.2.2-0' };

packages/extension-compat-metamask/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"./detectPackage.cjs"
1818
],
1919
"type": "module",
20-
"version": "1.2.1",
20+
"version": "1.2.2-0",
2121
"main": "index.js",
2222
"dependencies": {
2323
"@babel/runtime": "^7.20.6",
2424
"@metamask/detect-provider": "^1.2.0",
2525
"@polkadot/types": "^11.0.3",
2626
"@polkadot/util": "^12.6.2",
27-
"@subwallet/extension-inject": "^1.2.1",
27+
"@subwallet/extension-inject": "^1.2.2-0",
2828
"web3": "^1.10.0"
2929
},
3030
"peerDependencies": {

packages/extension-compat-metamask/src/packageInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@subwallet/extension-compat-metamask', path: 'auto', type: 'auto', version: '1.2.1' };
6+
export const packageInfo = { name: '@subwallet/extension-compat-metamask', path: 'auto', type: 'auto', version: '1.2.2-0' };

packages/extension-dapp/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
"./detectPackage.cjs"
1818
],
1919
"type": "module",
20-
"version": "1.2.1",
20+
"version": "1.2.2-0",
2121
"main": "index.js",
2222
"dependencies": {
2323
"@babel/runtime": "^7.20.6",
2424
"@polkadot/util": "^12.6.2",
2525
"@polkadot/util-crypto": "^12.6.2",
26-
"@subwallet/extension-inject": "^1.2.1"
26+
"@subwallet/extension-inject": "^1.2.2-0"
2727
},
2828
"peerDependencies": {
2929
"@polkadot/api": "*",

packages/extension-dapp/src/packageInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@subwallet/extension-dapp', path: 'auto', type: 'auto', version: '1.2.1' };
6+
export const packageInfo = { name: '@subwallet/extension-dapp', path: 'auto', type: 'auto', version: '1.2.2-0' };

packages/extension-inject/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"sideEffects": true,
1616
"type": "module",
17-
"version": "1.2.1",
17+
"version": "1.2.2-0",
1818
"main": "index.js",
1919
"dependencies": {
2020
"@babel/runtime": "^7.20.6",

packages/extension-inject/src/packageInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@subwallet/extension-inject', path: 'auto', type: 'auto', version: '1.2.1' };
6+
export const packageInfo = { name: '@subwallet/extension-inject', path: 'auto', type: 'auto', version: '1.2.2-0' };

packages/extension-koni-ui/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"sideEffects": true,
1616
"type": "module",
17-
"version": "1.2.1",
17+
"version": "1.2.2-0",
1818
"dependencies": {
1919
"@babel/runtime": "^7.20.6",
2020
"@coinbase/cbpay-js": "^1.7.0",
@@ -35,10 +35,10 @@
3535
"@ramonak/react-progress-bar": "^5.0.3",
3636
"@reduxjs/toolkit": "^1.9.1",
3737
"@subwallet/chain-list": "0.2.65",
38-
"@subwallet/extension-base": "^1.2.1",
39-
"@subwallet/extension-chains": "^1.2.1",
40-
"@subwallet/extension-dapp": "^1.2.1",
41-
"@subwallet/extension-inject": "^1.2.1",
38+
"@subwallet/extension-base": "^1.2.2-0",
39+
"@subwallet/extension-chains": "^1.2.2-0",
40+
"@subwallet/extension-dapp": "^1.2.2-0",
41+
"@subwallet/extension-inject": "^1.2.2-0",
4242
"@subwallet/keyring": "^0.1.5",
4343
"@subwallet/react-ui": "5.1.2-b77",
4444
"@subwallet/ui-keyring": "^0.1.5",
@@ -84,7 +84,7 @@
8484
"usehooks-ts": "^2.9.1"
8585
},
8686
"devDependencies": {
87-
"@subwallet/extension-mocks": "^1.2.1",
87+
"@subwallet/extension-mocks": "^1.2.2-0",
8888
"@types/bn.js": "^5.1.1",
8989
"@types/enzyme": "^3.10.12",
9090
"@types/enzyme-adapter-react-16": "^1.0.6",

packages/extension-koni/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
},
1515
"sideEffects": false,
1616
"type": "module",
17-
"version": "1.2.1",
17+
"version": "1.2.2-0",
1818
"dependencies": {
1919
"@babel/runtime": "^7.20.6",
20-
"@subwallet/extension-base": "^1.2.1",
21-
"@subwallet/extension-inject": "^1.2.1",
22-
"@subwallet/extension-koni-ui": "^1.2.1"
20+
"@subwallet/extension-base": "^1.2.2-0",
21+
"@subwallet/extension-inject": "^1.2.2-0",
22+
"@subwallet/extension-koni-ui": "^1.2.2-0"
2323
},
2424
"devDependencies": {
2525
"@polkadot/dev": "^0.65.23",

packages/extension-koni/public/locales/en/translation.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@
314314
"Your metadata is out of date": "",
315315
"Decimal": "",
316316
"Spec Version": "",
317-
"This feature is not available for": "",
318-
"Please change to another account type.": "",
319317
"Back to home": "",
320318
"Signature request": "",
321319
"Validator": "",
@@ -1252,5 +1250,9 @@
12521250
"If you lose your seed phrases/private keys/JSON backup files/QR backup codes, your accounts can't be recovered and your assets are lost. Learn how to back up your accounts to secure your assets now.": "",
12531251
"Update successful": "",
12541252
"Your SubWallet extension is updated to Manifest V3!": "",
1255-
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": ""
1253+
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": "",
1254+
"EVM QR signer account": "",
1255+
"Substrate QR signer account": "",
1256+
"Invalid QR code. EVM networks are not supported": "",
1257+
"Feature not available for <highlight>{{accountTitle}}</highlight>. Change to another account type and try again.": ""
12561258
}

packages/extension-koni/public/locales/ja/translation.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@
314314
"Your metadata is out of date": "あなたのメタデータは古くなっています",
315315
"Decimal": "小数",
316316
"Spec Version": "スペックバージョン",
317-
"This feature is not available for": "この機能は利用できません",
318-
"Please change to another account type.": "別のアカウントタイプに変更してください。",
319317
"Back to home": "ホームに戻る",
320318
"Signature request": "署名依頼",
321319
"Validator": "バリデーター",
@@ -1252,5 +1250,9 @@
12521250
"If you lose your seed phrases/private keys/JSON backup files/QR backup codes, your accounts can't be recovered and your assets are lost. Learn how to back up your accounts to secure your assets now.": "",
12531251
"Update successful": "",
12541252
"Your SubWallet extension is updated to Manifest V3!": "",
1255-
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": ""
1253+
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": "",
1254+
"EVM QR signer account": "",
1255+
"Substrate QR signer account": "",
1256+
"Invalid QR code. EVM networks are not supported": "",
1257+
"Feature not available for <highlight>{{accountTitle}}</highlight>. Change to another account type and try again.": ""
12561258
}

packages/extension-koni/public/locales/ru/translation.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@
314314
"Your metadata is out of date": "Ваши метаданные устарели",
315315
"Decimal": "Десятичная",
316316
"Spec Version": "Спецификация",
317-
"This feature is not available for": "Эта функция недоступна для",
318-
"Please change to another account type.": "Пожалуйста, измените тип аккаунта на другой",
319317
"Back to home": "Вернуться на главную",
320318
"Signature request": "Запрос подписи",
321319
"Validator": "Валидатор",
@@ -1252,5 +1250,9 @@
12521250
"If you lose your seed phrases/private keys/JSON backup files/QR backup codes, your accounts can't be recovered and your assets are lost. Learn how to back up your accounts to secure your assets now.": "",
12531251
"Update successful": "",
12541252
"Your SubWallet extension is updated to Manifest V3!": "",
1255-
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": ""
1253+
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": "",
1254+
"EVM QR signer account": "",
1255+
"Substrate QR signer account": "",
1256+
"Invalid QR code. EVM networks are not supported": "",
1257+
"Feature not available for <highlight>{{accountTitle}}</highlight>. Change to another account type and try again.": ""
12561258
}

packages/extension-koni/public/locales/vi/translation.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@
314314
"Your metadata is out of date": "Siêu dữ liệu của bạn đã cũ",
315315
"Decimal": "Decimal",
316316
"Spec Version": "Thông số kĩ thuật",
317-
"This feature is not available for": "Tính năng này không khả dụng cho",
318-
"Please change to another account type.": "Vui lòng thay đổi sang loại tài khoản khác.",
319317
"Back to home": "Trở về trang chính",
320318
"Signature request": "Yêu cầu chữ ký",
321319
"Validator": "Validator",
@@ -1252,5 +1250,9 @@
12521250
"If you lose your seed phrases/private keys/JSON backup files/QR backup codes, your accounts can't be recovered and your assets are lost. Learn how to back up your accounts to secure your assets now.": "",
12531251
"Update successful": "",
12541252
"Your SubWallet extension is updated to Manifest V3!": "",
1255-
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": ""
1253+
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": "",
1254+
"EVM QR signer account": "",
1255+
"Substrate QR signer account": "",
1256+
"Invalid QR code. EVM networks are not supported": "",
1257+
"Feature not available for <highlight>{{accountTitle}}</highlight>. Change to another account type and try again.": ""
12561258
}

packages/extension-koni/public/locales/zh/translation.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@
314314
"Your metadata is out of date": "你的原始数据已过期",
315315
"Decimal": "DEL",
316316
"Spec Version": "特殊版本",
317-
"This feature is not available for": "此功能不适用于",
318-
"Please change to another account type.": "请替换其他账户类型。",
319317
"Back to home": "返回主页",
320318
"Signature request": "签名请求",
321319
"Validator": "验证者",
@@ -1252,5 +1250,9 @@
12521250
"If you lose your seed phrases/private keys/JSON backup files/QR backup codes, your accounts can't be recovered and your assets are lost. Learn how to back up your accounts to secure your assets now.": "",
12531251
"Update successful": "",
12541252
"Your SubWallet extension is updated to Manifest V3!": "",
1255-
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": ""
1253+
"This update is required by Google, and helps improve the privacy, security, and performance of SubWallet extension.\n You can learn more details on Chrome for Developers, or safely dismiss this message.": "",
1254+
"EVM QR signer account": "",
1255+
"Substrate QR signer account": "",
1256+
"Invalid QR code. EVM networks are not supported": "",
1257+
"Feature not available for <highlight>{{accountTitle}}</highlight>. Change to another account type and try again.": ""
12561258
}

packages/extension-koni/src/packageInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@subwallet/extension-koni', path: 'auto', type: 'auto', version: '1.2.1' };
6+
export const packageInfo = { name: '@subwallet/extension-koni', path: 'auto', type: 'auto', version: '1.2.2-0' };

packages/extension-mocks/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"sideEffects": false,
1616
"type": "module",
17-
"version": "1.2.1",
17+
"version": "1.2.2-0",
1818
"main": "index.js",
1919
"dependencies": {
2020
"@babel/runtime": "^7.20.6",

packages/extension-web-ui/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"sideEffects": true,
1616
"type": "module",
17-
"version": "1.2.1",
17+
"version": "1.2.2-0",
1818
"dependencies": {
1919
"@babel/runtime": "^7.20.6",
2020
"@coinbase/cbpay-js": "^1.7.0",
@@ -36,10 +36,10 @@
3636
"@ramonak/react-progress-bar": "^5.0.3",
3737
"@reduxjs/toolkit": "^1.9.1",
3838
"@subwallet/chain-list": "0.2.65",
39-
"@subwallet/extension-base": "^1.2.1",
40-
"@subwallet/extension-chains": "^1.2.1",
41-
"@subwallet/extension-dapp": "^1.2.1",
42-
"@subwallet/extension-inject": "^1.2.1",
39+
"@subwallet/extension-base": "^1.2.2-0",
40+
"@subwallet/extension-chains": "^1.2.2-0",
41+
"@subwallet/extension-dapp": "^1.2.2-0",
42+
"@subwallet/extension-inject": "^1.2.2-0",
4343
"@subwallet/keyring": "^0.1.5",
4444
"@subwallet/react-ui": "^5.1.2-b77",
4545
"@subwallet/ui-keyring": "^0.1.5",
@@ -88,7 +88,7 @@
8888
"usehooks-ts": "^2.9.1"
8989
},
9090
"devDependencies": {
91-
"@subwallet/extension-mocks": "^1.2.1",
91+
"@subwallet/extension-mocks": "^1.2.2-0",
9292
"@types/bn.js": "^5.1.1",
9393
"@types/enzyme": "^3.10.12",
9494
"@types/enzyme-adapter-react-16": "^1.0.6",

packages/web-runner/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
},
1515
"sideEffects": false,
1616
"type": "module",
17-
"version": "1.2.1",
17+
"version": "1.2.2-0",
1818
"dependencies": {
1919
"@babel/runtime": "^7.20.6",
20-
"@subwallet/extension-base": "^1.2.1",
21-
"@subwallet/extension-inject": "^1.2.1",
22-
"@subwallet/extension-koni-ui": "^1.2.1"
20+
"@subwallet/extension-base": "^1.2.2-0",
21+
"@subwallet/extension-inject": "^1.2.2-0",
22+
"@subwallet/extension-koni-ui": "^1.2.2-0"
2323
},
2424
"devDependencies": {
2525
"@polkadot/dev": "^0.65.23",

0 commit comments

Comments
 (0)