@dynamic-labs/sdk-api-core 0.0.596 → 0.0.597
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
package/src/models/Provider.cjs
CHANGED
|
@@ -45,6 +45,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
45
45
|
'multichainAccountAbstractionProviders': !runtime.exists(json, 'multichainAccountAbstractionProviders') ? undefined : (json['multichainAccountAbstractionProviders'].map(ProviderMultichainAccountAbstractionProviders.ProviderMultichainAccountAbstractionProvidersFromJSON)),
|
|
46
46
|
'ecdsaProviderType': !runtime.exists(json, 'ecdsaProviderType') ? undefined : EcdsaValidatorOptions.EcdsaValidatorOptionsFromJSON(json['ecdsaProviderType']),
|
|
47
47
|
'createNewAccounts': !runtime.exists(json, 'createNewAccounts') ? undefined : json['createNewAccounts'],
|
|
48
|
+
'enableKernelV3Migration': !runtime.exists(json, 'enableKernelV3Migration') ? undefined : json['enableKernelV3Migration'],
|
|
48
49
|
};
|
|
49
50
|
}
|
|
50
51
|
function ProviderToJSON(value) {
|
|
@@ -80,6 +81,7 @@ function ProviderToJSON(value) {
|
|
|
80
81
|
'multichainAccountAbstractionProviders': value.multichainAccountAbstractionProviders === undefined ? undefined : (value.multichainAccountAbstractionProviders.map(ProviderMultichainAccountAbstractionProviders.ProviderMultichainAccountAbstractionProvidersToJSON)),
|
|
81
82
|
'ecdsaProviderType': EcdsaValidatorOptions.EcdsaValidatorOptionsToJSON(value.ecdsaProviderType),
|
|
82
83
|
'createNewAccounts': value.createNewAccounts,
|
|
84
|
+
'enableKernelV3Migration': value.enableKernelV3Migration,
|
|
83
85
|
};
|
|
84
86
|
}
|
|
85
87
|
|
package/src/models/Provider.d.ts
CHANGED
|
@@ -172,6 +172,12 @@ export interface Provider {
|
|
|
172
172
|
* @memberof Provider
|
|
173
173
|
*/
|
|
174
174
|
createNewAccounts?: boolean;
|
|
175
|
+
/**
|
|
176
|
+
*
|
|
177
|
+
* @type {boolean}
|
|
178
|
+
* @memberof Provider
|
|
179
|
+
*/
|
|
180
|
+
enableKernelV3Migration?: boolean;
|
|
175
181
|
}
|
|
176
182
|
export declare function ProviderFromJSON(json: any): Provider;
|
|
177
183
|
export declare function ProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Provider;
|
package/src/models/Provider.js
CHANGED
|
@@ -41,6 +41,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'multichainAccountAbstractionProviders': !exists(json, 'multichainAccountAbstractionProviders') ? undefined : (json['multichainAccountAbstractionProviders'].map(ProviderMultichainAccountAbstractionProvidersFromJSON)),
|
|
42
42
|
'ecdsaProviderType': !exists(json, 'ecdsaProviderType') ? undefined : EcdsaValidatorOptionsFromJSON(json['ecdsaProviderType']),
|
|
43
43
|
'createNewAccounts': !exists(json, 'createNewAccounts') ? undefined : json['createNewAccounts'],
|
|
44
|
+
'enableKernelV3Migration': !exists(json, 'enableKernelV3Migration') ? undefined : json['enableKernelV3Migration'],
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
function ProviderToJSON(value) {
|
|
@@ -76,6 +77,7 @@ function ProviderToJSON(value) {
|
|
|
76
77
|
'multichainAccountAbstractionProviders': value.multichainAccountAbstractionProviders === undefined ? undefined : (value.multichainAccountAbstractionProviders.map(ProviderMultichainAccountAbstractionProvidersToJSON)),
|
|
77
78
|
'ecdsaProviderType': EcdsaValidatorOptionsToJSON(value.ecdsaProviderType),
|
|
78
79
|
'createNewAccounts': value.createNewAccounts,
|
|
80
|
+
'enableKernelV3Migration': value.enableKernelV3Migration,
|
|
79
81
|
};
|
|
80
82
|
}
|
|
81
83
|
|