Skip to content

Commit

Permalink
fix(wallet-sdk): increase minimum node version from 10 to 16.20
Browse files Browse the repository at this point in the history
The dependencies eth-block-tracker@7.1.0 and eth-json-rpc-filters both
require nodejs v14 while the package manifest currently indicates support for v10.

Support for nodejs v14 and lower seems to already have been dropped from
coinbase-wallet-sdk in #932.

This fixes that discrepancy by dropping indicated support for major nodejs versions
10-15,17,19.
  • Loading branch information
legobeat committed Sep 10, 2023
1 parent 432f1a4 commit e1255dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wallet-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
"typescript": "^5.1.6"
},
"engines": {
"node": ">= 10.0.0"
"node": "^16.20 || ^18.16 || >=20"
}
}

0 comments on commit e1255dd

Please sign in to comment.