@dynamic-labs/sdk-api-core 0.0.611 → 0.0.612
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
|
@@ -30,6 +30,7 @@ function NetworkConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'blockExplorerUrls': json['blockExplorerUrls'],
|
|
31
31
|
'vanityName': !runtime.exists(json, 'vanityName') ? undefined : json['vanityName'],
|
|
32
32
|
'bech32Prefix': !runtime.exists(json, 'bech32Prefix') ? undefined : json['bech32Prefix'],
|
|
33
|
+
'genesisHash': !runtime.exists(json, 'genesisHash') ? undefined : json['genesisHash'],
|
|
33
34
|
};
|
|
34
35
|
}
|
|
35
36
|
function NetworkConfigurationToJSON(value) {
|
|
@@ -55,6 +56,7 @@ function NetworkConfigurationToJSON(value) {
|
|
|
55
56
|
'blockExplorerUrls': value.blockExplorerUrls,
|
|
56
57
|
'vanityName': value.vanityName,
|
|
57
58
|
'bech32Prefix': value.bech32Prefix,
|
|
59
|
+
'genesisHash': value.genesisHash,
|
|
58
60
|
};
|
|
59
61
|
}
|
|
60
62
|
|
|
@@ -107,6 +107,12 @@ export interface NetworkConfiguration {
|
|
|
107
107
|
* @memberof NetworkConfiguration
|
|
108
108
|
*/
|
|
109
109
|
bech32Prefix?: string;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof NetworkConfiguration
|
|
114
|
+
*/
|
|
115
|
+
genesisHash?: string;
|
|
110
116
|
}
|
|
111
117
|
export declare function NetworkConfigurationFromJSON(json: any): NetworkConfiguration;
|
|
112
118
|
export declare function NetworkConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): NetworkConfiguration;
|
|
@@ -26,6 +26,7 @@ function NetworkConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
'blockExplorerUrls': json['blockExplorerUrls'],
|
|
27
27
|
'vanityName': !exists(json, 'vanityName') ? undefined : json['vanityName'],
|
|
28
28
|
'bech32Prefix': !exists(json, 'bech32Prefix') ? undefined : json['bech32Prefix'],
|
|
29
|
+
'genesisHash': !exists(json, 'genesisHash') ? undefined : json['genesisHash'],
|
|
29
30
|
};
|
|
30
31
|
}
|
|
31
32
|
function NetworkConfigurationToJSON(value) {
|
|
@@ -51,6 +52,7 @@ function NetworkConfigurationToJSON(value) {
|
|
|
51
52
|
'blockExplorerUrls': value.blockExplorerUrls,
|
|
52
53
|
'vanityName': value.vanityName,
|
|
53
54
|
'bech32Prefix': value.bech32Prefix,
|
|
55
|
+
'genesisHash': value.genesisHash,
|
|
54
56
|
};
|
|
55
57
|
}
|
|
56
58
|
|