bip44-constants 165.0.0 → 167.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/index.d.ts +14 -0
- package/index.js +2 -0
- package/package.json +4 -2
package/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
export type CoinTypeNumber = number;
|
|
3
|
+
export type CoinTypeName = string;
|
|
4
|
+
export type CoinTypeTitle = string;
|
|
5
|
+
|
|
6
|
+
export type Entry = [
|
|
7
|
+
CoinTypeNumber,
|
|
8
|
+
CoinTypeName,
|
|
9
|
+
CoinTypeTitle,
|
|
10
|
+
];
|
|
11
|
+
|
|
12
|
+
const entries: Entry[];
|
|
13
|
+
|
|
14
|
+
export default entries;
|
package/index.js
CHANGED
|
@@ -710,6 +710,7 @@ module.exports = [
|
|
|
710
710
|
[0x8000031f, 'PDEX', 'Polkadex'],
|
|
711
711
|
[0x80000320, 'BEET', 'Beetle Coin'],
|
|
712
712
|
[0x80000321, 'DST', 'DSTRA'],
|
|
713
|
+
[0x80000324, 'ZKS', 'zkSync'],
|
|
713
714
|
[0x80000328, 'QVT', 'Qvolta'],
|
|
714
715
|
[0x80000329, 'SDN', 'Shiden Network'],
|
|
715
716
|
[0x8000032a, 'ASTR', 'Astar Network'],
|
|
@@ -934,6 +935,7 @@ module.exports = [
|
|
|
934
935
|
[0x800021e8, 'PLMNT', 'Planetmint'],
|
|
935
936
|
[0x800022b8, 'SBTC', 'Super Bitcoin'],
|
|
936
937
|
[0x80002304, 'NULS', 'NULS'],
|
|
938
|
+
[0x80002325, 'BBC', 'Babacoin'],
|
|
937
939
|
[0x80002326, 'JGC', 'JagoanCoin'],
|
|
938
940
|
[0x80002327, 'BTP', 'Bitcoin Pay'],
|
|
939
941
|
[0x80002328, 'AVAX', 'Avalanche'],
|
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bip44-constants",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "167.0.0",
|
|
4
4
|
"description": "Bitcoin BIP44 constants.",
|
|
5
5
|
"files": [
|
|
6
|
-
"index.js"
|
|
6
|
+
"index.js",
|
|
7
|
+
"index.d.ts"
|
|
7
8
|
],
|
|
8
9
|
"main": "index.js",
|
|
10
|
+
"types": "index.d.ts",
|
|
9
11
|
"scripts": {
|
|
10
12
|
"lint": "standard",
|
|
11
13
|
"test": "npm run lint",
|