@multiversx/sdk-wallet
Advanced tools
Comparing version 4.2.0-alpha.1 to 4.2.0-alpha.2
@@ -36,3 +36,3 @@ "use strict"; | ||
assertions_1.guardLength(buffer, exports.USER_SEED_LENGTH); | ||
this.buffer = buffer; | ||
this.buffer = Buffer.from(buffer); | ||
} | ||
@@ -56,6 +56,6 @@ static fromString(value) { | ||
hex() { | ||
return Buffer.from(this.buffer).toString("hex"); | ||
return this.buffer.toString("hex"); | ||
} | ||
valueOf() { | ||
return Buffer.from(this.buffer); | ||
return this.buffer; | ||
} | ||
@@ -62,0 +62,0 @@ } |
{ | ||
"name": "@multiversx/sdk-wallet", | ||
"version": "4.2.0-alpha.1", | ||
"version": "4.2.0-alpha.2", | ||
"description": "Wallet components for MultiversX", | ||
@@ -5,0 +5,0 @@ "main": "out/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
83684