diff --git a/.prettierignore b/.prettierignore index a69149e..724422b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,4 +2,5 @@ node_modules .vscode package.json dist +dist.browser .nyc_output diff --git a/CHANGELOG.md b/CHANGELOG.md index 987193a..0936099 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) - Updated depedencies to latest, added browser build, PR [#157](https://github.com/ethereumjs/ethereumjs-wallet/pull/157) +[1.0.2]: https://github.com/ethereumjs/ethereumjs-wallet/compare/v1.0.1...v1.0.2 + #### Included Source Files Source files from the `src` folder are now included in the distribution build. This allows for a better debugging experience in debug tools like Chrome DevTools by having working source map references to the original sources available for inspection. diff --git a/README.md b/README.md index 1e5d21c..35220ae 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # ethereumjs-wallet -[![NPM Package](https://img.shields.io/npm/v/ethereumjs-wallet.svg)](https://www.npmjs.org/package/ethereumjs-wallet) -[![Actions Status](https://github.com/ethereumjs/ethereumjs-wallet/workflows/Build/badge.svg)](https://github.com/ethereumjs/ethereumjs-wallet/actions) -[![Coverage Status](https://img.shields.io/coveralls/ethereumjs/ethereumjs-wallet.svg)](https://coveralls.io/r/ethereumjs/ethereumjs-wallet) +[![NPM Package][npm-badge]][npm-link] +[![Actions Status][actions-badge]][actions-link] +[![Coverage Status][coverage-badge]][coverage-link] [![Discord][discord-badge]][discord-link] A lightweight wallet implementation. At the moment it supports key creation and conversion between various formats. @@ -17,7 +17,7 @@ Motivations are: - be lightweight - work in a browser -- use a single, maintained version of crypto library (and that should be in line with `ethereumjs-util` and `@ethereumjs/tx`) +- use a single, maintained version of crypto library (and that should be in line with [`ethereumjs-util`](https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/util) and `@ethereumjs/tx`) - support import/export between various wallet formats - support BIP32 HD keys @@ -135,5 +135,11 @@ MIT License Copyright (C) 2016 Alex Beregszaszi +[actions-badge]: https://github.com/ethereumjs/ethereumjs-wallet/workflows/Build/badge.svg +[actions-link]: https://github.com/ethereumjs/ethereumjs-wallet/actions +[coverage-badge]: https://img.shields.io/coveralls/ethereumjs/ethereumjs-wallet.svg +[coverage-link]: https://coveralls.io/r/ethereumjs/ethereumjs-wallet [discord-badge]: https://img.shields.io/static/v1?logo=discord&label=discord&message=Join&color=blue [discord-link]: https://discord.gg/TNwARpR +[npm-badge]: https://img.shields.io/npm/v/ethereumjs-wallet.svg +[npm-link]: https://www.npmjs.org/package/ethereumjs-wallet