@fuel-ts/account 0.0.0-rc-2143-20240517141129 → 0.0.0-rc-2143-20240517152329

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.

@@ -32432,9 +32432,9 @@ spurious results.`);
32432
32432
  // ../versions/dist/index.mjs
32433
32433
  function getBuiltinVersions() {
32434
32434
  return {
32435
- FORC: "0.58.0",
32435
+ FORC: "0.59.0",
32436
32436
  FUEL_CORE: "0.26.0",
32437
- FUELS: "0.87.0"
32437
+ FUELS: "0.88.0"
32438
32438
  };
32439
32439
  }
32440
32440
  function parseVersion(version) {
@@ -43679,7 +43679,7 @@ ${PANIC_DOC_URL}#variant.${statusReason}`;
43679
43679
  if (receipt.type === ReceiptType.LogData || receipt.type === ReceiptType.Log) {
43680
43680
  const interfaceToUse = new Interface(externalAbis[receipt.id] || mainAbi);
43681
43681
  const data = receipt.type === ReceiptType.Log ? new BigNumberCoder("u64").encode(receipt.val0) : receipt.data;
43682
- const [decodedLog] = interfaceToUse.decodeLog(data, receipt.val1.toNumber());
43682
+ const [decodedLog] = interfaceToUse.decodeLog(data, receipt.val1.toString());
43683
43683
  logs.push(decodedLog);
43684
43684
  }
43685
43685
  return logs;