The reference implementation of the IDM Wallet in JavaScript.
$ npm install idm-wallet
This library is written in modern JavaScript and is published in both CommonJS and ES module transpiled variants. If you target older browsers please make sure to transpile accordingly.
import createIdmWallet from 'idm-wallet';
await (async () => {
const idmWallet = createIdmWallet();
})();
This library is following closely the IDM Wallet Specification.
We will be providing proper API documentation once the both this library and the specification mature.
$ npm test
$ npm test -- --watch # during development
Released under the MIT License.