bip44-constants 308.0.0 → 310.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +73 -0
  2. package/index.js +3 -0
  3. 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
@@ -722,6 +722,7 @@ module.exports = [
722
722
  [0x800002d4, 'XVC', 'Vanillacash'],
723
723
  [0x800002d5, 'MCX', 'MultiCash'],
724
724
  [0x800002d7, 'BLU', 'BluCrates'],
725
+ [0x800002d8, 'BFC', 'BFC'],
725
726
  [0x800002da, 'HEALIOS', 'Tenacity'],
726
727
  [0x800002db, 'BMK', 'Bitmark'],
727
728
  [0x800002de, 'DENTX', 'DENTNet'],
@@ -991,6 +992,7 @@ module.exports = [
991
992
  [0x80000d31, 'ROI', 'ROIcoin'],
992
993
  [0x80000d35, 'DYN', 'Dynamic'],
993
994
  [0x80000d37, 'SEQ', 'Sequence'],
995
+ [0x80000d6a, 'PEPE', 'Pepecoin Core'],
994
996
  [0x80000dad, 'JFIN', 'JFIN Coin'],
995
997
  [0x80000de0, 'DEO', 'Destocoin'],
996
998
  [0x80000dec, 'DST', 'DeStream'],
@@ -1120,6 +1122,7 @@ module.exports = [
1120
1122
  [0x8001869f, 'WICC', 'Waykichain'],
1121
1123
  [0x80018894, 'HOME', 'HomeCoin'],
1122
1124
  [0x80018a92, 'STC', 'Starcoin'],
1125
+ [0x800196ad, '', 'Seed Hypermedia'],
1123
1126
  [0x80019a91, 'STRAX', 'Strax'],
1124
1127
  [0x8001b207, 'KAS', 'Kaspa'],
1125
1128
  [0x8001d9f9, 'KLS', 'Karlsen'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bip44-constants",
3
- "version": "308.0.0",
3
+ "version": "310.0.0",
4
4
  "description": "Bitcoin BIP44 constants.",
5
5
  "files": [
6
6
  "index.js",