@hathor/wallet-lib
v2.14.0
Published
Library used by Hathor Wallet
Readme
Hathor Wallet Library
Library used by Hathor Wallet. More information at Hathor Network website.
Install
npm install @hathor/wallet-lib
Setting storage
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);Release Process (Claude Code)
This project includes a Claude Code skill for managing releases. Available commands:
Initiate Release
/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.
Bump Version
/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.
