mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2024-11-25 16:59:04 +01:00
Update content of files
This commit is contained in:
parent
7a8fc6995a
commit
c10fbe4baf
1 changed files with 7 additions and 14 deletions
|
@ -643,7 +643,6 @@ var Wallet = {
|
|||
wallet.connectItems.tonProof.proof) {
|
||||
Aj.apiRequest('checkTonProofAuth', {
|
||||
account: JSON.stringify(wallet.account),
|
||||
device: JSON.stringify(wallet.device),
|
||||
proof: JSON.stringify(wallet.connectItems.tonProof.proof)
|
||||
}, function(result) {
|
||||
if (result.verified) {
|
||||
|
@ -666,17 +665,12 @@ var Wallet = {
|
|||
sendTransaction: function(options) {
|
||||
if (Aj.globalState.tonConnectVersion == 2) {
|
||||
var tonConnectUI = Aj.globalState.tonConnectUI;
|
||||
var wallet = tonConnectUI.wallet || {};
|
||||
var sendTransaction = function(data) {
|
||||
var transaction = data.transaction;
|
||||
tonConnectUI.sendTransaction(transaction).then(function(transaction) {
|
||||
options.onConfirm && options.onConfirm(true);
|
||||
if (data.confirm_method) {
|
||||
var params = $.extend({
|
||||
account: JSON.stringify(wallet.account),
|
||||
device: JSON.stringify(wallet.device),
|
||||
boc: transaction.boc
|
||||
}, data.confirm_params);
|
||||
var params = $.extend({boc: transaction.boc}, data.confirm_params);
|
||||
Aj.apiRequest(data.confirm_method, params);
|
||||
}
|
||||
}).catch(function(){});
|
||||
|
@ -684,11 +678,7 @@ var Wallet = {
|
|||
if (!tonConnectUI.connected) {
|
||||
tonConnectUI.openModal();
|
||||
} else if (options.request) {
|
||||
var req = options.request, params = $.extend({
|
||||
account: JSON.stringify(wallet.account),
|
||||
device: JSON.stringify(wallet.device),
|
||||
transaction: 1
|
||||
}, req.params);
|
||||
var req = options.request, params = $.extend({transaction: 1}, req.params);
|
||||
Aj.apiRequest(req.method, params, function(result) {
|
||||
if (result.error) {
|
||||
return showAlert(result.error);
|
||||
|
@ -2572,12 +2562,15 @@ var Ads = {
|
|||
eAddMoreFunds: function(e) {
|
||||
e.preventDefault();
|
||||
e.stopImmediatePropagation();
|
||||
var href = this.href;
|
||||
Aj.apiRequest('repeatAdsAddFunds', {}, function(result) {
|
||||
if (result.error) {
|
||||
return showAlert(result.error);
|
||||
}
|
||||
Aj.location(href);
|
||||
if (result.redirect_to) {
|
||||
Aj.reload();
|
||||
} else {
|
||||
|
||||
}
|
||||
});
|
||||
},
|
||||
eWithdrawRevenue: function(e) {
|
||||
|
|
Loading…
Reference in a new issue