@dynamic-labs/sdk-api 0.0.924 → 0.0.925
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
|
@@ -34,8 +34,6 @@ function NetworkConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
'bech32Prefix': !runtime.exists(json, 'bech32Prefix') ? undefined : json['bech32Prefix'],
|
|
35
35
|
'genesisHash': !runtime.exists(json, 'genesisHash') ? undefined : json['genesisHash'],
|
|
36
36
|
'cluster': !runtime.exists(json, 'cluster') ? undefined : json['cluster'],
|
|
37
|
-
'hasNativeToken': !runtime.exists(json, 'hasNativeToken') ? undefined : json['hasNativeToken'],
|
|
38
|
-
'supportsFeeTokenSelection': !runtime.exists(json, 'supportsFeeTokenSelection') ? undefined : json['supportsFeeTokenSelection'],
|
|
39
37
|
};
|
|
40
38
|
}
|
|
41
39
|
function NetworkConfigurationToJSON(value) {
|
|
@@ -65,8 +63,6 @@ function NetworkConfigurationToJSON(value) {
|
|
|
65
63
|
'bech32Prefix': value.bech32Prefix,
|
|
66
64
|
'genesisHash': value.genesisHash,
|
|
67
65
|
'cluster': value.cluster,
|
|
68
|
-
'hasNativeToken': value.hasNativeToken,
|
|
69
|
-
'supportsFeeTokenSelection': value.supportsFeeTokenSelection,
|
|
70
66
|
};
|
|
71
67
|
}
|
|
72
68
|
|
|
@@ -131,18 +131,6 @@ export interface NetworkConfiguration {
|
|
|
131
131
|
* @memberof NetworkConfiguration
|
|
132
132
|
*/
|
|
133
133
|
cluster?: string;
|
|
134
|
-
/**
|
|
135
|
-
* Whether this network has a native token. Defaults to true if not specified.
|
|
136
|
-
* @type {boolean}
|
|
137
|
-
* @memberof NetworkConfiguration
|
|
138
|
-
*/
|
|
139
|
-
hasNativeToken?: boolean;
|
|
140
|
-
/**
|
|
141
|
-
* Whether this network supports selecting a fee token for transactions. Defaults to false if not specified.
|
|
142
|
-
* @type {boolean}
|
|
143
|
-
* @memberof NetworkConfiguration
|
|
144
|
-
*/
|
|
145
|
-
supportsFeeTokenSelection?: boolean;
|
|
146
134
|
}
|
|
147
135
|
export declare function NetworkConfigurationFromJSON(json: any): NetworkConfiguration;
|
|
148
136
|
export declare function NetworkConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): NetworkConfiguration;
|
|
@@ -30,8 +30,6 @@ function NetworkConfigurationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'bech32Prefix': !exists(json, 'bech32Prefix') ? undefined : json['bech32Prefix'],
|
|
31
31
|
'genesisHash': !exists(json, 'genesisHash') ? undefined : json['genesisHash'],
|
|
32
32
|
'cluster': !exists(json, 'cluster') ? undefined : json['cluster'],
|
|
33
|
-
'hasNativeToken': !exists(json, 'hasNativeToken') ? undefined : json['hasNativeToken'],
|
|
34
|
-
'supportsFeeTokenSelection': !exists(json, 'supportsFeeTokenSelection') ? undefined : json['supportsFeeTokenSelection'],
|
|
35
33
|
};
|
|
36
34
|
}
|
|
37
35
|
function NetworkConfigurationToJSON(value) {
|
|
@@ -61,8 +59,6 @@ function NetworkConfigurationToJSON(value) {
|
|
|
61
59
|
'bech32Prefix': value.bech32Prefix,
|
|
62
60
|
'genesisHash': value.genesisHash,
|
|
63
61
|
'cluster': value.cluster,
|
|
64
|
-
'hasNativeToken': value.hasNativeToken,
|
|
65
|
-
'supportsFeeTokenSelection': value.supportsFeeTokenSelection,
|
|
66
62
|
};
|
|
67
63
|
}
|
|
68
64
|
|