@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 CHANGED
@@ -16,7 +16,9 @@ import Method from './src/Method.js';
16
16
  import chalk from 'chalk';
17
17
 
18
18
  // load environment variables
19
- config();
19
+ config({
20
+ quiet: true,
21
+ });
20
22
 
21
23
  // get the current file path
22
24
  const __filename = fileURLToPath(import.meta.url);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yerofey/cryptowallet-cli",
3
- "version": "1.41.2",
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": "^14.1.1",
120
- "@harmony-js/account": "^0.1.58",
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.0",
123
- "@ton/core": "^0.60.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.0",
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.4.1",
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": "^13.1.0",
139
+ "commander": "^14.0.1",
140
140
  "csv-writer": "^1.6.0",
141
- "dotenv": "^16.4.7",
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.1.0",
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": "^0.0.10",
150
+ "stellar-hd-wallet": "^1.0.2",
151
151
  "tezos-sign": "1.4.1",
152
152
  "tonweb": "^0.0.66",
153
- "tronweb": "^6.0.1",
153
+ "tronweb": "^6.0.4",
154
154
  "xrpl": "^4.2.0"
155
155
  },
156
156
  "devDependencies": {
157
- "ava": "^6.2.0",
158
- "eslint": "^9.17.0"
157
+ "ava": "^6.4.1",
158
+ "eslint": "^9.35.0"
159
159
  }
160
160
  }
package/src/Method.js CHANGED
@@ -9,7 +9,9 @@ import CW from './CW.js';
9
9
  import { generateMnemonicString } from './Wallet.js';
10
10
  import { log, supportedChains, loadJson } from './utils.js';
11
11
 
12
- config();
12
+ config({
13
+ quiet: true,
14
+ });
13
15
 
14
16
  const {
15
17
  blue,
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) {