@fuel-ts/account 0.0.0-rc-2322-20240517060059 → 0.0.0-rc-2272-20240517112040
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/configs.d.ts +1 -1
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +1 -1
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +5 -5
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +3 -3
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +3 -3
- 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.global.js +2 -2
- package/dist/test-utils.global.js.map +1 -1
- package/package.json +15 -15
@@ -32434,7 +32434,7 @@ spurious results.`);
|
|
32434
32434
|
return {
|
32435
32435
|
FORC: "0.58.0",
|
32436
32436
|
FUEL_CORE: "0.26.0",
|
32437
|
-
FUELS: "0.
|
32437
|
+
FUELS: "0.87.0"
|
32438
32438
|
};
|
32439
32439
|
}
|
32440
32440
|
function parseVersion(version) {
|
@@ -35192,7 +35192,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
35192
35192
|
return new Uint8Array([...lengthBytes, ...concatBytes2(bytes2)]);
|
35193
35193
|
}
|
35194
35194
|
decode(data, offset) {
|
35195
|
-
if (!this.#hasNestedOption &&
|
35195
|
+
if (!this.#hasNestedOption && data.length < this.encodedLength || data.length > MAX_BYTES) {
|
35196
35196
|
throw new FuelError(ErrorCode.DECODE_ERROR, `Invalid vec data size.`);
|
35197
35197
|
}
|
35198
35198
|
const offsetAndLength = offset + WORD_SIZE;
|