@fuel-ts/account 0.0.0-rc-2329-20240517140938 → 0.0.0-rc-2143-20240517141129

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.

Potentially problematic release.


This version of @fuel-ts/account might be problematic. Click here for more details.

@@ -29470,7 +29470,7 @@ spurious results.`);
29470
29470
  // ../versions/dist/index.mjs
29471
29471
  function getBuiltinVersions() {
29472
29472
  return {
29473
- FORC: "0.59.0",
29473
+ FORC: "0.58.0",
29474
29474
  FUEL_CORE: "0.26.0",
29475
29475
  FUELS: "0.87.0"
29476
29476
  };
@@ -40113,7 +40113,7 @@ ${PANIC_DOC_URL}#variant.${statusReason}`;
40113
40113
  if (receipt.type === ReceiptType.LogData || receipt.type === ReceiptType.Log) {
40114
40114
  const interfaceToUse = new Interface(externalAbis[receipt.id] || mainAbi);
40115
40115
  const data = receipt.type === ReceiptType.Log ? new BigNumberCoder("u64").encode(receipt.val0) : receipt.data;
40116
- const [decodedLog] = interfaceToUse.decodeLog(data, receipt.val1.toString());
40116
+ const [decodedLog] = interfaceToUse.decodeLog(data, receipt.val1.toNumber());
40117
40117
  logs.push(decodedLog);
40118
40118
  }
40119
40119
  return logs;