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

@exodus/trezor-meta

Package Overview
Dependencies
Maintainers
0
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/trezor-meta - npm Package Compare versions

Comparing version 3.3.6 to 3.3.7

6

package.json
{
"name": "@exodus/trezor-meta",
"version": "3.3.6",
"version": "3.3.7",
"description": "trezor constants, firmware, and utils",

@@ -9,3 +9,4 @@ "main": "src/index.js",

"files": [
"src/**"
"src/**",
"!src/__tests__/**"
],

@@ -55,3 +56,2 @@ "scripts": {

"dependencies": {
"lodash": "^4.17.19",
"semver": "^6.3.0"

@@ -58,0 +58,0 @@ },

@@ -1,6 +0,10 @@

const difference = require('lodash/difference')
const uniq = require('lodash/uniq')
const constants = require('./constants')
const coinUtil = require('./coin-util')
const uniq = (arr) => [...new Set(arr)]
const difference = (arr1, arr2) => {
const set2 = new Set(arr2)
return arr1.filter((x) => !set2.has(x))
}
module.exports = (assets) => {

@@ -7,0 +11,0 @@ const ERC20_TOKEN_NAMES = Object.keys(assets).filter(

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