@yerofey/cryptowallet-cli 1.31.0 → 1.31.2
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/package.json +1 -1
- package/src/Wallet.js +14 -5
package/package.json
CHANGED
package/src/Wallet.js
CHANGED
|
@@ -514,8 +514,13 @@ class Wallet {
|
|
|
514
514
|
});
|
|
515
515
|
const v5Address = walletV5.address;
|
|
516
516
|
const nonBounceableV5Address = v5Address.toString({
|
|
517
|
-
bounceable: false,
|
|
518
|
-
urlSafe: true,
|
|
517
|
+
bounceable: false, // (UQ)
|
|
518
|
+
urlSafe: true,
|
|
519
|
+
testOnly: false,
|
|
520
|
+
});
|
|
521
|
+
const bouncableAddressV5 = v5Address.toString({
|
|
522
|
+
bounceable: true, // (EQ)
|
|
523
|
+
urlSafe: true,
|
|
519
524
|
testOnly: false,
|
|
520
525
|
});
|
|
521
526
|
|
|
@@ -526,12 +531,16 @@ class Wallet {
|
|
|
526
531
|
address: nonBounceableV5Address,
|
|
527
532
|
},
|
|
528
533
|
{
|
|
529
|
-
title:
|
|
534
|
+
title:
|
|
535
|
+
'V5R1: EQ format (new): best for smart contracts, - bounceable',
|
|
536
|
+
address: bouncableAddressV5,
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
title: 'V4R2: UQ format: best for wallets, - non-bounceable',
|
|
530
540
|
address: nonBounceableAddress,
|
|
531
541
|
},
|
|
532
542
|
{
|
|
533
|
-
title:
|
|
534
|
-
'V4R2: EQ format (old): best for smart contracts, - bounceable',
|
|
543
|
+
title: 'V4R2: EQ format: best for smart contracts, - bounceable',
|
|
535
544
|
address: bouncableAddress,
|
|
536
545
|
},
|
|
537
546
|
],
|