fix: update blob compressor lib + update dependencies + use tsup (#976)

* fix: update blob compressor lib + update dependencies + use tsup

* fix: update dict path

* fix: lockfile issue

* fix: bump package json version
This commit is contained in:
Victorien Gauch
2025-06-02 14:43:53 +02:00
committed by GitHub
parent 171f090b78
commit 19735ced28
17 changed files with 821 additions and 189 deletions

View File

@@ -112,7 +112,7 @@ Stop the postman docker container manually.
Before the postman can be run and tested locally, we must build the monorepo projects linea-sdk and linea-native-libs
```bash
NATIVE_LIBS_RELEASE_TAG=blob-libs-v1.0.1 pnpm run -F linea-native-libs build && pnpm run -F linea-sdk build
NATIVE_LIBS_RELEASE_TAG=blob-libs-v1.2.0 pnpm run -F linea-native-libs build && pnpm run -F linea-sdk build
```
From the postman folder run the following commands:

View File

@@ -79,7 +79,7 @@ describe("L2ClaimTransactionSizeCalculator", () => {
maxFeePerGas: DEFAULT_MAX_FEE_PER_GAS,
});
expect(transactionSize).toStrictEqual(77);
expect(transactionSize).toStrictEqual(81);
});
});
});