Skip to content

Commit

Permalink
Change lint config
Browse files Browse the repository at this point in the history
  • Loading branch information
mj52951 committed Jul 22, 2024
1 parent 64fd9d6 commit 3757021
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 27 deletions.
7 changes: 4 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require("@rushstack/eslint-patch/modern-module-resolution");

module.exports = {
extends: "@chainsafe",
root: true,
extends: [
"@chainsafe"
]
}
23 changes: 0 additions & 23 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/evmIndexer/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export function decodeAmountsOrTokenId(
const tokenId = AbiCoder.defaultAbiCoder().decode(
["uint256"],
data,
)[0] as number;
)[0] as bigint;
return tokenId.toString();
}
case DepositType.SEMIFUNGIBLE: {
Expand Down

0 comments on commit 3757021

Please sign in to comment.