@steemit/steem-js 1.0.20 → 1.1.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/dist/index.umd.js CHANGED
@@ -16982,7 +16982,7 @@
16982
16982
  const Q = curve.recoverPubKey(msgBuffer, sigObj, i);
16983
16983
  return Q;
16984
16984
  }
16985
- catch (error) {
16985
+ catch {
16986
16986
  // Fallback to manual implementation if elliptic's method fails
16987
16987
  const G = curve.g;
16988
16988
  // A set LSB signifies that the y-coordinate is odd
@@ -17002,7 +17002,7 @@
17002
17002
  try {
17003
17003
  R = curve.curve.pointFromX(xHexPadded, isYOdd);
17004
17004
  }
17005
- catch (error) {
17005
+ catch {
17006
17006
  // If hex string fails, try with Buffer
17007
17007
  const xBuffer = x.toArrayLike(buffer.Buffer, 'be', 32);
17008
17008
  R = curve.curve.pointFromX(xBuffer, isYOdd);
@@ -29436,7 +29436,7 @@
29436
29436
  operations,
29437
29437
  utils: utils$n,
29438
29438
  ...crypto$1,
29439
- version: '1.0.20',
29439
+ version: '1.1.0',
29440
29440
  config: {
29441
29441
  set: (options) => {
29442
29442
  // If nodes is provided, extract the first node as url for API