Project restructure and CI enhancements#1
Merged
BlobMaster41 merged 5 commits intomasterfrom Jan 28, 2026
Merged
Conversation
Migrates source files to TypeScript, removes legacy CJS/ESM/TS source directories, and adds new backend, signer, and utility modules. Updates and adds configuration files for GitHub workflows, issue templates, changelog, security, ESLint, Prettier, and TypeDoc. Improves CI with multi-version Node.js testing, coverage, audit, formatting, linting, and documentation deployment. Cleans up .gitignore and removes obsolete scripts and configs.
Added detailed JSDoc comments to all public interfaces, types, and functions across the codebase for improved developer documentation and clarity. Removed hardcoded network constants from networks.ts, requiring consumers to supply their own network objects. Refactored and clarified several APIs, improved type safety, and enhanced code readability without changing core logic.
Replaces backend-specific private key generation with FIPS 186-5 B.4.2 / RFC 9380 modular reduction in ECPairSigner.makeRandom. Removes generatePrivateKey from CryptoBackend and NobleBackend. Updates tests to reflect new deterministic and unbiased key generation, ensuring keys are always valid and never zero.
Major documentation rewrite in README.md to reflect new API, branded types, and backend architecture. Refactor code for improved readability and consistency, including formatting, argument alignment, and utility function extraction. Add and reorganize getter methods in ECPairSigner, improve type safety, and update tests for clarity and maintainability. No functional changes to cryptographic logic.
Update package.json and package-lock.json to reflect new version 4.0.1.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrates source files to TypeScript, removes legacy CJS/ESM/TS source directories, and adds new backend, signer, and utility modules. Updates and adds configuration files for GitHub workflows, issue templates, changelog, security, ESLint, Prettier, and TypeDoc. Improves CI with multi-version Node.js testing, coverage, audit, formatting, linting, and documentation deployment. Cleans up .gitignore and removes obsolete scripts and configs.