Library used by Hathor Wallet. More information at Hathor Network website.
npm install @hathor/wallet-lib
This lib requires a storage to be set so it can persist data. Take a look at src/storage.js for the methods this storage object should implement.
const hathorLib = require('@hathor/wallet-lib');
hathorLib.storage.setStore(storageFactory);
This project includes a Claude Code skill for managing releases. Available commands:
/hathor-release init <version>
Creates a PR from master to release branch with the proper template, assigns reviewers (code owner + recent contributor), adds the enhancement label, and adds the PR to the Hathor Network project.
/hathor-release bump <type>
Where <type> is minor, patch, or major. Checks out the release branch, runs npm version <type> --no-git-tag-version, and creates a PR with the version bump.