Update content of files

This commit is contained in:
GitHub Action 2024-05-11 18:09:02 +00:00
parent 7a8fc6995a
commit c10fbe4baf

View file

@ -643,7 +643,6 @@ var Wallet = {
wallet.connectItems.tonProof.proof) { wallet.connectItems.tonProof.proof) {
Aj.apiRequest('checkTonProofAuth', { Aj.apiRequest('checkTonProofAuth', {
account: JSON.stringify(wallet.account), account: JSON.stringify(wallet.account),
device: JSON.stringify(wallet.device),
proof: JSON.stringify(wallet.connectItems.tonProof.proof) proof: JSON.stringify(wallet.connectItems.tonProof.proof)
}, function(result) { }, function(result) {
if (result.verified) { if (result.verified) {
@ -666,17 +665,12 @@ var Wallet = {
sendTransaction: function(options) { sendTransaction: function(options) {
if (Aj.globalState.tonConnectVersion == 2) { if (Aj.globalState.tonConnectVersion == 2) {
var tonConnectUI = Aj.globalState.tonConnectUI; var tonConnectUI = Aj.globalState.tonConnectUI;
var wallet = tonConnectUI.wallet || {};
var sendTransaction = function(data) { var sendTransaction = function(data) {
var transaction = data.transaction; var transaction = data.transaction;
tonConnectUI.sendTransaction(transaction).then(function(transaction) { tonConnectUI.sendTransaction(transaction).then(function(transaction) {
options.onConfirm && options.onConfirm(true); options.onConfirm && options.onConfirm(true);
if (data.confirm_method) { if (data.confirm_method) {
var params = $.extend({ var params = $.extend({boc: transaction.boc}, data.confirm_params);
account: JSON.stringify(wallet.account),
device: JSON.stringify(wallet.device),
boc: transaction.boc
}, data.confirm_params);
Aj.apiRequest(data.confirm_method, params); Aj.apiRequest(data.confirm_method, params);
} }
}).catch(function(){}); }).catch(function(){});
@ -684,11 +678,7 @@ var Wallet = {
if (!tonConnectUI.connected) { if (!tonConnectUI.connected) {
tonConnectUI.openModal(); tonConnectUI.openModal();
} else if (options.request) { } else if (options.request) {
var req = options.request, params = $.extend({ var req = options.request, params = $.extend({transaction: 1}, req.params);
account: JSON.stringify(wallet.account),
device: JSON.stringify(wallet.device),
transaction: 1
}, req.params);
Aj.apiRequest(req.method, params, function(result) { Aj.apiRequest(req.method, params, function(result) {
if (result.error) { if (result.error) {
return showAlert(result.error); return showAlert(result.error);
@ -2572,12 +2562,15 @@ var Ads = {
eAddMoreFunds: function(e) { eAddMoreFunds: function(e) {
e.preventDefault(); e.preventDefault();
e.stopImmediatePropagation(); e.stopImmediatePropagation();
var href = this.href;
Aj.apiRequest('repeatAdsAddFunds', {}, function(result) { Aj.apiRequest('repeatAdsAddFunds', {}, function(result) {
if (result.error) { if (result.error) {
return showAlert(result.error); return showAlert(result.error);
} }
Aj.location(href); if (result.redirect_to) {
Aj.reload();
} else {
}
}); });
}, },
eWithdrawRevenue: function(e) { eWithdrawRevenue: function(e) {