New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@exodus/models

Package Overview
Dependencies
Maintainers
0
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/models - npm Package Compare versions

Comparing version 8.2.9 to 8.2.10

22

lib/wallet-account/index.js

@@ -6,3 +6,3 @@ "use strict";

});
exports.default = exports.getDefaultLabel = exports.DEFAULT_ICONS = exports.DEFAULT_COLORS = exports.LEDGER_SRC = exports.TREZOR_SRC = exports.EXODUS_SRC = void 0;
exports.default = exports.getDefaultLabel = exports.LABEL_MAX_LENGTH = exports.DEFAULT_ICONS = exports.DEFAULT_COLORS = exports.LEDGER_SRC = exports.TREZOR_SRC = exports.EXODUS_SRC = void 0;

@@ -35,2 +35,4 @@ var _proxyFreeze = _interopRequireDefault(require("proxy-freeze"));

exports.DEFAULT_ICONS = DEFAULT_ICONS;
const LABEL_MAX_LENGTH = 100;
exports.LABEL_MAX_LENGTH = LABEL_MAX_LENGTH;

@@ -106,2 +108,6 @@ const capFirst = str => str[0].toUpperCase() + str.slice(1);

if (label.length > LABEL_MAX_LENGTH) {
label = label.slice(0, LABEL_MAX_LENGTH);
}
if (!isColor(color)) {

@@ -169,2 +175,14 @@ throw new Error('expected "color" to be a hex string');

exports.default = WalletAccount;
exports.default = WalletAccount;
_defineProperty(WalletAccount, "LABEL_MAX_LENGTH", LABEL_MAX_LENGTH);
_defineProperty(WalletAccount, "DEFAULT_COLORS", DEFAULT_COLORS);
_defineProperty(WalletAccount, "DEFAULT_ICONS", DEFAULT_ICONS);
_defineProperty(WalletAccount, "EXODUS_SRC", EXODUS_SRC);
_defineProperty(WalletAccount, "TREZOR_SRC", TREZOR_SRC);
_defineProperty(WalletAccount, "LEDGER_SRC", LEDGER_SRC);

2

package.json
{
"name": "@exodus/models",
"version": "8.2.9",
"version": "8.2.10",
"description": "Exodus models",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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