Socket
Socket
Sign inDemoInstall

@keplr-wallet/cosmos

Package Overview
Dependencies
Maintainers
1
Versions
563
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keplr-wallet/cosmos - npm Package Compare versions

Comparing version 0.8.13 to 0.8.15-rc.0

7

build/account/index.js

@@ -37,7 +37,4 @@ "use strict";

}
const type = obj.type;
if (!type) {
throw new Error(`Account's type is unknown: ${JSON.stringify(obj)}`);
}
let value = obj.value;
const type = obj.type || "";
let value = "value" in obj ? obj.value : obj;
// If the account is the vesting account that embeds the base vesting account,

@@ -44,0 +41,0 @@ // the actual base account exists under the base vesting account.

{
"name": "@keplr-wallet/cosmos",
"version": "0.8.13",
"version": "0.8.15-rc.0",
"main": "build/index.js",

@@ -33,3 +33,3 @@ "author": "chainapsis",

},
"gitHead": "f5abfcdbf09bdcca1f300640b28ee179c521849b"
"gitHead": "429902cfeecf0610743934416f77a519d6346b91"
}

@@ -45,8 +45,5 @@ import { Int } from "@keplr-wallet/unit";

const type = obj.type;
if (!type) {
throw new Error(`Account's type is unknown: ${JSON.stringify(obj)}`);
}
const type = obj.type || "";
let value = obj.value;
let value = "value" in obj ? obj.value : obj;

@@ -53,0 +50,0 @@ // If the account is the vesting account that embeds the base vesting account,

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc