@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
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type { IServiceManagerUI, IServiceManagerUIInterface } from "../../../../contracts/interfaces/avs/IServiceManagerUI.js";
|
|
4
|
-
export declare class IServiceManagerUI__factory {
|
|
5
|
-
static readonly abi: readonly [{
|
|
6
|
-
readonly inputs: readonly [];
|
|
7
|
-
readonly name: "avsDirectory";
|
|
8
|
-
readonly outputs: readonly [{
|
|
9
|
-
readonly internalType: "address";
|
|
10
|
-
readonly name: "";
|
|
11
|
-
readonly type: "address";
|
|
12
|
-
}];
|
|
13
|
-
readonly stateMutability: "view";
|
|
14
|
-
readonly type: "function";
|
|
15
|
-
}, {
|
|
16
|
-
readonly inputs: readonly [{
|
|
17
|
-
readonly internalType: "address";
|
|
18
|
-
readonly name: "operator";
|
|
19
|
-
readonly type: "address";
|
|
20
|
-
}];
|
|
21
|
-
readonly name: "deregisterOperatorFromAVS";
|
|
22
|
-
readonly outputs: readonly [];
|
|
23
|
-
readonly stateMutability: "nonpayable";
|
|
24
|
-
readonly type: "function";
|
|
25
|
-
}, {
|
|
26
|
-
readonly inputs: readonly [{
|
|
27
|
-
readonly internalType: "address";
|
|
28
|
-
readonly name: "operator";
|
|
29
|
-
readonly type: "address";
|
|
30
|
-
}];
|
|
31
|
-
readonly name: "getOperatorRestakedStrategies";
|
|
32
|
-
readonly outputs: readonly [{
|
|
33
|
-
readonly internalType: "address[]";
|
|
34
|
-
readonly name: "";
|
|
35
|
-
readonly type: "address[]";
|
|
36
|
-
}];
|
|
37
|
-
readonly stateMutability: "view";
|
|
38
|
-
readonly type: "function";
|
|
39
|
-
}, {
|
|
40
|
-
readonly inputs: readonly [];
|
|
41
|
-
readonly name: "getRestakeableStrategies";
|
|
42
|
-
readonly outputs: readonly [{
|
|
43
|
-
readonly internalType: "address[]";
|
|
44
|
-
readonly name: "";
|
|
45
|
-
readonly type: "address[]";
|
|
46
|
-
}];
|
|
47
|
-
readonly stateMutability: "view";
|
|
48
|
-
readonly type: "function";
|
|
49
|
-
}, {
|
|
50
|
-
readonly inputs: readonly [{
|
|
51
|
-
readonly internalType: "address";
|
|
52
|
-
readonly name: "operator";
|
|
53
|
-
readonly type: "address";
|
|
54
|
-
}, {
|
|
55
|
-
readonly components: readonly [{
|
|
56
|
-
readonly internalType: "bytes";
|
|
57
|
-
readonly name: "signature";
|
|
58
|
-
readonly type: "bytes";
|
|
59
|
-
}, {
|
|
60
|
-
readonly internalType: "bytes32";
|
|
61
|
-
readonly name: "salt";
|
|
62
|
-
readonly type: "bytes32";
|
|
63
|
-
}, {
|
|
64
|
-
readonly internalType: "uint256";
|
|
65
|
-
readonly name: "expiry";
|
|
66
|
-
readonly type: "uint256";
|
|
67
|
-
}];
|
|
68
|
-
readonly internalType: "struct ISignatureUtils.SignatureWithSaltAndExpiry";
|
|
69
|
-
readonly name: "operatorSignature";
|
|
70
|
-
readonly type: "tuple";
|
|
71
|
-
}];
|
|
72
|
-
readonly name: "registerOperatorToAVS";
|
|
73
|
-
readonly outputs: readonly [];
|
|
74
|
-
readonly stateMutability: "nonpayable";
|
|
75
|
-
readonly type: "function";
|
|
76
|
-
}, {
|
|
77
|
-
readonly inputs: readonly [{
|
|
78
|
-
readonly internalType: "string";
|
|
79
|
-
readonly name: "_metadataURI";
|
|
80
|
-
readonly type: "string";
|
|
81
|
-
}];
|
|
82
|
-
readonly name: "updateAVSMetadataURI";
|
|
83
|
-
readonly outputs: readonly [];
|
|
84
|
-
readonly stateMutability: "nonpayable";
|
|
85
|
-
readonly type: "function";
|
|
86
|
-
}];
|
|
87
|
-
static createInterface(): IServiceManagerUIInterface;
|
|
88
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IServiceManagerUI;
|
|
89
|
-
}
|
|
90
|
-
//# sourceMappingURL=IServiceManagerUI__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IServiceManagerUI__factory.d.ts","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IServiceManagerUI__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,iBAAiB,EACjB,0BAA0B,EAC3B,MAAM,2DAA2D,CAAC;AA+GnE,qBAAa,0BAA0B;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,0BAA0B;IAGpD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,iBAAiB;CAGrB"}
|
|
@@ -1,122 +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: "avsDirectory",
|
|
9
|
-
outputs: [
|
|
10
|
-
{
|
|
11
|
-
internalType: "address",
|
|
12
|
-
name: "",
|
|
13
|
-
type: "address",
|
|
14
|
-
},
|
|
15
|
-
],
|
|
16
|
-
stateMutability: "view",
|
|
17
|
-
type: "function",
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
inputs: [
|
|
21
|
-
{
|
|
22
|
-
internalType: "address",
|
|
23
|
-
name: "operator",
|
|
24
|
-
type: "address",
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
name: "deregisterOperatorFromAVS",
|
|
28
|
-
outputs: [],
|
|
29
|
-
stateMutability: "nonpayable",
|
|
30
|
-
type: "function",
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
inputs: [
|
|
34
|
-
{
|
|
35
|
-
internalType: "address",
|
|
36
|
-
name: "operator",
|
|
37
|
-
type: "address",
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
|
-
name: "getOperatorRestakedStrategies",
|
|
41
|
-
outputs: [
|
|
42
|
-
{
|
|
43
|
-
internalType: "address[]",
|
|
44
|
-
name: "",
|
|
45
|
-
type: "address[]",
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
stateMutability: "view",
|
|
49
|
-
type: "function",
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
inputs: [],
|
|
53
|
-
name: "getRestakeableStrategies",
|
|
54
|
-
outputs: [
|
|
55
|
-
{
|
|
56
|
-
internalType: "address[]",
|
|
57
|
-
name: "",
|
|
58
|
-
type: "address[]",
|
|
59
|
-
},
|
|
60
|
-
],
|
|
61
|
-
stateMutability: "view",
|
|
62
|
-
type: "function",
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
inputs: [
|
|
66
|
-
{
|
|
67
|
-
internalType: "address",
|
|
68
|
-
name: "operator",
|
|
69
|
-
type: "address",
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
components: [
|
|
73
|
-
{
|
|
74
|
-
internalType: "bytes",
|
|
75
|
-
name: "signature",
|
|
76
|
-
type: "bytes",
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
internalType: "bytes32",
|
|
80
|
-
name: "salt",
|
|
81
|
-
type: "bytes32",
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
internalType: "uint256",
|
|
85
|
-
name: "expiry",
|
|
86
|
-
type: "uint256",
|
|
87
|
-
},
|
|
88
|
-
],
|
|
89
|
-
internalType: "struct ISignatureUtils.SignatureWithSaltAndExpiry",
|
|
90
|
-
name: "operatorSignature",
|
|
91
|
-
type: "tuple",
|
|
92
|
-
},
|
|
93
|
-
],
|
|
94
|
-
name: "registerOperatorToAVS",
|
|
95
|
-
outputs: [],
|
|
96
|
-
stateMutability: "nonpayable",
|
|
97
|
-
type: "function",
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
inputs: [
|
|
101
|
-
{
|
|
102
|
-
internalType: "string",
|
|
103
|
-
name: "_metadataURI",
|
|
104
|
-
type: "string",
|
|
105
|
-
},
|
|
106
|
-
],
|
|
107
|
-
name: "updateAVSMetadataURI",
|
|
108
|
-
outputs: [],
|
|
109
|
-
stateMutability: "nonpayable",
|
|
110
|
-
type: "function",
|
|
111
|
-
},
|
|
112
|
-
];
|
|
113
|
-
export class IServiceManagerUI__factory {
|
|
114
|
-
static abi = _abi;
|
|
115
|
-
static createInterface() {
|
|
116
|
-
return new utils.Interface(_abi);
|
|
117
|
-
}
|
|
118
|
-
static connect(address, signerOrProvider) {
|
|
119
|
-
return new Contract(address, _abi, signerOrProvider);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
//# sourceMappingURL=IServiceManagerUI__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IServiceManagerUI__factory.js","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IServiceManagerUI__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,EAAE;QACV,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,2BAA2B;QACjC,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,+BAA+B;QACrC,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,WAAW;aAClB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,0BAA0B;QAChC,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,WAAW;aAClB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,WAAW;wBACjB,IAAI,EAAE,OAAO;qBACd;oBACD;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,MAAM;wBACZ,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;iBACF;gBACD,YAAY,EAAE,mDAAmD;gBACjE,IAAI,EAAE,mBAAmB;gBACzB,IAAI,EAAE,OAAO;aACd;SACF;QACD,IAAI,EAAE,uBAAuB;QAC7B,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,cAAc;gBACpB,IAAI,EAAE,QAAQ;aACf;SACF;QACD,IAAI,EAAE,sBAAsB;QAC5B,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;CACO,CAAC;AAEX,MAAM,OAAO,0BAA0B;IACrC,MAAM,CAAU,GAAG,GAAG,IAAI,CAAC;IAC3B,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,KAAK,CAAC,SAAS,CAAC,IAAI,CAA+B,CAAC;IACjE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,QAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAsB,CAAC;IAC5E,CAAC"}
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type { IServiceManager, IServiceManagerInterface } from "../../../../contracts/interfaces/avs/IServiceManager.js";
|
|
4
|
-
export declare class IServiceManager__factory {
|
|
5
|
-
static readonly abi: readonly [{
|
|
6
|
-
readonly inputs: readonly [];
|
|
7
|
-
readonly name: "avsDirectory";
|
|
8
|
-
readonly outputs: readonly [{
|
|
9
|
-
readonly internalType: "address";
|
|
10
|
-
readonly name: "";
|
|
11
|
-
readonly type: "address";
|
|
12
|
-
}];
|
|
13
|
-
readonly stateMutability: "view";
|
|
14
|
-
readonly type: "function";
|
|
15
|
-
}, {
|
|
16
|
-
readonly inputs: readonly [{
|
|
17
|
-
readonly internalType: "address";
|
|
18
|
-
readonly name: "operator";
|
|
19
|
-
readonly type: "address";
|
|
20
|
-
}];
|
|
21
|
-
readonly name: "deregisterOperatorFromAVS";
|
|
22
|
-
readonly outputs: readonly [];
|
|
23
|
-
readonly stateMutability: "nonpayable";
|
|
24
|
-
readonly type: "function";
|
|
25
|
-
}, {
|
|
26
|
-
readonly inputs: readonly [{
|
|
27
|
-
readonly internalType: "address";
|
|
28
|
-
readonly name: "operator";
|
|
29
|
-
readonly type: "address";
|
|
30
|
-
}];
|
|
31
|
-
readonly name: "getOperatorRestakedStrategies";
|
|
32
|
-
readonly outputs: readonly [{
|
|
33
|
-
readonly internalType: "address[]";
|
|
34
|
-
readonly name: "";
|
|
35
|
-
readonly type: "address[]";
|
|
36
|
-
}];
|
|
37
|
-
readonly stateMutability: "view";
|
|
38
|
-
readonly type: "function";
|
|
39
|
-
}, {
|
|
40
|
-
readonly inputs: readonly [];
|
|
41
|
-
readonly name: "getRestakeableStrategies";
|
|
42
|
-
readonly outputs: readonly [{
|
|
43
|
-
readonly internalType: "address[]";
|
|
44
|
-
readonly name: "";
|
|
45
|
-
readonly type: "address[]";
|
|
46
|
-
}];
|
|
47
|
-
readonly stateMutability: "view";
|
|
48
|
-
readonly type: "function";
|
|
49
|
-
}, {
|
|
50
|
-
readonly inputs: readonly [{
|
|
51
|
-
readonly components: readonly [{
|
|
52
|
-
readonly components: readonly [{
|
|
53
|
-
readonly internalType: "contract IStrategy";
|
|
54
|
-
readonly name: "strategy";
|
|
55
|
-
readonly type: "address";
|
|
56
|
-
}, {
|
|
57
|
-
readonly internalType: "uint96";
|
|
58
|
-
readonly name: "multiplier";
|
|
59
|
-
readonly type: "uint96";
|
|
60
|
-
}];
|
|
61
|
-
readonly internalType: "struct IPaymentCoordinator.StrategyAndMultiplier[]";
|
|
62
|
-
readonly name: "strategiesAndMultipliers";
|
|
63
|
-
readonly type: "tuple[]";
|
|
64
|
-
}, {
|
|
65
|
-
readonly internalType: "contract IERC20";
|
|
66
|
-
readonly name: "token";
|
|
67
|
-
readonly type: "address";
|
|
68
|
-
}, {
|
|
69
|
-
readonly internalType: "uint256";
|
|
70
|
-
readonly name: "amount";
|
|
71
|
-
readonly type: "uint256";
|
|
72
|
-
}, {
|
|
73
|
-
readonly internalType: "uint64";
|
|
74
|
-
readonly name: "startTimestamp";
|
|
75
|
-
readonly type: "uint64";
|
|
76
|
-
}, {
|
|
77
|
-
readonly internalType: "uint64";
|
|
78
|
-
readonly name: "duration";
|
|
79
|
-
readonly type: "uint64";
|
|
80
|
-
}];
|
|
81
|
-
readonly internalType: "struct IPaymentCoordinator.RangePayment[]";
|
|
82
|
-
readonly name: "rangePayments";
|
|
83
|
-
readonly type: "tuple[]";
|
|
84
|
-
}];
|
|
85
|
-
readonly name: "payForRange";
|
|
86
|
-
readonly outputs: readonly [];
|
|
87
|
-
readonly stateMutability: "nonpayable";
|
|
88
|
-
readonly type: "function";
|
|
89
|
-
}, {
|
|
90
|
-
readonly inputs: readonly [{
|
|
91
|
-
readonly internalType: "address";
|
|
92
|
-
readonly name: "operator";
|
|
93
|
-
readonly type: "address";
|
|
94
|
-
}, {
|
|
95
|
-
readonly components: readonly [{
|
|
96
|
-
readonly internalType: "bytes";
|
|
97
|
-
readonly name: "signature";
|
|
98
|
-
readonly type: "bytes";
|
|
99
|
-
}, {
|
|
100
|
-
readonly internalType: "bytes32";
|
|
101
|
-
readonly name: "salt";
|
|
102
|
-
readonly type: "bytes32";
|
|
103
|
-
}, {
|
|
104
|
-
readonly internalType: "uint256";
|
|
105
|
-
readonly name: "expiry";
|
|
106
|
-
readonly type: "uint256";
|
|
107
|
-
}];
|
|
108
|
-
readonly internalType: "struct ISignatureUtils.SignatureWithSaltAndExpiry";
|
|
109
|
-
readonly name: "operatorSignature";
|
|
110
|
-
readonly type: "tuple";
|
|
111
|
-
}];
|
|
112
|
-
readonly name: "registerOperatorToAVS";
|
|
113
|
-
readonly outputs: readonly [];
|
|
114
|
-
readonly stateMutability: "nonpayable";
|
|
115
|
-
readonly type: "function";
|
|
116
|
-
}, {
|
|
117
|
-
readonly inputs: readonly [{
|
|
118
|
-
readonly internalType: "string";
|
|
119
|
-
readonly name: "_metadataURI";
|
|
120
|
-
readonly type: "string";
|
|
121
|
-
}];
|
|
122
|
-
readonly name: "updateAVSMetadataURI";
|
|
123
|
-
readonly outputs: readonly [];
|
|
124
|
-
readonly stateMutability: "nonpayable";
|
|
125
|
-
readonly type: "function";
|
|
126
|
-
}];
|
|
127
|
-
static createInterface(): IServiceManagerInterface;
|
|
128
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IServiceManager;
|
|
129
|
-
}
|
|
130
|
-
//# sourceMappingURL=IServiceManager__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IServiceManager__factory.d.ts","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IServiceManager__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,eAAe,EACf,wBAAwB,EACzB,MAAM,yDAAyD,CAAC;AAmKjE,qBAAa,wBAAwB;IACnC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,wBAAwB;IAGlD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,eAAe;CAGnB"}
|
|
@@ -1,174 +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: "avsDirectory",
|
|
9
|
-
outputs: [
|
|
10
|
-
{
|
|
11
|
-
internalType: "address",
|
|
12
|
-
name: "",
|
|
13
|
-
type: "address",
|
|
14
|
-
},
|
|
15
|
-
],
|
|
16
|
-
stateMutability: "view",
|
|
17
|
-
type: "function",
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
inputs: [
|
|
21
|
-
{
|
|
22
|
-
internalType: "address",
|
|
23
|
-
name: "operator",
|
|
24
|
-
type: "address",
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
name: "deregisterOperatorFromAVS",
|
|
28
|
-
outputs: [],
|
|
29
|
-
stateMutability: "nonpayable",
|
|
30
|
-
type: "function",
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
inputs: [
|
|
34
|
-
{
|
|
35
|
-
internalType: "address",
|
|
36
|
-
name: "operator",
|
|
37
|
-
type: "address",
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
|
-
name: "getOperatorRestakedStrategies",
|
|
41
|
-
outputs: [
|
|
42
|
-
{
|
|
43
|
-
internalType: "address[]",
|
|
44
|
-
name: "",
|
|
45
|
-
type: "address[]",
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
stateMutability: "view",
|
|
49
|
-
type: "function",
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
inputs: [],
|
|
53
|
-
name: "getRestakeableStrategies",
|
|
54
|
-
outputs: [
|
|
55
|
-
{
|
|
56
|
-
internalType: "address[]",
|
|
57
|
-
name: "",
|
|
58
|
-
type: "address[]",
|
|
59
|
-
},
|
|
60
|
-
],
|
|
61
|
-
stateMutability: "view",
|
|
62
|
-
type: "function",
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
inputs: [
|
|
66
|
-
{
|
|
67
|
-
components: [
|
|
68
|
-
{
|
|
69
|
-
components: [
|
|
70
|
-
{
|
|
71
|
-
internalType: "contract IStrategy",
|
|
72
|
-
name: "strategy",
|
|
73
|
-
type: "address",
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
internalType: "uint96",
|
|
77
|
-
name: "multiplier",
|
|
78
|
-
type: "uint96",
|
|
79
|
-
},
|
|
80
|
-
],
|
|
81
|
-
internalType: "struct IPaymentCoordinator.StrategyAndMultiplier[]",
|
|
82
|
-
name: "strategiesAndMultipliers",
|
|
83
|
-
type: "tuple[]",
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
internalType: "contract IERC20",
|
|
87
|
-
name: "token",
|
|
88
|
-
type: "address",
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
internalType: "uint256",
|
|
92
|
-
name: "amount",
|
|
93
|
-
type: "uint256",
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
internalType: "uint64",
|
|
97
|
-
name: "startTimestamp",
|
|
98
|
-
type: "uint64",
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
internalType: "uint64",
|
|
102
|
-
name: "duration",
|
|
103
|
-
type: "uint64",
|
|
104
|
-
},
|
|
105
|
-
],
|
|
106
|
-
internalType: "struct IPaymentCoordinator.RangePayment[]",
|
|
107
|
-
name: "rangePayments",
|
|
108
|
-
type: "tuple[]",
|
|
109
|
-
},
|
|
110
|
-
],
|
|
111
|
-
name: "payForRange",
|
|
112
|
-
outputs: [],
|
|
113
|
-
stateMutability: "nonpayable",
|
|
114
|
-
type: "function",
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
inputs: [
|
|
118
|
-
{
|
|
119
|
-
internalType: "address",
|
|
120
|
-
name: "operator",
|
|
121
|
-
type: "address",
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
components: [
|
|
125
|
-
{
|
|
126
|
-
internalType: "bytes",
|
|
127
|
-
name: "signature",
|
|
128
|
-
type: "bytes",
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
internalType: "bytes32",
|
|
132
|
-
name: "salt",
|
|
133
|
-
type: "bytes32",
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
internalType: "uint256",
|
|
137
|
-
name: "expiry",
|
|
138
|
-
type: "uint256",
|
|
139
|
-
},
|
|
140
|
-
],
|
|
141
|
-
internalType: "struct ISignatureUtils.SignatureWithSaltAndExpiry",
|
|
142
|
-
name: "operatorSignature",
|
|
143
|
-
type: "tuple",
|
|
144
|
-
},
|
|
145
|
-
],
|
|
146
|
-
name: "registerOperatorToAVS",
|
|
147
|
-
outputs: [],
|
|
148
|
-
stateMutability: "nonpayable",
|
|
149
|
-
type: "function",
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
inputs: [
|
|
153
|
-
{
|
|
154
|
-
internalType: "string",
|
|
155
|
-
name: "_metadataURI",
|
|
156
|
-
type: "string",
|
|
157
|
-
},
|
|
158
|
-
],
|
|
159
|
-
name: "updateAVSMetadataURI",
|
|
160
|
-
outputs: [],
|
|
161
|
-
stateMutability: "nonpayable",
|
|
162
|
-
type: "function",
|
|
163
|
-
},
|
|
164
|
-
];
|
|
165
|
-
export class IServiceManager__factory {
|
|
166
|
-
static abi = _abi;
|
|
167
|
-
static createInterface() {
|
|
168
|
-
return new utils.Interface(_abi);
|
|
169
|
-
}
|
|
170
|
-
static connect(address, signerOrProvider) {
|
|
171
|
-
return new Contract(address, _abi, signerOrProvider);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
//# sourceMappingURL=IServiceManager__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IServiceManager__factory.js","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/IServiceManager__factory.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type { ISlasher, ISlasherInterface } from "../../../../contracts/interfaces/avs/ISlasher.js";
|
|
4
|
-
export declare class ISlasher__factory {
|
|
5
|
-
static readonly abi: readonly [{
|
|
6
|
-
readonly inputs: readonly [{
|
|
7
|
-
readonly internalType: "address";
|
|
8
|
-
readonly name: "toBeFrozen";
|
|
9
|
-
readonly type: "address";
|
|
10
|
-
}];
|
|
11
|
-
readonly name: "freezeOperator";
|
|
12
|
-
readonly outputs: readonly [];
|
|
13
|
-
readonly stateMutability: "nonpayable";
|
|
14
|
-
readonly type: "function";
|
|
15
|
-
}];
|
|
16
|
-
static createInterface(): ISlasherInterface;
|
|
17
|
-
static connect(address: string, signerOrProvider: Signer | Provider): ISlasher;
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=ISlasher__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ISlasher__factory.d.ts","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/ISlasher__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,QAAQ,EACR,iBAAiB,EAClB,MAAM,kDAAkD,CAAC;AAkB1D,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,iBAAiB;IAG3C,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,QAAQ;CAGZ"}
|
|
@@ -1,29 +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
|
-
internalType: "address",
|
|
10
|
-
name: "toBeFrozen",
|
|
11
|
-
type: "address",
|
|
12
|
-
},
|
|
13
|
-
],
|
|
14
|
-
name: "freezeOperator",
|
|
15
|
-
outputs: [],
|
|
16
|
-
stateMutability: "nonpayable",
|
|
17
|
-
type: "function",
|
|
18
|
-
},
|
|
19
|
-
];
|
|
20
|
-
export class ISlasher__factory {
|
|
21
|
-
static abi = _abi;
|
|
22
|
-
static createInterface() {
|
|
23
|
-
return new utils.Interface(_abi);
|
|
24
|
-
}
|
|
25
|
-
static connect(address, signerOrProvider) {
|
|
26
|
-
return new Contract(address, _abi, signerOrProvider);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=ISlasher__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ISlasher__factory.js","sourceRoot":"","sources":["../../../../../types/factories/contracts/interfaces/avs/ISlasher__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,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,gBAAgB;QACtB,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;CACO,CAAC;AAEX,MAAM,OAAO,iBAAiB;IAC5B,MAAM,CAAU,GAAG,GAAG,IAAI,CAAC;IAC3B,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,KAAK,CAAC,SAAS,CAAC,IAAI,CAAsB,CAAC;IACxD,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,QAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAa,CAAC;IACnE,CAAC"}
|