@yerofey/cryptowallet-cli 1.41.2 → 1.42.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/cli.js +3 -1
- package/package.json +14 -14
- package/src/Method.js +3 -1
- package/src/Wallet.js +3 -1
package/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yerofey/cryptowallet-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.0",
|
|
4
4
|
"description": "Crypto wallet generator CLI tool",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/yerofey/cryptowallet-cli",
|
|
@@ -116,13 +116,13 @@
|
|
|
116
116
|
],
|
|
117
117
|
"dependencies": {
|
|
118
118
|
"@binance-chain/javascript-sdk": "^4.2.2",
|
|
119
|
-
"@emurgo/cardano-serialization-lib-nodejs": "^
|
|
120
|
-
"@harmony-js/account": "^0.1.
|
|
119
|
+
"@emurgo/cardano-serialization-lib-nodejs": "^15.0.1",
|
|
120
|
+
"@harmony-js/account": "^0.1.57",
|
|
121
121
|
"@mysten/sui": "^1.18.0",
|
|
122
|
-
"@solana/web3.js": "^1.98.
|
|
123
|
-
"@ton/core": "^0.
|
|
122
|
+
"@solana/web3.js": "^1.98.4",
|
|
123
|
+
"@ton/core": "^0.61.0",
|
|
124
124
|
"@ton/crypto": "^3.3.0",
|
|
125
|
-
"@ton/ton": "^15.1
|
|
125
|
+
"@ton/ton": "^15.3.1",
|
|
126
126
|
"@yerofey/dogecoin-bip84": "^0.0.5",
|
|
127
127
|
"@yerofey/litecoin-bip84": "^0.0.5",
|
|
128
128
|
"bigint-buffer": "^1.1.5",
|
|
@@ -131,30 +131,30 @@
|
|
|
131
131
|
"bip86": "^0.0.4",
|
|
132
132
|
"bs58": "^6.0.0",
|
|
133
133
|
"cardano-wallet-js": "^1.4.0",
|
|
134
|
-
"chalk": "5.
|
|
134
|
+
"chalk": "5.6.2",
|
|
135
135
|
"clipboardy": "^4.0.0",
|
|
136
136
|
"coininfo": "5.2.1",
|
|
137
137
|
"coinkey": "3.0.0",
|
|
138
138
|
"columnify": "1.6.0",
|
|
139
|
-
"commander": "^
|
|
139
|
+
"commander": "^14.0.1",
|
|
140
140
|
"csv-writer": "^1.6.0",
|
|
141
|
-
"dotenv": "^
|
|
141
|
+
"dotenv": "^17.2.2",
|
|
142
142
|
"ed25519-hd-key": "^1.3.0",
|
|
143
143
|
"eth-lib": "0.1.29",
|
|
144
144
|
"ethereum-bip84": "0.0.3",
|
|
145
|
-
"ethereum-cryptography": "^3.
|
|
145
|
+
"ethereum-cryptography": "^3.2.0",
|
|
146
146
|
"ethereum-mnemonic-privatekey-utils": "1.0.5",
|
|
147
147
|
"qrcode-terminal": "^0.12.0",
|
|
148
148
|
"ripple-address-codec": "^5.0.0",
|
|
149
149
|
"ripple-keypairs": "^2.0.0",
|
|
150
|
-
"stellar-hd-wallet": "^
|
|
150
|
+
"stellar-hd-wallet": "^1.0.2",
|
|
151
151
|
"tezos-sign": "1.4.1",
|
|
152
152
|
"tonweb": "^0.0.66",
|
|
153
|
-
"tronweb": "^6.0.
|
|
153
|
+
"tronweb": "^6.0.4",
|
|
154
154
|
"xrpl": "^4.2.0"
|
|
155
155
|
},
|
|
156
156
|
"devDependencies": {
|
|
157
|
-
"ava": "^6.
|
|
158
|
-
"eslint": "^9.
|
|
157
|
+
"ava": "^6.4.1",
|
|
158
|
+
"eslint": "^9.35.0"
|
|
159
159
|
}
|
|
160
160
|
}
|
package/src/Method.js
CHANGED
package/src/Wallet.js
CHANGED
|
@@ -46,7 +46,9 @@ import StellarHDWallet from 'stellar-hd-wallet';
|
|
|
46
46
|
import { Seed as CardanoSeed } from 'cardano-wallet-js';
|
|
47
47
|
import CardanoWasm from '@emurgo/cardano-serialization-lib-nodejs';
|
|
48
48
|
|
|
49
|
-
config(
|
|
49
|
+
config({
|
|
50
|
+
quiet: true,
|
|
51
|
+
});
|
|
50
52
|
|
|
51
53
|
class Wallet {
|
|
52
54
|
constructor(cw) {
|