@pioneer-platform/pioneer-coins 9.11.5 → 9.11.7
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/.turbo/turbo-build.log +2 -1
- package/CHANGELOG.md +12 -0
- package/lib/coins.d.ts +4 -0
- package/lib/coins.js +4 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
[0m[2m[35m$[0m [2m[1mtsc -p .[0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @pioneer-platform/pioneer-coins
|
|
2
2
|
|
|
3
|
+
## 9.11.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: chore: fix: move @types/pdfkit to dependencies for Docker --production build
|
|
8
|
+
|
|
9
|
+
## 9.11.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- chore: fix: move @types/pdfkit to dependencies for Docker --production build
|
|
14
|
+
|
|
3
15
|
## 9.11.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/lib/coins.d.ts
CHANGED
|
@@ -65,6 +65,8 @@ export declare const COIN_MAP_LONG: {
|
|
|
65
65
|
EOS: string;
|
|
66
66
|
XRP: string;
|
|
67
67
|
FIO: string;
|
|
68
|
+
MON: string;
|
|
69
|
+
HYPE: string;
|
|
68
70
|
};
|
|
69
71
|
export declare const COIN_MAP_LONG_XCHAIN: {
|
|
70
72
|
BTC: string;
|
|
@@ -107,6 +109,8 @@ export declare const COIN_MAP_KEEPKEY_LONG: {
|
|
|
107
109
|
EOS: string;
|
|
108
110
|
FIO: string;
|
|
109
111
|
ZEC: string;
|
|
112
|
+
MON: string;
|
|
113
|
+
HYPE: string;
|
|
110
114
|
};
|
|
111
115
|
export declare const SLIP_44_BY_LONG: any;
|
|
112
116
|
export declare const GET_NETWORK_NAME: (network: string) => string;
|
package/lib/coins.js
CHANGED
|
@@ -255,6 +255,8 @@ exports.COIN_MAP_LONG = {
|
|
|
255
255
|
EOS: "eos",
|
|
256
256
|
XRP: "ripple",
|
|
257
257
|
FIO: "fio",
|
|
258
|
+
MON: "monad",
|
|
259
|
+
HYPE: "hyperliquid",
|
|
258
260
|
};
|
|
259
261
|
exports.COIN_MAP_LONG_XCHAIN = {
|
|
260
262
|
BTC: "bitcoin",
|
|
@@ -297,6 +299,8 @@ exports.COIN_MAP_KEEPKEY_LONG = {
|
|
|
297
299
|
EOS: "Eos",
|
|
298
300
|
FIO: "Fio",
|
|
299
301
|
ZEC: 'Zcash',
|
|
302
|
+
MON: 'Monad',
|
|
303
|
+
HYPE: 'Hyperliquid',
|
|
300
304
|
};
|
|
301
305
|
exports.SLIP_44_BY_LONG = {
|
|
302
306
|
bitcoin: 0,
|