@ledgerhq/live-common 28.0.1-hotfix.0 → 28.0.1

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/lib/api/Tron.js CHANGED
@@ -181,7 +181,7 @@ var createTronTransaction = function (a, t, subAccount) { return __awaiter(void
181
181
  if (!(tokenType === "trc20" && tokenId)) return [3 /*break*/, 2];
182
182
  txData = {
183
183
  function_selector: "transfer(address,uint256)",
184
- fee_limit: 30000000,
184
+ fee_limit: 50000000,
185
185
  call_value: 0,
186
186
  contract_address: (0, utils_1.decode58Check)(tokenId),
187
187
  parameter: (0, utils_1.abiEncodeTrc20Transfer)((0, utils_1.decode58Check)(t.recipient), t.amount),
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  },
5
5
  "name": "@ledgerhq/live-common",
6
6
  "description": "Common ground for the Ledger Live apps",
7
- "version": "28.0.1-hotfix.0",
7
+ "version": "28.0.1",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/LedgerHQ/ledger-live.git"
package/src/api/Tron.ts CHANGED
@@ -119,7 +119,7 @@ export const createTronTransaction = async (
119
119
  if (tokenType === "trc20" && tokenId) {
120
120
  const txData: SmartContractTransactionData = {
121
121
  function_selector: "transfer(address,uint256)",
122
- fee_limit: 30000000,
122
+ fee_limit: 50000000,
123
123
  call_value: 0,
124
124
  contract_address: decode58Check(tokenId),
125
125
  parameter: abiEncodeTrc20Transfer(decode58Check(t.recipient), t.amount),