@hyperlane-xyz/core 3.12.2 → 3.13.0
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/README.md +1 -1
- package/contracts/avs/ECDSAStakeRegistry.sol +119 -29
- package/contracts/avs/ECDSAStakeRegistryStorage.sol +5 -1
- package/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors.sol +15 -2
- package/contracts/test/ERC20Test.sol +12 -0
- package/contracts/token/extensions/{HypFiatTokenCollateral.sol → HypFiatToken.sol} +1 -1
- package/contracts/token/extensions/{HypXERC20Collateral.sol → HypXERC20.sol} +1 -1
- package/contracts/token/extensions/HypXERC20Lockbox.sol +54 -0
- package/contracts/token/interfaces/IXERC20.sol +15 -0
- package/contracts/token/interfaces/IXERC20Lockbox.sol +61 -0
- package/dist/buildArtifact.js +1 -1
- package/dist/buildArtifact.json +1 -1
- package/dist/contracts/avs/ECDSAStakeRegistry.d.ts +94 -15
- package/dist/contracts/avs/ECDSAStakeRegistry.d.ts.map +1 -1
- package/dist/contracts/avs/ECDSAStakeRegistryStorage.d.ts +18 -0
- package/dist/contracts/avs/ECDSAStakeRegistryStorage.d.ts.map +1 -1
- package/dist/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors.d.ts +18 -0
- package/dist/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors.d.ts.map +1 -1
- package/dist/contracts/test/ERC20Test.sol/XERC20Test.d.ts +63 -1
- package/dist/contracts/test/ERC20Test.sol/XERC20Test.d.ts.map +1 -1
- package/dist/contracts/token/extensions/{HypXERC20Collateral.d.ts → HypFiatToken.d.ts} +4 -4
- package/dist/contracts/token/extensions/HypFiatToken.d.ts.map +1 -0
- package/dist/contracts/token/extensions/HypFiatToken.js +2 -0
- package/dist/contracts/token/extensions/HypFiatToken.js.map +1 -0
- package/dist/contracts/token/extensions/{HypFiatTokenCollateral.d.ts → HypXERC20.d.ts} +4 -4
- package/dist/contracts/token/extensions/HypXERC20.d.ts.map +1 -0
- package/dist/contracts/token/extensions/HypXERC20.js +2 -0
- package/dist/contracts/token/extensions/HypXERC20.js.map +1 -0
- package/dist/contracts/token/{HypERC20CollateralVaultDeposit.d.ts → extensions/HypXERC20Lockbox.d.ts} +36 -81
- package/dist/contracts/token/extensions/HypXERC20Lockbox.d.ts.map +1 -0
- package/dist/contracts/token/extensions/HypXERC20Lockbox.js +2 -0
- package/dist/contracts/token/extensions/HypXERC20Lockbox.js.map +1 -0
- package/dist/contracts/token/extensions/index.d.ts +3 -2
- package/dist/contracts/token/extensions/index.d.ts.map +1 -1
- package/dist/contracts/token/interfaces/IXERC20.d.ts +63 -1
- package/dist/contracts/token/interfaces/IXERC20.d.ts.map +1 -1
- package/dist/contracts/token/interfaces/IXERC20Lockbox.d.ts +252 -0
- package/dist/contracts/token/interfaces/IXERC20Lockbox.d.ts.map +1 -0
- package/dist/contracts/token/interfaces/IXERC20Lockbox.js +2 -0
- package/dist/contracts/token/interfaces/IXERC20Lockbox.js.map +1 -0
- package/dist/contracts/token/interfaces/index.d.ts +1 -0
- package/dist/contracts/token/interfaces/index.d.ts.map +1 -1
- package/dist/factories/contracts/avs/ECDSAStakeRegistryStorage__factory.d.ts +29 -0
- package/dist/factories/contracts/avs/ECDSAStakeRegistryStorage__factory.d.ts.map +1 -1
- package/dist/factories/contracts/avs/ECDSAStakeRegistryStorage__factory.js +36 -0
- package/dist/factories/contracts/avs/ECDSAStakeRegistryStorage__factory.js.map +1 -1
- package/dist/factories/contracts/avs/ECDSAStakeRegistry__factory.d.ts +76 -5
- package/dist/factories/contracts/avs/ECDSAStakeRegistry__factory.d.ts.map +1 -1
- package/dist/factories/contracts/avs/ECDSAStakeRegistry__factory.js +98 -6
- package/dist/factories/contracts/avs/ECDSAStakeRegistry__factory.js.map +1 -1
- package/dist/factories/contracts/avs/HyperlaneServiceManager__factory.d.ts +1 -1
- package/dist/factories/contracts/avs/HyperlaneServiceManager__factory.js +1 -1
- package/dist/factories/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors__factory.d.ts +29 -0
- package/dist/factories/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors__factory.d.ts.map +1 -1
- package/dist/factories/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors__factory.js +36 -0
- package/dist/factories/contracts/interfaces/avs/vendored/IECDSAStakeRegistryEventsAndErrors__factory.js.map +1 -1
- package/dist/factories/contracts/test/ERC20Test.sol/ERC20Test__factory.d.ts +1 -1
- package/dist/factories/contracts/test/ERC20Test.sol/ERC20Test__factory.js +1 -1
- package/dist/factories/contracts/test/ERC20Test.sol/FiatTokenTest__factory.d.ts +1 -1
- package/dist/factories/contracts/test/ERC20Test.sol/FiatTokenTest__factory.js +1 -1
- package/dist/factories/contracts/test/ERC20Test.sol/XERC20Test__factory.d.ts +29 -1
- package/dist/factories/contracts/test/ERC20Test.sol/XERC20Test__factory.d.ts.map +1 -1
- package/dist/factories/contracts/test/ERC20Test.sol/XERC20Test__factory.js +37 -1
- package/dist/factories/contracts/test/ERC20Test.sol/XERC20Test__factory.js.map +1 -1
- package/dist/factories/contracts/test/TestRemoteChallenger__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestRemoteChallenger__factory.js +1 -1
- package/dist/factories/contracts/test/avs/TestHyperlaneServiceManager__factory.d.ts +1 -1
- package/dist/factories/contracts/test/avs/TestHyperlaneServiceManager__factory.js +1 -1
- package/dist/factories/contracts/token/extensions/{HypFiatTokenCollateral__factory.d.ts → HypFiatToken__factory.d.ts} +11 -11
- package/dist/factories/contracts/token/extensions/HypFiatToken__factory.d.ts.map +1 -0
- package/dist/factories/contracts/token/extensions/{HypFiatTokenCollateral__factory.js → HypFiatToken__factory.js} +3 -3
- package/dist/factories/contracts/token/extensions/HypFiatToken__factory.js.map +1 -0
- package/dist/factories/contracts/token/extensions/HypXERC20Lockbox__factory.d.ts +449 -0
- package/dist/factories/contracts/token/extensions/HypXERC20Lockbox__factory.d.ts.map +1 -0
- package/dist/factories/contracts/token/extensions/HypXERC20Lockbox__factory.js +595 -0
- package/dist/factories/contracts/token/extensions/HypXERC20Lockbox__factory.js.map +1 -0
- package/dist/factories/contracts/token/extensions/{HypXERC20Collateral__factory.d.ts → HypXERC20__factory.d.ts} +11 -11
- package/dist/factories/contracts/token/extensions/HypXERC20__factory.d.ts.map +1 -0
- package/dist/factories/contracts/token/extensions/{HypXERC20Collateral__factory.js → HypXERC20__factory.js} +3 -3
- package/dist/factories/contracts/token/extensions/HypXERC20__factory.js.map +1 -0
- package/dist/factories/contracts/token/extensions/index.d.ts +3 -2
- package/dist/factories/contracts/token/extensions/index.d.ts.map +1 -1
- package/dist/factories/contracts/token/extensions/index.js +3 -2
- package/dist/factories/contracts/token/extensions/index.js.map +1 -1
- package/dist/factories/contracts/token/interfaces/IXERC20Lockbox__factory.d.ts +87 -0
- package/dist/factories/contracts/token/interfaces/IXERC20Lockbox__factory.d.ts.map +1 -0
- package/dist/factories/contracts/token/interfaces/IXERC20Lockbox__factory.js +117 -0
- package/dist/factories/contracts/token/interfaces/IXERC20Lockbox__factory.js.map +1 -0
- package/dist/factories/contracts/token/interfaces/IXERC20__factory.d.ts +28 -0
- package/dist/factories/contracts/token/interfaces/IXERC20__factory.d.ts.map +1 -1
- package/dist/factories/contracts/token/interfaces/IXERC20__factory.js +36 -0
- package/dist/factories/contracts/token/interfaces/IXERC20__factory.js.map +1 -1
- package/dist/factories/contracts/token/interfaces/index.d.ts +1 -0
- package/dist/factories/contracts/token/interfaces/index.d.ts.map +1 -1
- package/dist/factories/contracts/token/interfaces/index.js +1 -0
- package/dist/factories/contracts/token/interfaces/index.js.map +1 -1
- package/dist/index.d.ts +8 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/contracts/interfaces/avs/IAVSDirectory.d.ts +0 -160
- package/dist/contracts/interfaces/avs/IAVSDirectory.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IAVSDirectory.js +0 -2
- package/dist/contracts/interfaces/avs/IAVSDirectory.js.map +0 -1
- package/dist/contracts/interfaces/avs/IDelegationManager.d.ts +0 -93
- package/dist/contracts/interfaces/avs/IDelegationManager.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IDelegationManager.js +0 -2
- package/dist/contracts/interfaces/avs/IDelegationManager.js.map +0 -1
- package/dist/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors.d.ts +0 -157
- package/dist/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors.js +0 -2
- package/dist/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors.js.map +0 -1
- package/dist/contracts/interfaces/avs/IPaymentCoordinator.d.ts +0 -96
- package/dist/contracts/interfaces/avs/IPaymentCoordinator.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IPaymentCoordinator.js +0 -2
- package/dist/contracts/interfaces/avs/IPaymentCoordinator.js.map +0 -1
- package/dist/contracts/interfaces/avs/IServiceManager.d.ts +0 -250
- package/dist/contracts/interfaces/avs/IServiceManager.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IServiceManager.js +0 -2
- package/dist/contracts/interfaces/avs/IServiceManager.js.map +0 -1
- package/dist/contracts/interfaces/avs/IServiceManagerUI.d.ts +0 -189
- package/dist/contracts/interfaces/avs/IServiceManagerUI.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IServiceManagerUI.js +0 -2
- package/dist/contracts/interfaces/avs/IServiceManagerUI.js.map +0 -1
- package/dist/contracts/interfaces/avs/ISlasher.d.ts +0 -66
- package/dist/contracts/interfaces/avs/ISlasher.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/ISlasher.js +0 -2
- package/dist/contracts/interfaces/avs/ISlasher.js.map +0 -1
- package/dist/contracts/interfaces/avs/IStrategy.d.ts +0 -295
- package/dist/contracts/interfaces/avs/IStrategy.d.ts.map +0 -1
- package/dist/contracts/interfaces/avs/IStrategy.js +0 -2
- package/dist/contracts/interfaces/avs/IStrategy.js.map +0 -1
- package/dist/contracts/test/ERC20Test.d.ts +0 -391
- package/dist/contracts/test/ERC20Test.d.ts.map +0 -1
- package/dist/contracts/test/ERC20Test.js +0 -2
- package/dist/contracts/test/ERC20Test.js.map +0 -1
- package/dist/contracts/token/HypERC20CollateralVaultDeposit.d.ts.map +0 -1
- package/dist/contracts/token/HypERC20CollateralVaultDeposit.js +0 -2
- package/dist/contracts/token/HypERC20CollateralVaultDeposit.js.map +0 -1
- package/dist/contracts/token/extensions/HypFiatTokenCollateral.d.ts.map +0 -1
- package/dist/contracts/token/extensions/HypFiatTokenCollateral.js +0 -2
- package/dist/contracts/token/extensions/HypFiatTokenCollateral.js.map +0 -1
- package/dist/contracts/token/extensions/HypXERC20Collateral.d.ts.map +0 -1
- package/dist/contracts/token/extensions/HypXERC20Collateral.js +0 -2
- package/dist/contracts/token/extensions/HypXERC20Collateral.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IAVSDirectory__factory.d.ts +0 -71
- package/dist/factories/contracts/interfaces/avs/IAVSDirectory__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IAVSDirectory__factory.js +0 -96
- package/dist/factories/contracts/interfaces/avs/IAVSDirectory__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IDelegationManager__factory.d.ts +0 -54
- package/dist/factories/contracts/interfaces/avs/IDelegationManager__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IDelegationManager__factory.js +0 -75
- package/dist/factories/contracts/interfaces/avs/IDelegationManager__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.d.ts +0 -205
- package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.js +0 -266
- package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IPaymentCoordinator__factory.d.ts +0 -49
- package/dist/factories/contracts/interfaces/avs/IPaymentCoordinator__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IPaymentCoordinator__factory.js +0 -68
- package/dist/factories/contracts/interfaces/avs/IPaymentCoordinator__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IServiceManagerUI__factory.d.ts +0 -90
- package/dist/factories/contracts/interfaces/avs/IServiceManagerUI__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IServiceManagerUI__factory.js +0 -122
- package/dist/factories/contracts/interfaces/avs/IServiceManagerUI__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IServiceManager__factory.d.ts +0 -130
- package/dist/factories/contracts/interfaces/avs/IServiceManager__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IServiceManager__factory.js +0 -174
- package/dist/factories/contracts/interfaces/avs/IServiceManager__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/ISlasher__factory.d.ts +0 -19
- package/dist/factories/contracts/interfaces/avs/ISlasher__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/ISlasher__factory.js +0 -29
- package/dist/factories/contracts/interfaces/avs/ISlasher__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IStrategy__factory.d.ts +0 -173
- package/dist/factories/contracts/interfaces/avs/IStrategy__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/avs/IStrategy__factory.js +0 -235
- package/dist/factories/contracts/interfaces/avs/IStrategy__factory.js.map +0 -1
- package/dist/factories/contracts/test/ERC20Test__factory.d.ts +0 -281
- package/dist/factories/contracts/test/ERC20Test__factory.d.ts.map +0 -1
- package/dist/factories/contracts/test/ERC20Test__factory.js +0 -379
- package/dist/factories/contracts/test/ERC20Test__factory.js.map +0 -1
- package/dist/factories/contracts/token/HypERC20CollateralVaultDeposit__factory.d.ts +0 -470
- package/dist/factories/contracts/token/HypERC20CollateralVaultDeposit__factory.d.ts.map +0 -1
- package/dist/factories/contracts/token/HypERC20CollateralVaultDeposit__factory.js +0 -621
- package/dist/factories/contracts/token/HypERC20CollateralVaultDeposit__factory.js.map +0 -1
- package/dist/factories/contracts/token/extensions/HypFiatTokenCollateral__factory.d.ts.map +0 -1
- package/dist/factories/contracts/token/extensions/HypFiatTokenCollateral__factory.js.map +0 -1
- package/dist/factories/contracts/token/extensions/HypXERC20Collateral__factory.d.ts.map +0 -1
- package/dist/factories/contracts/token/extensions/HypXERC20Collateral__factory.js.map +0 -1
package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.d.ts
DELETED
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type { IECDSAStakeRegistryEventsAndErrors, IECDSAStakeRegistryEventsAndErrorsInterface } from "../../../../contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors.js";
|
|
4
|
-
export declare class IECDSAStakeRegistryEventsAndErrors__factory {
|
|
5
|
-
static readonly abi: readonly [{
|
|
6
|
-
readonly inputs: readonly [];
|
|
7
|
-
readonly name: "InsufficientSignedStake";
|
|
8
|
-
readonly type: "error";
|
|
9
|
-
}, {
|
|
10
|
-
readonly inputs: readonly [];
|
|
11
|
-
readonly name: "InsufficientWeight";
|
|
12
|
-
readonly type: "error";
|
|
13
|
-
}, {
|
|
14
|
-
readonly inputs: readonly [];
|
|
15
|
-
readonly name: "InvalidLength";
|
|
16
|
-
readonly type: "error";
|
|
17
|
-
}, {
|
|
18
|
-
readonly inputs: readonly [];
|
|
19
|
-
readonly name: "InvalidQuorum";
|
|
20
|
-
readonly type: "error";
|
|
21
|
-
}, {
|
|
22
|
-
readonly inputs: readonly [];
|
|
23
|
-
readonly name: "InvalidSignature";
|
|
24
|
-
readonly type: "error";
|
|
25
|
-
}, {
|
|
26
|
-
readonly inputs: readonly [];
|
|
27
|
-
readonly name: "InvalidSignedWeight";
|
|
28
|
-
readonly type: "error";
|
|
29
|
-
}, {
|
|
30
|
-
readonly inputs: readonly [];
|
|
31
|
-
readonly name: "InvalidThreshold";
|
|
32
|
-
readonly type: "error";
|
|
33
|
-
}, {
|
|
34
|
-
readonly inputs: readonly [];
|
|
35
|
-
readonly name: "LengthMismatch";
|
|
36
|
-
readonly type: "error";
|
|
37
|
-
}, {
|
|
38
|
-
readonly inputs: readonly [];
|
|
39
|
-
readonly name: "MustUpdateAllOperators";
|
|
40
|
-
readonly type: "error";
|
|
41
|
-
}, {
|
|
42
|
-
readonly inputs: readonly [];
|
|
43
|
-
readonly name: "NotSorted";
|
|
44
|
-
readonly type: "error";
|
|
45
|
-
}, {
|
|
46
|
-
readonly inputs: readonly [];
|
|
47
|
-
readonly name: "OperatorAlreadyRegistered";
|
|
48
|
-
readonly type: "error";
|
|
49
|
-
}, {
|
|
50
|
-
readonly inputs: readonly [];
|
|
51
|
-
readonly name: "OperatorNotRegistered";
|
|
52
|
-
readonly type: "error";
|
|
53
|
-
}, {
|
|
54
|
-
readonly anonymous: false;
|
|
55
|
-
readonly inputs: readonly [{
|
|
56
|
-
readonly indexed: false;
|
|
57
|
-
readonly internalType: "uint256";
|
|
58
|
-
readonly name: "_old";
|
|
59
|
-
readonly type: "uint256";
|
|
60
|
-
}, {
|
|
61
|
-
readonly indexed: false;
|
|
62
|
-
readonly internalType: "uint256";
|
|
63
|
-
readonly name: "_new";
|
|
64
|
-
readonly type: "uint256";
|
|
65
|
-
}];
|
|
66
|
-
readonly name: "MinimumWeightUpdated";
|
|
67
|
-
readonly type: "event";
|
|
68
|
-
}, {
|
|
69
|
-
readonly anonymous: false;
|
|
70
|
-
readonly inputs: readonly [{
|
|
71
|
-
readonly indexed: true;
|
|
72
|
-
readonly internalType: "address";
|
|
73
|
-
readonly name: "_operator";
|
|
74
|
-
readonly type: "address";
|
|
75
|
-
}, {
|
|
76
|
-
readonly indexed: true;
|
|
77
|
-
readonly internalType: "address";
|
|
78
|
-
readonly name: "_avs";
|
|
79
|
-
readonly type: "address";
|
|
80
|
-
}];
|
|
81
|
-
readonly name: "OperatorDeregistered";
|
|
82
|
-
readonly type: "event";
|
|
83
|
-
}, {
|
|
84
|
-
readonly anonymous: false;
|
|
85
|
-
readonly inputs: readonly [{
|
|
86
|
-
readonly indexed: true;
|
|
87
|
-
readonly internalType: "address";
|
|
88
|
-
readonly name: "_operator";
|
|
89
|
-
readonly type: "address";
|
|
90
|
-
}, {
|
|
91
|
-
readonly indexed: true;
|
|
92
|
-
readonly internalType: "address";
|
|
93
|
-
readonly name: "_avs";
|
|
94
|
-
readonly type: "address";
|
|
95
|
-
}];
|
|
96
|
-
readonly name: "OperatorRegistered";
|
|
97
|
-
readonly type: "event";
|
|
98
|
-
}, {
|
|
99
|
-
readonly anonymous: false;
|
|
100
|
-
readonly inputs: readonly [{
|
|
101
|
-
readonly indexed: true;
|
|
102
|
-
readonly internalType: "address";
|
|
103
|
-
readonly name: "_operator";
|
|
104
|
-
readonly type: "address";
|
|
105
|
-
}, {
|
|
106
|
-
readonly indexed: false;
|
|
107
|
-
readonly internalType: "uint256";
|
|
108
|
-
readonly name: "oldWeight";
|
|
109
|
-
readonly type: "uint256";
|
|
110
|
-
}, {
|
|
111
|
-
readonly indexed: false;
|
|
112
|
-
readonly internalType: "uint256";
|
|
113
|
-
readonly name: "newWeight";
|
|
114
|
-
readonly type: "uint256";
|
|
115
|
-
}];
|
|
116
|
-
readonly name: "OperatorWeightUpdated";
|
|
117
|
-
readonly type: "event";
|
|
118
|
-
}, {
|
|
119
|
-
readonly anonymous: false;
|
|
120
|
-
readonly inputs: readonly [{
|
|
121
|
-
readonly components: readonly [{
|
|
122
|
-
readonly components: readonly [{
|
|
123
|
-
readonly internalType: "contract IStrategy";
|
|
124
|
-
readonly name: "strategy";
|
|
125
|
-
readonly type: "address";
|
|
126
|
-
}, {
|
|
127
|
-
readonly internalType: "uint96";
|
|
128
|
-
readonly name: "multiplier";
|
|
129
|
-
readonly type: "uint96";
|
|
130
|
-
}];
|
|
131
|
-
readonly internalType: "struct StrategyParams[]";
|
|
132
|
-
readonly name: "strategies";
|
|
133
|
-
readonly type: "tuple[]";
|
|
134
|
-
}];
|
|
135
|
-
readonly indexed: false;
|
|
136
|
-
readonly internalType: "struct Quorum";
|
|
137
|
-
readonly name: "_old";
|
|
138
|
-
readonly type: "tuple";
|
|
139
|
-
}, {
|
|
140
|
-
readonly components: readonly [{
|
|
141
|
-
readonly components: readonly [{
|
|
142
|
-
readonly internalType: "contract IStrategy";
|
|
143
|
-
readonly name: "strategy";
|
|
144
|
-
readonly type: "address";
|
|
145
|
-
}, {
|
|
146
|
-
readonly internalType: "uint96";
|
|
147
|
-
readonly name: "multiplier";
|
|
148
|
-
readonly type: "uint96";
|
|
149
|
-
}];
|
|
150
|
-
readonly internalType: "struct StrategyParams[]";
|
|
151
|
-
readonly name: "strategies";
|
|
152
|
-
readonly type: "tuple[]";
|
|
153
|
-
}];
|
|
154
|
-
readonly indexed: false;
|
|
155
|
-
readonly internalType: "struct Quorum";
|
|
156
|
-
readonly name: "_new";
|
|
157
|
-
readonly type: "tuple";
|
|
158
|
-
}];
|
|
159
|
-
readonly name: "QuorumUpdated";
|
|
160
|
-
readonly type: "event";
|
|
161
|
-
}, {
|
|
162
|
-
readonly anonymous: false;
|
|
163
|
-
readonly inputs: readonly [{
|
|
164
|
-
readonly indexed: false;
|
|
165
|
-
readonly internalType: "uint256";
|
|
166
|
-
readonly name: "_thresholdWeight";
|
|
167
|
-
readonly type: "uint256";
|
|
168
|
-
}];
|
|
169
|
-
readonly name: "ThresholdWeightUpdated";
|
|
170
|
-
readonly type: "event";
|
|
171
|
-
}, {
|
|
172
|
-
readonly anonymous: false;
|
|
173
|
-
readonly inputs: readonly [{
|
|
174
|
-
readonly indexed: false;
|
|
175
|
-
readonly internalType: "uint256";
|
|
176
|
-
readonly name: "oldTotalWeight";
|
|
177
|
-
readonly type: "uint256";
|
|
178
|
-
}, {
|
|
179
|
-
readonly indexed: false;
|
|
180
|
-
readonly internalType: "uint256";
|
|
181
|
-
readonly name: "newTotalWeight";
|
|
182
|
-
readonly type: "uint256";
|
|
183
|
-
}];
|
|
184
|
-
readonly name: "TotalWeightUpdated";
|
|
185
|
-
readonly type: "event";
|
|
186
|
-
}, {
|
|
187
|
-
readonly anonymous: false;
|
|
188
|
-
readonly inputs: readonly [{
|
|
189
|
-
readonly indexed: false;
|
|
190
|
-
readonly internalType: "uint256";
|
|
191
|
-
readonly name: "oldMinimumWeight";
|
|
192
|
-
readonly type: "uint256";
|
|
193
|
-
}, {
|
|
194
|
-
readonly indexed: false;
|
|
195
|
-
readonly internalType: "uint256";
|
|
196
|
-
readonly name: "newMinimumWeight";
|
|
197
|
-
readonly type: "uint256";
|
|
198
|
-
}];
|
|
199
|
-
readonly name: "UpdateMinimumWeight";
|
|
200
|
-
readonly type: "event";
|
|
201
|
-
}];
|
|
202
|
-
static createInterface(): IECDSAStakeRegistryEventsAndErrorsInterface;
|
|
203
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IECDSAStakeRegistryEventsAndErrors;
|
|
204
|
-
}
|
|
205
|
-
//# sourceMappingURL=IECDSAStakeRegistryEventsAndErrors__factory.d.ts.map
|
package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IECDSAStakeRegistryEventsAndErrors__factory.d.ts","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AACjD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EACV,kCAAkC,EAClC,2CAA2C,EAC5C,MAAM,4EAA4E,CAAC;AA+PpF,qBAAa,2CAA2C;IACtD,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,2CAA2C;IAKrE,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,kCAAkC;CAOtC"}
|
package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.js
DELETED
|
@@ -1,266 +0,0 @@
|
|
|
1
|
-
/* Autogenerated file. Do not edit manually. */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import { Contract, utils } from "ethers";
|
|
5
|
-
const _abi = [
|
|
6
|
-
{
|
|
7
|
-
inputs: [],
|
|
8
|
-
name: "InsufficientSignedStake",
|
|
9
|
-
type: "error",
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
inputs: [],
|
|
13
|
-
name: "InsufficientWeight",
|
|
14
|
-
type: "error",
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
inputs: [],
|
|
18
|
-
name: "InvalidLength",
|
|
19
|
-
type: "error",
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
inputs: [],
|
|
23
|
-
name: "InvalidQuorum",
|
|
24
|
-
type: "error",
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
inputs: [],
|
|
28
|
-
name: "InvalidSignature",
|
|
29
|
-
type: "error",
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
inputs: [],
|
|
33
|
-
name: "InvalidSignedWeight",
|
|
34
|
-
type: "error",
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
inputs: [],
|
|
38
|
-
name: "InvalidThreshold",
|
|
39
|
-
type: "error",
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
inputs: [],
|
|
43
|
-
name: "LengthMismatch",
|
|
44
|
-
type: "error",
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
inputs: [],
|
|
48
|
-
name: "MustUpdateAllOperators",
|
|
49
|
-
type: "error",
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
inputs: [],
|
|
53
|
-
name: "NotSorted",
|
|
54
|
-
type: "error",
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
inputs: [],
|
|
58
|
-
name: "OperatorAlreadyRegistered",
|
|
59
|
-
type: "error",
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
inputs: [],
|
|
63
|
-
name: "OperatorNotRegistered",
|
|
64
|
-
type: "error",
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
anonymous: false,
|
|
68
|
-
inputs: [
|
|
69
|
-
{
|
|
70
|
-
indexed: false,
|
|
71
|
-
internalType: "uint256",
|
|
72
|
-
name: "_old",
|
|
73
|
-
type: "uint256",
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
indexed: false,
|
|
77
|
-
internalType: "uint256",
|
|
78
|
-
name: "_new",
|
|
79
|
-
type: "uint256",
|
|
80
|
-
},
|
|
81
|
-
],
|
|
82
|
-
name: "MinimumWeightUpdated",
|
|
83
|
-
type: "event",
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
anonymous: false,
|
|
87
|
-
inputs: [
|
|
88
|
-
{
|
|
89
|
-
indexed: true,
|
|
90
|
-
internalType: "address",
|
|
91
|
-
name: "_operator",
|
|
92
|
-
type: "address",
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
indexed: true,
|
|
96
|
-
internalType: "address",
|
|
97
|
-
name: "_avs",
|
|
98
|
-
type: "address",
|
|
99
|
-
},
|
|
100
|
-
],
|
|
101
|
-
name: "OperatorDeregistered",
|
|
102
|
-
type: "event",
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
anonymous: false,
|
|
106
|
-
inputs: [
|
|
107
|
-
{
|
|
108
|
-
indexed: true,
|
|
109
|
-
internalType: "address",
|
|
110
|
-
name: "_operator",
|
|
111
|
-
type: "address",
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
indexed: true,
|
|
115
|
-
internalType: "address",
|
|
116
|
-
name: "_avs",
|
|
117
|
-
type: "address",
|
|
118
|
-
},
|
|
119
|
-
],
|
|
120
|
-
name: "OperatorRegistered",
|
|
121
|
-
type: "event",
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
anonymous: false,
|
|
125
|
-
inputs: [
|
|
126
|
-
{
|
|
127
|
-
indexed: true,
|
|
128
|
-
internalType: "address",
|
|
129
|
-
name: "_operator",
|
|
130
|
-
type: "address",
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
indexed: false,
|
|
134
|
-
internalType: "uint256",
|
|
135
|
-
name: "oldWeight",
|
|
136
|
-
type: "uint256",
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
indexed: false,
|
|
140
|
-
internalType: "uint256",
|
|
141
|
-
name: "newWeight",
|
|
142
|
-
type: "uint256",
|
|
143
|
-
},
|
|
144
|
-
],
|
|
145
|
-
name: "OperatorWeightUpdated",
|
|
146
|
-
type: "event",
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
anonymous: false,
|
|
150
|
-
inputs: [
|
|
151
|
-
{
|
|
152
|
-
components: [
|
|
153
|
-
{
|
|
154
|
-
components: [
|
|
155
|
-
{
|
|
156
|
-
internalType: "contract IStrategy",
|
|
157
|
-
name: "strategy",
|
|
158
|
-
type: "address",
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
internalType: "uint96",
|
|
162
|
-
name: "multiplier",
|
|
163
|
-
type: "uint96",
|
|
164
|
-
},
|
|
165
|
-
],
|
|
166
|
-
internalType: "struct StrategyParams[]",
|
|
167
|
-
name: "strategies",
|
|
168
|
-
type: "tuple[]",
|
|
169
|
-
},
|
|
170
|
-
],
|
|
171
|
-
indexed: false,
|
|
172
|
-
internalType: "struct Quorum",
|
|
173
|
-
name: "_old",
|
|
174
|
-
type: "tuple",
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
components: [
|
|
178
|
-
{
|
|
179
|
-
components: [
|
|
180
|
-
{
|
|
181
|
-
internalType: "contract IStrategy",
|
|
182
|
-
name: "strategy",
|
|
183
|
-
type: "address",
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
internalType: "uint96",
|
|
187
|
-
name: "multiplier",
|
|
188
|
-
type: "uint96",
|
|
189
|
-
},
|
|
190
|
-
],
|
|
191
|
-
internalType: "struct StrategyParams[]",
|
|
192
|
-
name: "strategies",
|
|
193
|
-
type: "tuple[]",
|
|
194
|
-
},
|
|
195
|
-
],
|
|
196
|
-
indexed: false,
|
|
197
|
-
internalType: "struct Quorum",
|
|
198
|
-
name: "_new",
|
|
199
|
-
type: "tuple",
|
|
200
|
-
},
|
|
201
|
-
],
|
|
202
|
-
name: "QuorumUpdated",
|
|
203
|
-
type: "event",
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
anonymous: false,
|
|
207
|
-
inputs: [
|
|
208
|
-
{
|
|
209
|
-
indexed: false,
|
|
210
|
-
internalType: "uint256",
|
|
211
|
-
name: "_thresholdWeight",
|
|
212
|
-
type: "uint256",
|
|
213
|
-
},
|
|
214
|
-
],
|
|
215
|
-
name: "ThresholdWeightUpdated",
|
|
216
|
-
type: "event",
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
anonymous: false,
|
|
220
|
-
inputs: [
|
|
221
|
-
{
|
|
222
|
-
indexed: false,
|
|
223
|
-
internalType: "uint256",
|
|
224
|
-
name: "oldTotalWeight",
|
|
225
|
-
type: "uint256",
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
indexed: false,
|
|
229
|
-
internalType: "uint256",
|
|
230
|
-
name: "newTotalWeight",
|
|
231
|
-
type: "uint256",
|
|
232
|
-
},
|
|
233
|
-
],
|
|
234
|
-
name: "TotalWeightUpdated",
|
|
235
|
-
type: "event",
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
anonymous: false,
|
|
239
|
-
inputs: [
|
|
240
|
-
{
|
|
241
|
-
indexed: false,
|
|
242
|
-
internalType: "uint256",
|
|
243
|
-
name: "oldMinimumWeight",
|
|
244
|
-
type: "uint256",
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
indexed: false,
|
|
248
|
-
internalType: "uint256",
|
|
249
|
-
name: "newMinimumWeight",
|
|
250
|
-
type: "uint256",
|
|
251
|
-
},
|
|
252
|
-
],
|
|
253
|
-
name: "UpdateMinimumWeight",
|
|
254
|
-
type: "event",
|
|
255
|
-
},
|
|
256
|
-
];
|
|
257
|
-
export class IECDSAStakeRegistryEventsAndErrors__factory {
|
|
258
|
-
static abi = _abi;
|
|
259
|
-
static createInterface() {
|
|
260
|
-
return new utils.Interface(_abi);
|
|
261
|
-
}
|
|
262
|
-
static connect(address, signerOrProvider) {
|
|
263
|
-
return new Contract(address, _abi, signerOrProvider);
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
//# sourceMappingURL=IECDSAStakeRegistryEventsAndErrors__factory.js.map
|
package/dist/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IECDSAStakeRegistryEventsAndErrors__factory.js","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IECDSAStakeRegistryEventsAndErrors__factory.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type { IPaymentCoordinator, IPaymentCoordinatorInterface } from "../../../../contracts/interfaces/avs/IPaymentCoordinator.js";
|
|
4
|
-
export declare class IPaymentCoordinator__factory {
|
|
5
|
-
static readonly abi: readonly [{
|
|
6
|
-
readonly inputs: readonly [{
|
|
7
|
-
readonly components: readonly [{
|
|
8
|
-
readonly components: readonly [{
|
|
9
|
-
readonly internalType: "contract IStrategy";
|
|
10
|
-
readonly name: "strategy";
|
|
11
|
-
readonly type: "address";
|
|
12
|
-
}, {
|
|
13
|
-
readonly internalType: "uint96";
|
|
14
|
-
readonly name: "multiplier";
|
|
15
|
-
readonly type: "uint96";
|
|
16
|
-
}];
|
|
17
|
-
readonly internalType: "struct IPaymentCoordinator.StrategyAndMultiplier[]";
|
|
18
|
-
readonly name: "strategiesAndMultipliers";
|
|
19
|
-
readonly type: "tuple[]";
|
|
20
|
-
}, {
|
|
21
|
-
readonly internalType: "contract IERC20";
|
|
22
|
-
readonly name: "token";
|
|
23
|
-
readonly type: "address";
|
|
24
|
-
}, {
|
|
25
|
-
readonly internalType: "uint256";
|
|
26
|
-
readonly name: "amount";
|
|
27
|
-
readonly type: "uint256";
|
|
28
|
-
}, {
|
|
29
|
-
readonly internalType: "uint64";
|
|
30
|
-
readonly name: "startTimestamp";
|
|
31
|
-
readonly type: "uint64";
|
|
32
|
-
}, {
|
|
33
|
-
readonly internalType: "uint64";
|
|
34
|
-
readonly name: "duration";
|
|
35
|
-
readonly type: "uint64";
|
|
36
|
-
}];
|
|
37
|
-
readonly internalType: "struct IPaymentCoordinator.RangePayment[]";
|
|
38
|
-
readonly name: "rangePayments";
|
|
39
|
-
readonly type: "tuple[]";
|
|
40
|
-
}];
|
|
41
|
-
readonly name: "payForRange";
|
|
42
|
-
readonly outputs: readonly [];
|
|
43
|
-
readonly stateMutability: "nonpayable";
|
|
44
|
-
readonly type: "function";
|
|
45
|
-
}];
|
|
46
|
-
static createInterface(): IPaymentCoordinatorInterface;
|
|
47
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IPaymentCoordinator;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=IPaymentCoordinator__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IPaymentCoordinator__factory.d.ts","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IPaymentCoordinator__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AACjD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EACV,mBAAmB,EACnB,4BAA4B,EAC7B,MAAM,6DAA6D,CAAC;AAyDrE,qBAAa,4BAA4B;IACvC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,4BAA4B;IAGtD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,mBAAmB;CAGvB"}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
/* Autogenerated file. Do not edit manually. */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import { Contract, utils } from "ethers";
|
|
5
|
-
const _abi = [
|
|
6
|
-
{
|
|
7
|
-
inputs: [
|
|
8
|
-
{
|
|
9
|
-
components: [
|
|
10
|
-
{
|
|
11
|
-
components: [
|
|
12
|
-
{
|
|
13
|
-
internalType: "contract IStrategy",
|
|
14
|
-
name: "strategy",
|
|
15
|
-
type: "address",
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
internalType: "uint96",
|
|
19
|
-
name: "multiplier",
|
|
20
|
-
type: "uint96",
|
|
21
|
-
},
|
|
22
|
-
],
|
|
23
|
-
internalType: "struct IPaymentCoordinator.StrategyAndMultiplier[]",
|
|
24
|
-
name: "strategiesAndMultipliers",
|
|
25
|
-
type: "tuple[]",
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
internalType: "contract IERC20",
|
|
29
|
-
name: "token",
|
|
30
|
-
type: "address",
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
internalType: "uint256",
|
|
34
|
-
name: "amount",
|
|
35
|
-
type: "uint256",
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
internalType: "uint64",
|
|
39
|
-
name: "startTimestamp",
|
|
40
|
-
type: "uint64",
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
internalType: "uint64",
|
|
44
|
-
name: "duration",
|
|
45
|
-
type: "uint64",
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
internalType: "struct IPaymentCoordinator.RangePayment[]",
|
|
49
|
-
name: "rangePayments",
|
|
50
|
-
type: "tuple[]",
|
|
51
|
-
},
|
|
52
|
-
],
|
|
53
|
-
name: "payForRange",
|
|
54
|
-
outputs: [],
|
|
55
|
-
stateMutability: "nonpayable",
|
|
56
|
-
type: "function",
|
|
57
|
-
},
|
|
58
|
-
];
|
|
59
|
-
export class IPaymentCoordinator__factory {
|
|
60
|
-
static abi = _abi;
|
|
61
|
-
static createInterface() {
|
|
62
|
-
return new utils.Interface(_abi);
|
|
63
|
-
}
|
|
64
|
-
static connect(address, signerOrProvider) {
|
|
65
|
-
return new Contract(address, _abi, signerOrProvider);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
//# sourceMappingURL=IPaymentCoordinator__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IPaymentCoordinator__factory.js","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IPaymentCoordinator__factory.ts"],"names":[],"mappings":"AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;AAEpB,OAAO,EAAE,QAAQ,EAAU,KAAK,EAAE,MAAM,QAAQ,CAAC;AAOjD,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE;YACN;gBACE,UAAU,EAAE;oBACV;wBACE,UAAU,EAAE;4BACV;gCACE,YAAY,EAAE,oBAAoB;gCAClC,IAAI,EAAE,UAAU;gCAChB,IAAI,EAAE,SAAS;6BAChB;4BACD;gCACE,YAAY,EAAE,QAAQ;gCACtB,IAAI,EAAE,YAAY;gCAClB,IAAI,EAAE,QAAQ;6BACf;yBACF;wBACD,YAAY,EAAE,oDAAoD;wBAClE,IAAI,EAAE,0BAA0B;wBAChC,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,iBAAiB;wBAC/B,IAAI,EAAE,OAAO;wBACb,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,QAAQ;wBACtB,IAAI,EAAE,gBAAgB;wBACtB,IAAI,EAAE,QAAQ;qBACf;oBACD;wBACE,YAAY,EAAE,QAAQ;wBACtB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,QAAQ;qBACf;iBACF;gBACD,YAAY,EAAE,2CAA2C;gBACzD,IAAI,EAAE,eAAe;gBACrB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,aAAa;QACnB,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;CACO,CAAC;AAEX,MAAM,OAAO,4BAA4B;IACvC,MAAM,CAAU,GAAG,GAAG,IAAI,CAAC;IAC3B,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,KAAK,CAAC,SAAS,CAAC,IAAI,CAAiC,CAAC;IACnE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,QAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAwB,CAAC;IAC9E,CAAC"}
|