@dynamic-labs/sdk-api-core 0.0.607 → 0.0.608

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.607",
3
+ "version": "0.0.608",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -46,6 +46,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
46
46
  'ecdsaProviderType': !runtime.exists(json, 'ecdsaProviderType') ? undefined : EcdsaValidatorOptions.EcdsaValidatorOptionsFromJSON(json['ecdsaProviderType']),
47
47
  'createNewAccounts': !runtime.exists(json, 'createNewAccounts') ? undefined : json['createNewAccounts'],
48
48
  'enableKernelV3Migration': !runtime.exists(json, 'enableKernelV3Migration') ? undefined : json['enableKernelV3Migration'],
49
+ 'enableEIP7702': !runtime.exists(json, 'enableEIP7702') ? undefined : json['enableEIP7702'],
49
50
  };
50
51
  }
51
52
  function ProviderToJSON(value) {
@@ -82,6 +83,7 @@ function ProviderToJSON(value) {
82
83
  'ecdsaProviderType': EcdsaValidatorOptions.EcdsaValidatorOptionsToJSON(value.ecdsaProviderType),
83
84
  'createNewAccounts': value.createNewAccounts,
84
85
  'enableKernelV3Migration': value.enableKernelV3Migration,
86
+ 'enableEIP7702': value.enableEIP7702,
85
87
  };
86
88
  }
87
89
 
@@ -178,6 +178,12 @@ export interface Provider {
178
178
  * @memberof Provider
179
179
  */
180
180
  enableKernelV3Migration?: boolean;
181
+ /**
182
+ *
183
+ * @type {boolean}
184
+ * @memberof Provider
185
+ */
186
+ enableEIP7702?: boolean;
181
187
  }
182
188
  export declare function ProviderFromJSON(json: any): Provider;
183
189
  export declare function ProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Provider;
@@ -42,6 +42,7 @@ function ProviderFromJSONTyped(json, ignoreDiscriminator) {
42
42
  'ecdsaProviderType': !exists(json, 'ecdsaProviderType') ? undefined : EcdsaValidatorOptionsFromJSON(json['ecdsaProviderType']),
43
43
  'createNewAccounts': !exists(json, 'createNewAccounts') ? undefined : json['createNewAccounts'],
44
44
  'enableKernelV3Migration': !exists(json, 'enableKernelV3Migration') ? undefined : json['enableKernelV3Migration'],
45
+ 'enableEIP7702': !exists(json, 'enableEIP7702') ? undefined : json['enableEIP7702'],
45
46
  };
46
47
  }
47
48
  function ProviderToJSON(value) {
@@ -78,6 +79,7 @@ function ProviderToJSON(value) {
78
79
  'ecdsaProviderType': EcdsaValidatorOptionsToJSON(value.ecdsaProviderType),
79
80
  'createNewAccounts': value.createNewAccounts,
80
81
  'enableKernelV3Migration': value.enableKernelV3Migration,
82
+ 'enableEIP7702': value.enableEIP7702,
81
83
  };
82
84
  }
83
85