@edgex-web/components 1.0.0-beta.2 → 1.0.0-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/dist/{ccip-Dfxiy6rU.mjs → ccip-CSOMWOiy.mjs} +2 -2
- package/dist/{ccip-Dfxiy6rU.mjs.map → ccip-CSOMWOiy.mjs.map} +1 -1
- package/dist/components/Deposit/src/DepositManager.d.ts.map +1 -1
- package/dist/components/Deposit/src/components/evm/index.d.ts.map +1 -1
- package/dist/components/Deposit/src/components/evm/types/approve.d.ts +1 -1
- package/dist/components/Deposit/src/components/evm/types/approve.d.ts.map +1 -1
- package/dist/components/Deposit/src/components/evm/utils/index.d.ts.map +1 -1
- package/dist/components/Deposit/src/components/mpc/index.d.ts.map +1 -1
- package/dist/components/Deposit/src/components/mpc/types/index.d.ts +5 -0
- package/dist/components/Deposit/src/components/mpc/types/index.d.ts.map +1 -1
- package/dist/components/Deposit/src/index.d.ts.map +1 -1
- package/dist/components/Deposit/types/index.d.ts +39 -18
- package/dist/components/Deposit/types/index.d.ts.map +1 -1
- package/dist/components/Tooltip/src/Tooltip.d.ts.map +1 -1
- package/dist/components/Withdraw/src/evm/WalletView.d.ts.map +1 -1
- package/dist/components/Withdraw/src/evm/index.d.ts.map +1 -1
- package/dist/components/Withdraw/src/index.d.ts.map +1 -1
- package/dist/components/shared/components/selector/Asset.d.ts.map +1 -1
- package/dist/components/shared/components/selector/Chain.d.ts.map +1 -1
- package/dist/components/shared/components/selector/index.d.ts +2 -1
- package/dist/components/shared/components/selector/index.d.ts.map +1 -1
- package/dist/components/shared/components/selector/types/index.d.ts +4 -0
- package/dist/components/shared/components/selector/types/index.d.ts.map +1 -1
- package/dist/hooks/useTranslation.d.ts +32 -0
- package/dist/hooks/useTranslation.d.ts.map +1 -1
- package/dist/{index-Bxs3zh43.mjs → index-BCPNNCT8.mjs} +8808 -8044
- package/dist/index-BCPNNCT8.mjs.map +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +93 -93
- package/dist/index.umd.js.map +1 -1
- package/dist/locales/de-DE.d.ts +16 -0
- package/dist/locales/de-DE.d.ts.map +1 -1
- package/dist/locales/en-US.d.ts +16 -0
- package/dist/locales/en-US.d.ts.map +1 -1
- package/dist/locales/es-LA.d.ts +16 -0
- package/dist/locales/es-LA.d.ts.map +1 -1
- package/dist/locales/fr-FR.d.ts +16 -0
- package/dist/locales/fr-FR.d.ts.map +1 -1
- package/dist/locales/it-IT.d.ts +16 -0
- package/dist/locales/it-IT.d.ts.map +1 -1
- package/dist/locales/ja-JP.d.ts +16 -0
- package/dist/locales/ja-JP.d.ts.map +1 -1
- package/dist/locales/ru-RU.d.ts +16 -0
- package/dist/locales/ru-RU.d.ts.map +1 -1
- package/dist/locales/zh-CN.d.ts +16 -0
- package/dist/locales/zh-CN.d.ts.map +1 -1
- package/dist/locales/zh-TW.d.ts +16 -0
- package/dist/locales/zh-TW.d.ts.map +1 -1
- package/dist/style.css +3 -0
- package/dist/styles.css +4 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/token.d.ts +4 -0
- package/dist/types/token.d.ts.map +1 -1
- package/package.json +20 -4
- package/dist/index-Bxs3zh43.mjs.map +0 -1
package/dist/locales/de-DE.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const deDE: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const deDE: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const deDE: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const deDE: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de-DE.d.ts","sourceRoot":"","sources":["../../src/locales/de-DE.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"de-DE.d.ts","sourceRoot":"","sources":["../../src/locales/de-DE.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/en-US.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const enUS: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const enUS: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const enUS: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const enUS: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en-US.d.ts","sourceRoot":"","sources":["../../src/locales/en-US.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"en-US.d.ts","sourceRoot":"","sources":["../../src/locales/en-US.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/es-LA.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const esLA: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const esLA: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const esLA: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const esLA: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es-LA.d.ts","sourceRoot":"","sources":["../../src/locales/es-LA.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"es-LA.d.ts","sourceRoot":"","sources":["../../src/locales/es-LA.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/fr-FR.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const frFR: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const frFR: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const frFR: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const frFR: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr-FR.d.ts","sourceRoot":"","sources":["../../src/locales/fr-FR.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"fr-FR.d.ts","sourceRoot":"","sources":["../../src/locales/fr-FR.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/it-IT.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const itIT: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const itIT: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const itIT: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const itIT: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"it-IT.d.ts","sourceRoot":"","sources":["../../src/locales/it-IT.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"it-IT.d.ts","sourceRoot":"","sources":["../../src/locales/it-IT.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/ja-JP.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const jaJP: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const jaJP: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const jaJP: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const jaJP: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ja-JP.d.ts","sourceRoot":"","sources":["../../src/locales/ja-JP.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"ja-JP.d.ts","sourceRoot":"","sources":["../../src/locales/ja-JP.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/ru-RU.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const ruRU: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const ruRU: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const ruRU: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const ruRU: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ru-RU.d.ts","sourceRoot":"","sources":["../../src/locales/ru-RU.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"ru-RU.d.ts","sourceRoot":"","sources":["../../src/locales/ru-RU.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6HhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
package/dist/locales/zh-CN.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const zhCN: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const zhCN: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const zhCN: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const zhCN: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../src/locales/zh-CN.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../src/locales/zh-CN.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqHhB,CAAA;AAED,eAAe,IAAI,CAAA;AACnB,MAAM,MAAM,eAAe,GAAG,OAAO,IAAI,CAAA"}
|
package/dist/locales/zh-TW.d.ts
CHANGED
|
@@ -3,12 +3,15 @@ export declare const zhTW: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
chain: string;
|
|
5
5
|
asset: string;
|
|
6
|
+
search: string;
|
|
6
7
|
amount: string;
|
|
7
8
|
available: string;
|
|
8
9
|
equity: string;
|
|
9
10
|
confirmDeposit: string;
|
|
10
11
|
switchNetwork: string;
|
|
11
12
|
max: string;
|
|
13
|
+
fast: string;
|
|
14
|
+
standard: string;
|
|
12
15
|
arrivalTime: string;
|
|
13
16
|
ethCrossChainDepositInitiated: string;
|
|
14
17
|
minDeposit: string;
|
|
@@ -26,6 +29,7 @@ export declare const zhTW: {
|
|
|
26
29
|
arrivaltimeTooltip1: string;
|
|
27
30
|
arrivaltimeTooltip2: string;
|
|
28
31
|
arrivalEstimated: string;
|
|
32
|
+
feeRateTooltip: string;
|
|
29
33
|
availableDesc: string;
|
|
30
34
|
noPrivateKeyWalletWarning: string;
|
|
31
35
|
layerZeroDepositTip: string;
|
|
@@ -34,15 +38,22 @@ export declare const zhTW: {
|
|
|
34
38
|
layerZeroDepositButton: string;
|
|
35
39
|
defaultSpotNotice: string;
|
|
36
40
|
defaultSpotToPerpNotice: string;
|
|
41
|
+
depositModeSwitchWarning: string;
|
|
37
42
|
connectedWalletTitle: string;
|
|
38
43
|
connectedWalletDesc: string;
|
|
39
44
|
externalWalletTitle: string;
|
|
40
45
|
externalWalletDesc: string;
|
|
46
|
+
goToWalletAccount: string;
|
|
47
|
+
depositToSpotAccountNotice: string;
|
|
48
|
+
depositToPerpetualAccountNotice: string;
|
|
41
49
|
or: string;
|
|
42
50
|
};
|
|
43
51
|
withdraw: {
|
|
44
52
|
noticeDesc: string;
|
|
53
|
+
noticeDescWithClaim: string;
|
|
54
|
+
externalWalletEthNoticeDesc: string;
|
|
45
55
|
crossChainTips: string;
|
|
56
|
+
crossChainTipsWithGas: string;
|
|
46
57
|
commonWithdraw: string;
|
|
47
58
|
withdraw: string;
|
|
48
59
|
speed: string;
|
|
@@ -61,9 +72,14 @@ export declare const zhTW: {
|
|
|
61
72
|
invalidReceiverAddress: string;
|
|
62
73
|
availableDesc: string;
|
|
63
74
|
feeCalculationTip: string;
|
|
75
|
+
largeWithdrawFeeTip: string;
|
|
64
76
|
crossChainPoolBalance: string;
|
|
65
77
|
poolBalance: string;
|
|
66
78
|
poolBalanceInsufficientTip: string;
|
|
79
|
+
connectedWalletTitle: string;
|
|
80
|
+
connectedWalletDesc: string;
|
|
81
|
+
externalWalletTitle: string;
|
|
82
|
+
externalWalletDesc: string;
|
|
67
83
|
};
|
|
68
84
|
account: {
|
|
69
85
|
title: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zh-TW.d.ts","sourceRoot":"","sources":["../../src/locales/zh-TW.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"zh-TW.d.ts","sourceRoot":"","sources":["../../src/locales/zh-TW.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsHhB,CAAA;AAED,eAAe,IAAI,CAAA"}
|