@@ -14,6 +14,7 @@ import {AManagedBudgetWithFeesV2} from "contracts/budgets/AManagedBudgetWithFees
14
14
import {AVestingBudget} from "contracts/budgets/AVestingBudget.sol " ;
15
15
16
16
import {ASignerValidator} from "contracts/validators/ASignerValidator.sol " ;
17
+ import {ALimitedSignerValidator} from "contracts/validators/ALimitedSignerValidator.sol " ;
17
18
18
19
import {AEventAction} from "contracts/actions/EventAction.sol " ;
19
20
@@ -49,6 +50,7 @@ contract LogComponentInterface is ScriptUtils {
49
50
_getInterfaceAManagedBudgetWithFeesV2 ();
50
51
_getInterfaceAVestingBudget ();
51
52
_getInterfaceASignerValidator ();
53
+ _getInterfaceALimitedSignerValidator ();
52
54
_getInterfaceAAllowListIncentive ();
53
55
_getInterfaceACGDAIncentive ();
54
56
_getInterfaceAIncentive ();
@@ -114,6 +116,12 @@ contract LogComponentInterface is ScriptUtils {
114
116
componentJson = componentJsonKey.serialize ("ASignerValidator " , interfaceId);
115
117
}
116
118
119
+
120
+ function _getInterfaceALimitedSignerValidator () internal {
121
+ string memory interfaceId = uint256 (uint32 (type (ALimitedSignerValidator).interfaceId)).toHexString (4 );
122
+ componentJson = componentJsonKey.serialize ("ALimitedSignerValidator " , interfaceId);
123
+ }
124
+
117
125
function _getInterfaceAAllowListIncentive () internal {
118
126
string memory interfaceId = uint256 (uint32 (type (AAllowListIncentive).interfaceId)).toHexString (4 );
119
127
componentJson = componentJsonKey.serialize ("AAllowListIncentive " , interfaceId);
0 commit comments