@depay/widgets 12.16.3 → 12.16.5

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.
@@ -383,6 +383,9 @@ var allWallets = [{
383
383
  "mobile": {
384
384
  "ios": {
385
385
  "native": "solflare:",
386
+ "open": function open() {
387
+ return "https://solflare.com/ul/v1/browse/".concat(encodeURIComponent(window.location.toString()), "?ref=").concat(encodeURIComponent(window.location.origin.toString()));
388
+ },
386
389
  "universal": "https://solflare.com/ul",
387
390
  "solanaPay": true
388
391
  },
@@ -36335,8 +36338,10 @@ var SolanaPayDialog = (function (props) {
36335
36338
  to_token: selectedPaymentOption.token,
36336
36339
  to_amount: selectedPaymentOption.toAmountBN.toString(),
36337
36340
  to_decimals: selectedPaymentOption.decimals,
36338
- fee_amount: selectedPaymentOption.feeAmountBN.toString()
36341
+ fee_amount: selectedPaymentOption.feeAmountBN.toString(),
36342
+ deadline: Math.ceil(Date.now() / 1000) + 10 * 60 * 6000 // 1h
36339
36343
  };
36344
+
36340
36345
  sendTrackingAsConfigured({
36341
36346
  payment: payment,
36342
36347
  resolve: resolve,