bip44-constants 308.0.0 → 309.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +73 -0
- package/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
8.0.0 / 2019-02-01
|
|
2
|
+
------------------
|
|
3
|
+
- change constants from object to 2d array (see README)
|
|
4
|
+
- add new constants
|
|
5
|
+
|
|
6
|
+
7.0.0 / 2018-11-12
|
|
7
|
+
------------------
|
|
8
|
+
- change values for PIGGY/SSC
|
|
9
|
+
- add new constants
|
|
10
|
+
|
|
11
|
+
6.1.0 / 2018-10-25
|
|
12
|
+
------------------
|
|
13
|
+
- updated constants
|
|
14
|
+
|
|
15
|
+
6.0.0 / 2018-10-11
|
|
16
|
+
------------------
|
|
17
|
+
- updated / changed constants (`DSH` -> `DASH`) (https://github.com/bitcoinjs/bip44-constants/issues/15)
|
|
18
|
+
- added sanity checks (https://github.com/bitcoinjs/bip44-constants/pull/23)
|
|
19
|
+
|
|
20
|
+
5.2.0 / 2018-08-27
|
|
21
|
+
------------------
|
|
22
|
+
- updated constants
|
|
23
|
+
|
|
24
|
+
5.1.0 / 2018-07-30
|
|
25
|
+
------------------
|
|
26
|
+
- add TRX constant
|
|
27
|
+
|
|
28
|
+
5.0.0 / 2018-03-05
|
|
29
|
+
------------------
|
|
30
|
+
- using asset symbol as the key as opposed to the asset name
|
|
31
|
+
- updated constants
|
|
32
|
+
|
|
33
|
+
4.0.1 / 2017-12-04
|
|
34
|
+
------------------
|
|
35
|
+
- changed constant values to type Number, not type String
|
|
36
|
+
|
|
37
|
+
3.1.0 / 2017-08-27
|
|
38
|
+
------------------
|
|
39
|
+
- updated constants
|
|
40
|
+
|
|
41
|
+
3.0.0 / 2017-08-27
|
|
42
|
+
------------------
|
|
43
|
+
- updated constants (semver major since one constant changed)
|
|
44
|
+
|
|
45
|
+
2.5.0 / 2017-05-27
|
|
46
|
+
------------------
|
|
47
|
+
- updated constants
|
|
48
|
+
|
|
49
|
+
2.4.0 / 2017-04-09
|
|
50
|
+
------------------
|
|
51
|
+
- updated constants
|
|
52
|
+
|
|
53
|
+
2.3.0 / 2016-10-16
|
|
54
|
+
------------------
|
|
55
|
+
- updated constants
|
|
56
|
+
|
|
57
|
+
2.2.0 / 2016-03-24
|
|
58
|
+
------------------
|
|
59
|
+
- updated constants
|
|
60
|
+
|
|
61
|
+
2.1.0 / 2016-02-08
|
|
62
|
+
------------------
|
|
63
|
+
- updated constants URL. See: https://github.com/bitcoinjs/bip44-constants/pull/1
|
|
64
|
+
- added more coins: Quarkcoin, Terracoin, Gridcoin. See: See: https://github.com/bitcoinjs/bip44-constants/pull/1
|
|
65
|
+
- add newline to `constants.json`. See: See: https://github.com/bitcoinjs/bip44-constants/pull/1
|
|
66
|
+
|
|
67
|
+
2.0.0 / 2016-01-26
|
|
68
|
+
------------------
|
|
69
|
+
- had to bump major version since `DarkCoin` was renamed to `Dash`
|
|
70
|
+
|
|
71
|
+
1.0.0 / 2015-07-21
|
|
72
|
+
------------------
|
|
73
|
+
- initial release
|
package/index.js
CHANGED
|
@@ -1120,6 +1120,7 @@ module.exports = [
|
|
|
1120
1120
|
[0x8001869f, 'WICC', 'Waykichain'],
|
|
1121
1121
|
[0x80018894, 'HOME', 'HomeCoin'],
|
|
1122
1122
|
[0x80018a92, 'STC', 'Starcoin'],
|
|
1123
|
+
[0x800196ad, '', 'Seed Hypermedia'],
|
|
1123
1124
|
[0x80019a91, 'STRAX', 'Strax'],
|
|
1124
1125
|
[0x8001b207, 'KAS', 'Kaspa'],
|
|
1125
1126
|
[0x8001d9f9, 'KLS', 'Karlsen'],
|