@dynamic-labs/sdk-api-core 0.0.627 → 0.0.628
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -31,6 +31,7 @@ function NetworkConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
31
31
|
'vanityName': !runtime.exists(json, 'vanityName') ? undefined : json['vanityName'],
|
|
32
32
|
'bech32Prefix': !runtime.exists(json, 'bech32Prefix') ? undefined : json['bech32Prefix'],
|
|
33
33
|
'genesisHash': !runtime.exists(json, 'genesisHash') ? undefined : json['genesisHash'],
|
|
34
|
+
'cluster': !runtime.exists(json, 'cluster') ? undefined : json['cluster'],
|
|
34
35
|
};
|
|
35
36
|
}
|
|
36
37
|
function NetworkConfigurationToJSON(value) {
|
|
@@ -57,6 +58,7 @@ function NetworkConfigurationToJSON(value) {
|
|
|
57
58
|
'vanityName': value.vanityName,
|
|
58
59
|
'bech32Prefix': value.bech32Prefix,
|
|
59
60
|
'genesisHash': value.genesisHash,
|
|
61
|
+
'cluster': value.cluster,
|
|
60
62
|
};
|
|
61
63
|
}
|
|
62
64
|
|
|
@@ -113,6 +113,12 @@ export interface NetworkConfiguration {
|
|
|
113
113
|
* @memberof NetworkConfiguration
|
|
114
114
|
*/
|
|
115
115
|
genesisHash?: string;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof NetworkConfiguration
|
|
120
|
+
*/
|
|
121
|
+
cluster?: string;
|
|
116
122
|
}
|
|
117
123
|
export declare function NetworkConfigurationFromJSON(json: any): NetworkConfiguration;
|
|
118
124
|
export declare function NetworkConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): NetworkConfiguration;
|
|
@@ -27,6 +27,7 @@ function NetworkConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
27
|
'vanityName': !exists(json, 'vanityName') ? undefined : json['vanityName'],
|
|
28
28
|
'bech32Prefix': !exists(json, 'bech32Prefix') ? undefined : json['bech32Prefix'],
|
|
29
29
|
'genesisHash': !exists(json, 'genesisHash') ? undefined : json['genesisHash'],
|
|
30
|
+
'cluster': !exists(json, 'cluster') ? undefined : json['cluster'],
|
|
30
31
|
};
|
|
31
32
|
}
|
|
32
33
|
function NetworkConfigurationToJSON(value) {
|
|
@@ -53,6 +54,7 @@ function NetworkConfigurationToJSON(value) {
|
|
|
53
54
|
'vanityName': value.vanityName,
|
|
54
55
|
'bech32Prefix': value.bech32Prefix,
|
|
55
56
|
'genesisHash': value.genesisHash,
|
|
57
|
+
'cluster': value.cluster,
|
|
56
58
|
};
|
|
57
59
|
}
|
|
58
60
|
|