@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.
- package/dist/index.global.js +2 -2
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/test-utils/launchNode.d.ts +3 -3
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +68 -84
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +3 -5
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +3 -5
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/index.global.js
CHANGED
@@ -29470,7 +29470,7 @@ spurious results.`);
|
|
29470
29470
|
// ../versions/dist/index.mjs
|
29471
29471
|
function getBuiltinVersions() {
|
29472
29472
|
return {
|
29473
|
-
FORC: "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.
|
40116
|
+
const [decodedLog] = interfaceToUse.decodeLog(data, receipt.val1.toNumber());
|
40117
40117
|
logs.push(decodedLog);
|
40118
40118
|
}
|
40119
40119
|
return logs;
|