Skip to content

Commit

Permalink
chore: Update package.json version to 1.31.2 and fix address format i…
Browse files Browse the repository at this point in the history
…n Wallet.js
  • Loading branch information
yerofey committed Sep 4, 2024
1 parent 3bf3f5f commit cd234ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yerofey/cryptowallet-cli",
"version": "1.31.1",
"version": "1.31.2",
"description": "Crypto wallet generator CLI tool",
"type": "module",
"homepage": "https://github.com/yerofey/cryptowallet-cli",
Expand Down
8 changes: 4 additions & 4 deletions src/Wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -514,13 +514,13 @@ class Wallet {
});
const v5Address = walletV5.address;
const nonBounceableV5Address = v5Address.toString({
bounceable: false,
urlSafe: true, // (UQ)
bounceable: false, // (UQ)
urlSafe: true,
testOnly: false,
});
const bouncableAddressV5 = v5Address.toString({
bounceable: true,
urlSafe: false, // (EQ)
bounceable: true, // (EQ)
urlSafe: true,
testOnly: false,
});

Expand Down

0 comments on commit cd234ff

Please sign in to comment.