tek-wallet 0.0.528 → 0.0.530
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.
|
@@ -188,7 +188,7 @@ var SendExternalToken = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
188
188
|
case 0:
|
|
189
189
|
setIsValidatingAddress(true);
|
|
190
190
|
return [4 /*yield*/, (0, validate_wallet_address_service_1.default)({
|
|
191
|
-
address: toAddress
|
|
191
|
+
address: toAddress,
|
|
192
192
|
network: network === null || network === void 0 ? void 0 : network.slug,
|
|
193
193
|
})];
|
|
194
194
|
case 1:
|
|
@@ -104,6 +104,7 @@ var type_1 = require("../../../services/axios/get-activities-service/type");
|
|
|
104
104
|
var Activities_1 = __importDefault(require("../Activities"));
|
|
105
105
|
var validate_wallet_address_service_1 = __importDefault(require("../../../services/axios/validate-wallet-address-service"));
|
|
106
106
|
var type_2 = require("../../../services/axios/validate-wallet-address-service/type");
|
|
107
|
+
var CopyTextComponent_1 = __importDefault(require("../CopyTextComponent"));
|
|
107
108
|
var SendInternalTokenError;
|
|
108
109
|
(function (SendInternalTokenError) {
|
|
109
110
|
SendInternalTokenError["TOKEN_NOT_FOUND"] = "Token not found";
|
|
@@ -185,7 +186,7 @@ var SendInternalToken = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
185
186
|
case 0:
|
|
186
187
|
setIsValidatingAddress(true);
|
|
187
188
|
return [4 /*yield*/, (0, validate_wallet_address_service_1.default)({
|
|
188
|
-
address: toAddress
|
|
189
|
+
address: toAddress,
|
|
189
190
|
network: "ton",
|
|
190
191
|
})];
|
|
191
192
|
case 1:
|
|
@@ -269,9 +270,9 @@ var SendInternalToken = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
269
270
|
return undefined;
|
|
270
271
|
return +amount - +(estimateFee === null || estimateFee === void 0 ? void 0 : estimateFee.feeInCurrency);
|
|
271
272
|
}, [estimateFee, amount]);
|
|
272
|
-
return ((0, jsx_runtime_1.jsx)(RequireConnect_1.default, { children: (0, jsx_runtime_1.jsxs)(ConfirmLayout_1.default, { onOpen: validateAll, ref: confirmLayoutDrawerRef, action: transactionSlug, trigger: props.children, children: [(0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g12 }), children: [(0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign({}, theme.mixins.paper), children: [(0, jsx_runtime_1.jsx)(LineValue_1.default, { field: "Recipient address", value: (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
|
|
273
|
-
|
|
274
|
-
|
|
273
|
+
return ((0, jsx_runtime_1.jsx)(RequireConnect_1.default, { children: (0, jsx_runtime_1.jsxs)(ConfirmLayout_1.default, { onOpen: validateAll, ref: confirmLayoutDrawerRef, action: transactionSlug, trigger: props.children, children: [(0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g12 }), children: [(0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign({}, theme.mixins.paper), children: [(0, jsx_runtime_1.jsx)(LineValue_1.default, { field: "Recipient address", value: (0, jsx_runtime_1.jsx)(CopyTextComponent_1.default, { value: toAddress, children: (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
|
|
274
|
+
wordBreak: "break-all",
|
|
275
|
+
}, children: toAddress }) }), valueDescription: (0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, theme.mixins.validationError), children: errorAddress }) }), (0, jsx_runtime_1.jsx)(LineValue_1.default, { field: "Amount", value: (0, jsx_runtime_1.jsx)(Formatter_1.default, { value: amount, unit: " ".concat(token === null || token === void 0 ? void 0 : token.name) }) }), ((_a = estimateFee === null || estimateFee === void 0 ? void 0 : estimateFee.feeDetail) === null || _a === void 0 ? void 0 : _a.length) && !!amount && ((0, jsx_runtime_1.jsx)(Fees_1.default, { feesData: JSON.stringify(estimateFee), amount: +amount, tokenSlug: tokenSlug })), (0, jsx_runtime_1.jsx)(LineValue_1.default, { field: "Receive amount estimated", value: (0, jsx_runtime_1.jsx)(Text_1.default, { sx: {
|
|
275
276
|
fontWeight: theme.typography.fontWeight600,
|
|
276
277
|
fontSize: theme.typography.fontSize16,
|
|
277
278
|
}, children: (0, jsx_runtime_1.jsx)(Formatter_1.default, { value: estimateReceive, unit: " ".concat(token === null || token === void 0 ? void 0 : token.name) }) }) }), !!error && ((0, jsx_runtime_1.jsxs)(Text_1.default, { sx: __assign(__assign({}, theme.mixins.validationError), { mt: theme.mixins.customMargin.m6 }), children: [error, " ", !!errorAmount && (0, jsx_runtime_1.jsx)(Formatter_1.default, { value: errorAmount, unit: " ".concat(token === null || token === void 0 ? void 0 : token.name) })] }))] }), (0, jsx_runtime_1.jsx)(ConfirmByPasscode_1.default, { action: transactionSlug, onConfirmSuccess: handleSendInternalToken, children: (0, jsx_runtime_1.jsx)(Button_1.default.Primary, { status: !!error || isLoadingEstimateFee || isValidatingAddress || errorAddress
|