Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion account-compression/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-turbo": "^2.0.12",
Expand Down
6 changes: 3 additions & 3 deletions account-compression/sdk/tests/accountCompression.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ describe('Account Compression', () => {
try {
await execute(provider, [ix], [payerKeypair]);
assert(false, 'Closing a tree account before it is empty should ALWAYS error');
} catch (e) {}
} catch {}
});
});

Expand Down Expand Up @@ -343,7 +343,7 @@ describe('Account Compression', () => {
try {
await execute(provider, [replaceIx], [payerKeypair]);
assert(false, 'Attacker was able to successfully write fake existence of a leaf');
} catch (e) {}
} catch {}

const splCMT = await ConcurrentMerkleTreeAccount.fromAccountAddress(connection, cmt);

Expand Down Expand Up @@ -503,7 +503,7 @@ describe('Account Compression', () => {
try {
await execute(provider, [replaceIx], [payerKeypair]);
throw Error('This replace instruction should have failed because the leaf index is OOB');
} catch (_e) {}
} catch {}
});
});
});
2 changes: 1 addition & 1 deletion libraries/type-length-value/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
Expand Down
2 changes: 1 addition & 1 deletion libraries/type-length-value/js/test/tlvData.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('tlvData', () => {
type[0] = 2;
expect(tlv.firstBytes(type)).to.be.deep.equal(Buffer.from([1, 2]));
type[0] = 3;
expect(tlv.firstBytes(type)).to.be.null;
expect(tlv.firstBytes(type)).to.equal(null);
};

it('should get the entries individually', () => {
Expand Down
2 changes: 1 addition & 1 deletion memo/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
Expand Down
2 changes: 1 addition & 1 deletion name-service/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-plugin-eslint-comments": "^3.2.0",
Expand Down
Loading