You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,13 @@
5
5
All pure-js cryptographic primitives normally used when
6
6
developing Javascript / TypeScript applications and tools for Ethereum.
7
7
8
-
**January 2022 update:**Version 1.0 of the package will be out soon. The module has been completely rewritten:
8
+
**January 2022 update:**We've released v1.0 of the package, a complete rewrite:
9
9
10
-
-**6x smaller:**~5,000 lines of code instead of ~27,000 (with all deps); 660KB instead of 10.2MB
10
+
-**6x smaller:**~5,000 lines of code instead of ~24,000 (with all deps); 650KB instead of 10.2MB
11
11
- 5 dependencies by 1 author instead of 38 by 5 authors
12
12
-[Audited](#security) by an independent security firm
13
-
- Check out the [Upgrading](#upgrading) section for breaking changes (there are almost none)
13
+
- Check out the article about it: [A safer, smaller, and faster Ethereum cryptography stack](https://medium.com/nomic-labs-blog/a-safer-smaller-and-faster-ethereum-cryptography-stack-5eeb47f62d79)
14
+
- Take a glance at the [Upgrading](#upgrading) section for breaking changes: there are almost none
14
15
15
16
The cryptographic primitives included are:
16
17
@@ -28,10 +29,10 @@ Use NPM / Yarn in node.js / browser:
28
29
29
30
```bash
30
31
# NPM
31
-
npm install ethereum-cryptography@next
32
+
npm install ethereum-cryptography
32
33
33
34
# Yarn
34
-
yarn add ethereum-cryptography@next
35
+
yarn add ethereum-cryptography
35
36
```
36
37
37
38
See [browser usage](#browser-usage) for information on using the package with major Javascript bundlers. It is
@@ -199,7 +200,7 @@ Note: if you've been using ethereum-cryptography v0.1, it had different API. We'
199
200
## BIP32 HD Keygen
200
201
201
202
Hierarchical deterministic (HD) wallets that conform to BIP32 standard.
202
-
Also available as standalone package [micro-bip32](https://github.com/paulmillr/micro-bip32).
203
+
Also available as standalone package [scure-bip32](https://github.com/paulmillr/scure-bip32).
203
204
204
205
This module exports a single class `HDKey`, which should be used like this:
0 commit comments