@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.637 to 0.0.638
{ | ||
"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
2133042