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

@dynamic-labs/sdk-api-core

Package Overview
Dependencies
Maintainers
0
Versions
225
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs/sdk-api-core - npm Package Compare versions

Comparing version 0.0.637 to 0.0.638

2

package.json
{
"name": "@dynamic-labs/sdk-api-core",
"version": "0.0.637",
"version": "0.0.638",
"author": "Dynamic Labs",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -37,3 +37,3 @@ /**

*/
key: string;
key?: string;
/**

@@ -56,3 +56,3 @@ *

*/
isTestnet: boolean;
isTestnet?: boolean;
/**

@@ -59,0 +59,0 @@ *

@@ -16,6 +16,6 @@ import { exists } from '../runtime.js';

'chainName': !exists(json, 'chainName') ? undefined : json['chainName'],
'key': json['key'],
'key': !exists(json, 'key') ? undefined : json['key'],
'name': json['name'],
'shortName': json['shortName'],
'isTestnet': json['isTestnet'],
'isTestnet': !exists(json, 'isTestnet') ? undefined : json['isTestnet'],
'chain': json['chain'],

@@ -22,0 +22,0 @@ 'chainId': json['chainId'],

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