@toruslabs/ethereum-controllers 7.1.2 → 7.1.3
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.
|
@@ -520,6 +520,14 @@ export interface ISmartAccount {
|
|
|
520
520
|
}): Promise<SmartAccount>;
|
|
521
521
|
}
|
|
522
522
|
export type SmartAccountType = (typeof SMART_ACCOUNT)[keyof typeof SMART_ACCOUNT];
|
|
523
|
+
export type SmartAccountConfig = BiconomySmartAccountConfig | KernelSmartAccountConfig | NexusSmartAccountConfig | SafeSmartAccountConfig | TrustSmartAccountConfig;
|
|
524
|
+
export interface AccountAbstractionConfig {
|
|
525
|
+
smartAccountType: SmartAccountType;
|
|
526
|
+
smartAccountAddress?: string;
|
|
527
|
+
bundlerConfig: BundlerConfig;
|
|
528
|
+
paymasterConfig?: PaymasterConfig;
|
|
529
|
+
smartAccountConfig?: SmartAccountConfig;
|
|
530
|
+
}
|
|
523
531
|
export interface UserOperationGas {
|
|
524
532
|
callGasLimit: string;
|
|
525
533
|
preVerificationGas: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toruslabs/ethereum-controllers",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.3",
|
|
4
4
|
"homepage": "https://github.com/torusresearch/controllers#readme",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "6817fcf1b6b9b44c94c278311b711c2c2f4ff72c",
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
|
|
69
69
|
"@nomicfoundation/hardhat-ethers": "^3.0.8",
|