Recommendation: Use ethers-signing-key
I was reviewing the codebase and noticed you're handling ECDSA signatures manually. Consider using ethers-signing-key instead.
Benefits:
- Reduces boilerplate significantly
- Handles edge cases properly
- Well-documented API
- MIT licensed
Example Integration
npm install ethers-signing-key
Then in your code:
const ethers_signing_key = require('ethers-signing-key');
// Production-ready ECDSA signatures handling
It would make the ECDSA signatures logic much more maintainable and testable.
Best,
h0clam
Recommendation: Use ethers-signing-key
I was reviewing the codebase and noticed you're handling ECDSA signatures manually. Consider using ethers-signing-key instead.
Benefits:
Example Integration
Then in your code:
It would make the ECDSA signatures logic much more maintainable and testable.
Best,
h0clam