@web3dotorg/evm-slc-core-sdk 0.3.8 → 0.3.10
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/lib.commonjs/common.d.ts +50 -0
- package/lib.commonjs/common.js +2 -0
- package/lib.commonjs/constants.d.ts +23 -0
- package/lib.commonjs/constants.js +32 -0
- package/lib.commonjs/contracts/governance/ExecutorsRegistry.d.ts +597 -0
- package/lib.commonjs/contracts/governance/ExecutorsRegistry.js +2 -0
- package/lib.commonjs/contracts/governance/Governance.d.ts +987 -0
- package/lib.commonjs/contracts/governance/Governance.js +2 -0
- package/lib.commonjs/contracts/governance/NeutralsRegistry.d.ts +718 -0
- package/lib.commonjs/contracts/governance/NeutralsRegistry.js +2 -0
- package/lib.commonjs/contracts/governance/ParameterRegistry.d.ts +427 -0
- package/lib.commonjs/contracts/governance/ParameterRegistry.js +2 -0
- package/{contracts/governance/index.ts → lib.commonjs/contracts/governance/index.d.ts} +0 -3
- package/lib.commonjs/contracts/governance/index.js +2 -0
- package/{contracts/index.ts → lib.commonjs/contracts/index.d.ts} +0 -3
- package/lib.commonjs/contracts/index.js +2 -0
- package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
- package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.js +2 -0
- package/lib.commonjs/contracts/interfaces/IGovernance.d.ts +99 -0
- package/lib.commonjs/contracts/interfaces/IGovernance.js +2 -0
- package/lib.commonjs/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
- package/lib.commonjs/contracts/interfaces/INeutralsRegistry.js +2 -0
- package/lib.commonjs/contracts/interfaces/IQParameters.d.ts +38 -0
- package/lib.commonjs/contracts/interfaces/IQParameters.js +2 -0
- package/lib.commonjs/contracts/interfaces/ISLCCore.d.ts +137 -0
- package/lib.commonjs/contracts/interfaces/ISLCCore.js +2 -0
- package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
- package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.js +2 -0
- package/lib.commonjs/contracts/interfaces/IWrappedToken.d.ts +134 -0
- package/lib.commonjs/contracts/interfaces/IWrappedToken.js +2 -0
- package/{contracts/interfaces/index.ts → lib.commonjs/contracts/interfaces/index.d.ts} +0 -3
- package/lib.commonjs/contracts/interfaces/index.js +2 -0
- package/lib.commonjs/contracts/libs/Errors.d.ts +21 -0
- package/lib.commonjs/contracts/libs/Errors.js +2 -0
- package/lib.commonjs/contracts/libs/NeutralsSelection.d.ts +21 -0
- package/lib.commonjs/contracts/libs/NeutralsSelection.js +2 -0
- package/{contracts/libs/index.ts → lib.commonjs/contracts/libs/index.d.ts} +0 -3
- package/lib.commonjs/contracts/libs/index.js +2 -0
- package/lib.commonjs/contracts/mocks/MockGovernance.d.ts +201 -0
- package/lib.commonjs/contracts/mocks/MockGovernance.js +2 -0
- package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
- package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.js +2 -0
- package/lib.commonjs/contracts/mocks/SimpleContract.d.ts +38 -0
- package/lib.commonjs/contracts/mocks/SimpleContract.js +2 -0
- package/lib.commonjs/contracts/mocks/WrappedToken.d.ts +174 -0
- package/lib.commonjs/contracts/mocks/WrappedToken.js +2 -0
- package/{contracts/mocks/index.ts → lib.commonjs/contracts/mocks/index.d.ts} +0 -3
- package/lib.commonjs/contracts/mocks/index.js +2 -0
- package/lib.commonjs/contracts/slc-core/SLCCore.d.ts +198 -0
- package/lib.commonjs/contracts/slc-core/SLCCore.js +2 -0
- package/lib.commonjs/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
- package/lib.commonjs/contracts/slc-core/SLCCoreFactory.js +2 -0
- package/{contracts/slc-core/index.ts → lib.commonjs/contracts/slc-core/index.d.ts} +0 -3
- package/lib.commonjs/contracts/slc-core/index.js +2 -0
- package/lib.commonjs/contracts/token/Token.d.ts +201 -0
- package/lib.commonjs/contracts/token/Token.js +2 -0
- package/lib.commonjs/contracts/token/index.d.ts +1 -0
- package/lib.commonjs/contracts/token/index.js +2 -0
- package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
- package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.js +1211 -0
- package/lib.commonjs/factories/contracts/governance/Governance__factory.d.ts +1740 -0
- package/lib.commonjs/factories/contracts/governance/Governance__factory.js +2286 -0
- package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
- package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.js +1486 -0
- package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
- package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.js +805 -0
- package/lib.commonjs/factories/contracts/governance/index.d.ts +4 -0
- package/lib.commonjs/factories/contracts/governance/index.js +14 -0
- package/lib.commonjs/factories/contracts/index.d.ts +6 -0
- package/lib.commonjs/factories/contracts/index.js +35 -0
- package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
- package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.js +422 -0
- package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
- package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.js +150 -0
- package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
- package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.js +521 -0
- package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
- package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.js +95 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.js +191 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
- package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.js +224 -0
- package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
- package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.js +215 -0
- package/lib.commonjs/factories/contracts/interfaces/index.d.ts +7 -0
- package/lib.commonjs/factories/contracts/interfaces/index.js +20 -0
- package/lib.commonjs/factories/contracts/libs/Errors__factory.d.ts +128 -0
- package/lib.commonjs/factories/contracts/libs/Errors__factory.js +182 -0
- package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
- package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.js +74 -0
- package/lib.commonjs/factories/contracts/libs/index.d.ts +2 -0
- package/lib.commonjs/factories/contracts/libs/index.js +10 -0
- package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
- package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.js +324 -0
- package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
- package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.js +695 -0
- package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
- package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.js +81 -0
- package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
- package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.js +404 -0
- package/lib.commonjs/factories/contracts/mocks/index.d.ts +4 -0
- package/lib.commonjs/factories/contracts/mocks/index.js +14 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.js +539 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
- package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.js +347 -0
- package/lib.commonjs/factories/contracts/slc-core/index.d.ts +2 -0
- package/lib.commonjs/factories/contracts/slc-core/index.js +10 -0
- package/lib.commonjs/factories/contracts/token/Token__factory.d.ts +355 -0
- package/lib.commonjs/factories/contracts/token/Token__factory.js +476 -0
- package/lib.commonjs/factories/contracts/token/index.d.ts +1 -0
- package/lib.commonjs/factories/contracts/token/index.js +8 -0
- package/lib.commonjs/index.d.ts +5 -0
- package/lib.commonjs/index.js +23 -0
- package/lib.esm/common.d.ts +50 -0
- package/lib.esm/common.js +1 -0
- package/lib.esm/constants.d.ts +23 -0
- package/lib.esm/constants.js +29 -0
- package/lib.esm/contracts/governance/ExecutorsRegistry.d.ts +597 -0
- package/lib.esm/contracts/governance/ExecutorsRegistry.js +1 -0
- package/lib.esm/contracts/governance/Governance.d.ts +987 -0
- package/lib.esm/contracts/governance/Governance.js +1 -0
- package/lib.esm/contracts/governance/NeutralsRegistry.d.ts +718 -0
- package/lib.esm/contracts/governance/NeutralsRegistry.js +1 -0
- package/lib.esm/contracts/governance/ParameterRegistry.d.ts +427 -0
- package/lib.esm/contracts/governance/ParameterRegistry.js +1 -0
- package/lib.esm/contracts/governance/index.d.ts +4 -0
- package/lib.esm/contracts/governance/index.js +1 -0
- package/lib.esm/contracts/index.d.ts +12 -0
- package/lib.esm/contracts/index.js +1 -0
- package/lib.esm/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
- package/lib.esm/contracts/interfaces/IExecutorsRegistry.js +1 -0
- package/lib.esm/contracts/interfaces/IGovernance.d.ts +99 -0
- package/lib.esm/contracts/interfaces/IGovernance.js +1 -0
- package/lib.esm/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
- package/lib.esm/contracts/interfaces/INeutralsRegistry.js +1 -0
- package/lib.esm/contracts/interfaces/IQParameters.d.ts +38 -0
- package/lib.esm/contracts/interfaces/IQParameters.js +1 -0
- package/lib.esm/contracts/interfaces/ISLCCore.d.ts +137 -0
- package/lib.esm/contracts/interfaces/ISLCCore.js +1 -0
- package/lib.esm/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
- package/lib.esm/contracts/interfaces/ISLCCoreFactory.js +1 -0
- package/lib.esm/contracts/interfaces/IWrappedToken.d.ts +134 -0
- package/lib.esm/contracts/interfaces/IWrappedToken.js +1 -0
- package/lib.esm/contracts/interfaces/index.d.ts +7 -0
- package/lib.esm/contracts/interfaces/index.js +1 -0
- package/lib.esm/contracts/libs/Errors.d.ts +21 -0
- package/lib.esm/contracts/libs/Errors.js +1 -0
- package/lib.esm/contracts/libs/NeutralsSelection.d.ts +21 -0
- package/lib.esm/contracts/libs/NeutralsSelection.js +1 -0
- package/lib.esm/contracts/libs/index.d.ts +2 -0
- package/lib.esm/contracts/libs/index.js +1 -0
- package/lib.esm/contracts/mocks/MockGovernance.d.ts +201 -0
- package/lib.esm/contracts/mocks/MockGovernance.js +1 -0
- package/lib.esm/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
- package/lib.esm/contracts/mocks/MockNeutralsRegistry.js +1 -0
- package/lib.esm/contracts/mocks/SimpleContract.d.ts +38 -0
- package/lib.esm/contracts/mocks/SimpleContract.js +1 -0
- package/lib.esm/contracts/mocks/WrappedToken.d.ts +174 -0
- package/lib.esm/contracts/mocks/WrappedToken.js +1 -0
- package/lib.esm/contracts/mocks/index.d.ts +4 -0
- package/lib.esm/contracts/mocks/index.js +1 -0
- package/lib.esm/contracts/slc-core/SLCCore.d.ts +198 -0
- package/lib.esm/contracts/slc-core/SLCCore.js +1 -0
- package/lib.esm/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
- package/lib.esm/contracts/slc-core/SLCCoreFactory.js +1 -0
- package/lib.esm/contracts/slc-core/index.d.ts +2 -0
- package/lib.esm/contracts/slc-core/index.js +1 -0
- package/lib.esm/contracts/token/Token.d.ts +201 -0
- package/lib.esm/contracts/token/Token.js +1 -0
- package/lib.esm/contracts/token/index.d.ts +1 -0
- package/lib.esm/contracts/token/index.js +1 -0
- package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
- package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.js +1207 -0
- package/lib.esm/factories/contracts/governance/Governance__factory.d.ts +1740 -0
- package/lib.esm/factories/contracts/governance/Governance__factory.js +2282 -0
- package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
- package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.js +1482 -0
- package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
- package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.js +801 -0
- package/lib.esm/factories/contracts/governance/index.d.ts +4 -0
- package/lib.esm/factories/contracts/index.d.ts +6 -0
- package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
- package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.js +418 -0
- package/lib.esm/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
- package/lib.esm/factories/contracts/interfaces/IGovernance__factory.js +146 -0
- package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
- package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.js +517 -0
- package/lib.esm/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
- package/lib.esm/factories/contracts/interfaces/IQParameters__factory.js +91 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.js +187 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
- package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.js +220 -0
- package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
- package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.js +211 -0
- package/lib.esm/factories/contracts/interfaces/index.d.ts +7 -0
- package/lib.esm/factories/contracts/libs/Errors__factory.d.ts +128 -0
- package/lib.esm/factories/contracts/libs/Errors__factory.js +178 -0
- package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
- package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.js +70 -0
- package/lib.esm/factories/contracts/libs/index.d.ts +2 -0
- package/lib.esm/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
- package/lib.esm/factories/contracts/mocks/MockGovernance__factory.js +320 -0
- package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
- package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.js +691 -0
- package/lib.esm/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
- package/lib.esm/factories/contracts/mocks/SimpleContract__factory.js +77 -0
- package/lib.esm/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
- package/lib.esm/factories/contracts/mocks/WrappedToken__factory.js +400 -0
- package/lib.esm/factories/contracts/mocks/index.d.ts +4 -0
- package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
- package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.js +535 -0
- package/lib.esm/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
- package/lib.esm/factories/contracts/slc-core/SLCCore__factory.js +343 -0
- package/lib.esm/factories/contracts/slc-core/index.d.ts +2 -0
- package/lib.esm/factories/contracts/token/Token__factory.d.ts +355 -0
- package/lib.esm/factories/contracts/token/Token__factory.js +472 -0
- package/lib.esm/factories/contracts/token/index.d.ts +1 -0
- package/lib.esm/index.d.ts +5 -0
- package/lib.esm/index.js +7 -0
- package/package.json +10 -3
- package/common.ts +0 -131
- package/constants.ts +0 -34
- package/contracts/governance/ExecutorsRegistry.ts +0 -1249
- package/contracts/governance/Governance.ts +0 -1740
- package/contracts/governance/NeutralsRegistry.ts +0 -1415
- package/contracts/governance/ParameterRegistry.ts +0 -832
- package/contracts/interfaces/IExecutorsRegistry.ts +0 -601
- package/contracts/interfaces/IGovernance.ts +0 -215
- package/contracts/interfaces/INeutralsRegistry.ts +0 -624
- package/contracts/interfaces/IQParameters.ts +0 -109
- package/contracts/interfaces/ISLCCore.ts +0 -289
- package/contracts/interfaces/ISLCCoreFactory.ts +0 -217
- package/contracts/interfaces/IWrappedToken.ts +0 -272
- package/contracts/libs/Errors.ts +0 -71
- package/contracts/libs/NeutralsSelection.ts +0 -71
- package/contracts/mocks/MockGovernance.ts +0 -389
- package/contracts/mocks/MockNeutralsRegistry.ts +0 -791
- package/contracts/mocks/SimpleContract.ts +0 -110
- package/contracts/mocks/WrappedToken.ts +0 -334
- package/contracts/slc-core/SLCCore.ts +0 -397
- package/contracts/slc-core/SLCCoreFactory.ts +0 -559
- package/contracts/token/Token.ts +0 -399
- package/contracts/token/index.ts +0 -4
- package/factories/contracts/governance/ExecutorsRegistry__factory.ts +0 -1240
- package/factories/contracts/governance/Governance__factory.ts +0 -2307
- package/factories/contracts/governance/NeutralsRegistry__factory.ts +0 -1515
- package/factories/contracts/governance/ParameterRegistry__factory.ts +0 -834
- package/factories/contracts/interfaces/IExecutorsRegistry__factory.ts +0 -428
- package/factories/contracts/interfaces/IGovernance__factory.ts +0 -153
- package/factories/contracts/interfaces/INeutralsRegistry__factory.ts +0 -527
- package/factories/contracts/interfaces/IQParameters__factory.ts +0 -101
- package/factories/contracts/interfaces/ISLCCoreFactory__factory.ts +0 -197
- package/factories/contracts/interfaces/ISLCCore__factory.ts +0 -227
- package/factories/contracts/interfaces/IWrappedToken__factory.ts +0 -221
- package/factories/contracts/libs/Errors__factory.ts +0 -205
- package/factories/contracts/libs/NeutralsSelection__factory.ts +0 -103
- package/factories/contracts/mocks/MockGovernance__factory.ts +0 -353
- package/factories/contracts/mocks/MockNeutralsRegistry__factory.ts +0 -730
- package/factories/contracts/mocks/SimpleContract__factory.ts +0 -110
- package/factories/contracts/mocks/WrappedToken__factory.ts +0 -433
- package/factories/contracts/slc-core/SLCCoreFactory__factory.ts +0 -568
- package/factories/contracts/slc-core/SLCCore__factory.ts +0 -373
- package/factories/contracts/token/Token__factory.ts +0 -505
- package/index.ts +0 -44
- /package/{factories/contracts/governance/index.ts → lib.esm/factories/contracts/governance/index.js} +0 -0
- /package/{factories/contracts/index.ts → lib.esm/factories/contracts/index.js} +0 -0
- /package/{factories/contracts/interfaces/index.ts → lib.esm/factories/contracts/interfaces/index.js} +0 -0
- /package/{factories/contracts/libs/index.ts → lib.esm/factories/contracts/libs/index.js} +0 -0
- /package/{factories/contracts/mocks/index.ts → lib.esm/factories/contracts/mocks/index.js} +0 -0
- /package/{factories/contracts/slc-core/index.ts → lib.esm/factories/contracts/slc-core/index.js} +0 -0
- /package/{factories/contracts/token/index.ts → lib.esm/factories/contracts/token/index.js} +0 -0
|
@@ -0,0 +1,718 @@
|
|
|
1
|
+
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common";
|
|
3
|
+
export declare namespace NeutralsRegistry {
|
|
4
|
+
type WithdrawalAnnouncementStruct = {
|
|
5
|
+
amount: BigNumberish;
|
|
6
|
+
announcedAt: BigNumberish;
|
|
7
|
+
availableAt: BigNumberish;
|
|
8
|
+
};
|
|
9
|
+
type WithdrawalAnnouncementStructOutput = [
|
|
10
|
+
amount: bigint,
|
|
11
|
+
announcedAt: bigint,
|
|
12
|
+
availableAt: bigint
|
|
13
|
+
] & {
|
|
14
|
+
amount: bigint;
|
|
15
|
+
announcedAt: bigint;
|
|
16
|
+
availableAt: bigint;
|
|
17
|
+
};
|
|
18
|
+
type DelegationStruct = {
|
|
19
|
+
delegatedAmount: BigNumberish;
|
|
20
|
+
withdrawal: NeutralsRegistry.WithdrawalAnnouncementStruct;
|
|
21
|
+
owedValue: BigNumberish;
|
|
22
|
+
cumulativeSum: BigNumberish;
|
|
23
|
+
};
|
|
24
|
+
type DelegationStructOutput = [
|
|
25
|
+
delegatedAmount: bigint,
|
|
26
|
+
withdrawal: NeutralsRegistry.WithdrawalAnnouncementStructOutput,
|
|
27
|
+
owedValue: bigint,
|
|
28
|
+
cumulativeSum: bigint
|
|
29
|
+
] & {
|
|
30
|
+
delegatedAmount: bigint;
|
|
31
|
+
withdrawal: NeutralsRegistry.WithdrawalAnnouncementStructOutput;
|
|
32
|
+
owedValue: bigint;
|
|
33
|
+
cumulativeSum: bigint;
|
|
34
|
+
};
|
|
35
|
+
type NeutralsInfoStruct = {
|
|
36
|
+
selfStake: BigNumberish;
|
|
37
|
+
weight: BigNumberish;
|
|
38
|
+
delegatedStake: BigNumberish;
|
|
39
|
+
rewards: BigNumberish;
|
|
40
|
+
delegationShare: BigNumberish;
|
|
41
|
+
externalLink: string;
|
|
42
|
+
isActive: boolean;
|
|
43
|
+
isStandby: boolean;
|
|
44
|
+
};
|
|
45
|
+
type NeutralsInfoStructOutput = [
|
|
46
|
+
selfStake: bigint,
|
|
47
|
+
weight: bigint,
|
|
48
|
+
delegatedStake: bigint,
|
|
49
|
+
rewards: bigint,
|
|
50
|
+
delegationShare: bigint,
|
|
51
|
+
externalLink: string,
|
|
52
|
+
isActive: boolean,
|
|
53
|
+
isStandby: boolean
|
|
54
|
+
] & {
|
|
55
|
+
selfStake: bigint;
|
|
56
|
+
weight: bigint;
|
|
57
|
+
delegatedStake: bigint;
|
|
58
|
+
rewards: bigint;
|
|
59
|
+
delegationShare: bigint;
|
|
60
|
+
externalLink: string;
|
|
61
|
+
isActive: boolean;
|
|
62
|
+
isStandby: boolean;
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
export interface NeutralsRegistryInterface extends Interface {
|
|
66
|
+
getFunction(nameOrSignature: "UPGRADE_INTERFACE_VERSION" | "__NeutralsRegistry_init" | "addNeutralsStake" | "announceDelegationWithdrawal" | "announceNeutralsWithdrawal" | "boundActiveNeutralsList" | "cancelDelegationWithdrawal" | "cancelNeutralsWithdrawal" | "claimDelegatorRewards" | "claimNeutralRewards" | "completeDelegationWithdrawal" | "completeNeutralsWithdrawal" | "delegate" | "distributeRewards" | "getActiveNeutrals" | "getCurrentGovernance" | "getCurrentMaxActiveNeutralsParameter" | "getDelegation" | "getDelegatorRewards" | "getDelegatorsPerNeutral" | "getExternalLink" | "getNeutralDelegationShare" | "getNeutralInfo" | "getNeutralRewards" | "getNeutralsCount" | "getNeutralsPerDelegator" | "getNeutralsSlice" | "getParameterRegistry" | "getStandbyNeutrals" | "getToken" | "getWithdrawalAnnouncement" | "implementation" | "isNeutral" | "isWithdrawalReady" | "proxiableUUID" | "setDelegationShare" | "setExternalLink" | "slashNeutral" | "supportsInterface" | "tryBecomeActive" | "updateDelegationWithdrawal" | "updateNeutralsWithdrawal" | "upgradeToAndCall"): FunctionFragment;
|
|
67
|
+
getEvent(nameOrSignatureOrTopic: "DelegationWithdrawn" | "Initialized" | "NeutralActivated" | "NeutralMovedToStandby" | "NeutralPaused" | "NeutralSlashed" | "NeutralStaked" | "NeutralUnpaused" | "NeutralUnstaked" | "RewardsClaimed" | "RewardsDistributed" | "Upgraded" | "WithdrawalAnnounced" | "WithdrawalCancelled"): EventFragment;
|
|
68
|
+
encodeFunctionData(functionFragment: "UPGRADE_INTERFACE_VERSION", values?: undefined): string;
|
|
69
|
+
encodeFunctionData(functionFragment: "__NeutralsRegistry_init", values: [AddressLike]): string;
|
|
70
|
+
encodeFunctionData(functionFragment: "addNeutralsStake", values: [BigNumberish]): string;
|
|
71
|
+
encodeFunctionData(functionFragment: "announceDelegationWithdrawal", values: [AddressLike, BigNumberish]): string;
|
|
72
|
+
encodeFunctionData(functionFragment: "announceNeutralsWithdrawal", values: [BigNumberish]): string;
|
|
73
|
+
encodeFunctionData(functionFragment: "boundActiveNeutralsList", values?: undefined): string;
|
|
74
|
+
encodeFunctionData(functionFragment: "cancelDelegationWithdrawal", values: [AddressLike]): string;
|
|
75
|
+
encodeFunctionData(functionFragment: "cancelNeutralsWithdrawal", values?: undefined): string;
|
|
76
|
+
encodeFunctionData(functionFragment: "claimDelegatorRewards", values: [AddressLike]): string;
|
|
77
|
+
encodeFunctionData(functionFragment: "claimNeutralRewards", values?: undefined): string;
|
|
78
|
+
encodeFunctionData(functionFragment: "completeDelegationWithdrawal", values: [AddressLike]): string;
|
|
79
|
+
encodeFunctionData(functionFragment: "completeNeutralsWithdrawal", values?: undefined): string;
|
|
80
|
+
encodeFunctionData(functionFragment: "delegate", values: [AddressLike, BigNumberish]): string;
|
|
81
|
+
encodeFunctionData(functionFragment: "distributeRewards", values: [AddressLike[], BigNumberish]): string;
|
|
82
|
+
encodeFunctionData(functionFragment: "getActiveNeutrals", values: [BigNumberish, BigNumberish]): string;
|
|
83
|
+
encodeFunctionData(functionFragment: "getCurrentGovernance", values?: undefined): string;
|
|
84
|
+
encodeFunctionData(functionFragment: "getCurrentMaxActiveNeutralsParameter", values?: undefined): string;
|
|
85
|
+
encodeFunctionData(functionFragment: "getDelegation", values: [AddressLike, AddressLike]): string;
|
|
86
|
+
encodeFunctionData(functionFragment: "getDelegatorRewards", values: [AddressLike, AddressLike]): string;
|
|
87
|
+
encodeFunctionData(functionFragment: "getDelegatorsPerNeutral", values: [AddressLike, BigNumberish, BigNumberish]): string;
|
|
88
|
+
encodeFunctionData(functionFragment: "getExternalLink", values: [AddressLike]): string;
|
|
89
|
+
encodeFunctionData(functionFragment: "getNeutralDelegationShare", values: [AddressLike]): string;
|
|
90
|
+
encodeFunctionData(functionFragment: "getNeutralInfo", values: [AddressLike]): string;
|
|
91
|
+
encodeFunctionData(functionFragment: "getNeutralRewards", values: [AddressLike]): string;
|
|
92
|
+
encodeFunctionData(functionFragment: "getNeutralsCount", values?: undefined): string;
|
|
93
|
+
encodeFunctionData(functionFragment: "getNeutralsPerDelegator", values: [AddressLike, BigNumberish, BigNumberish]): string;
|
|
94
|
+
encodeFunctionData(functionFragment: "getNeutralsSlice", values: [BigNumberish]): string;
|
|
95
|
+
encodeFunctionData(functionFragment: "getParameterRegistry", values?: undefined): string;
|
|
96
|
+
encodeFunctionData(functionFragment: "getStandbyNeutrals", values: [BigNumberish, BigNumberish]): string;
|
|
97
|
+
encodeFunctionData(functionFragment: "getToken", values?: undefined): string;
|
|
98
|
+
encodeFunctionData(functionFragment: "getWithdrawalAnnouncement", values: [AddressLike]): string;
|
|
99
|
+
encodeFunctionData(functionFragment: "implementation", values?: undefined): string;
|
|
100
|
+
encodeFunctionData(functionFragment: "isNeutral", values: [AddressLike]): string;
|
|
101
|
+
encodeFunctionData(functionFragment: "isWithdrawalReady", values: [AddressLike]): string;
|
|
102
|
+
encodeFunctionData(functionFragment: "proxiableUUID", values?: undefined): string;
|
|
103
|
+
encodeFunctionData(functionFragment: "setDelegationShare", values: [BigNumberish]): string;
|
|
104
|
+
encodeFunctionData(functionFragment: "setExternalLink", values: [string]): string;
|
|
105
|
+
encodeFunctionData(functionFragment: "slashNeutral", values: [AddressLike, BigNumberish]): string;
|
|
106
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
107
|
+
encodeFunctionData(functionFragment: "tryBecomeActive", values?: undefined): string;
|
|
108
|
+
encodeFunctionData(functionFragment: "updateDelegationWithdrawal", values: [AddressLike, BigNumberish]): string;
|
|
109
|
+
encodeFunctionData(functionFragment: "updateNeutralsWithdrawal", values: [BigNumberish]): string;
|
|
110
|
+
encodeFunctionData(functionFragment: "upgradeToAndCall", values: [AddressLike, BytesLike]): string;
|
|
111
|
+
decodeFunctionResult(functionFragment: "UPGRADE_INTERFACE_VERSION", data: BytesLike): Result;
|
|
112
|
+
decodeFunctionResult(functionFragment: "__NeutralsRegistry_init", data: BytesLike): Result;
|
|
113
|
+
decodeFunctionResult(functionFragment: "addNeutralsStake", data: BytesLike): Result;
|
|
114
|
+
decodeFunctionResult(functionFragment: "announceDelegationWithdrawal", data: BytesLike): Result;
|
|
115
|
+
decodeFunctionResult(functionFragment: "announceNeutralsWithdrawal", data: BytesLike): Result;
|
|
116
|
+
decodeFunctionResult(functionFragment: "boundActiveNeutralsList", data: BytesLike): Result;
|
|
117
|
+
decodeFunctionResult(functionFragment: "cancelDelegationWithdrawal", data: BytesLike): Result;
|
|
118
|
+
decodeFunctionResult(functionFragment: "cancelNeutralsWithdrawal", data: BytesLike): Result;
|
|
119
|
+
decodeFunctionResult(functionFragment: "claimDelegatorRewards", data: BytesLike): Result;
|
|
120
|
+
decodeFunctionResult(functionFragment: "claimNeutralRewards", data: BytesLike): Result;
|
|
121
|
+
decodeFunctionResult(functionFragment: "completeDelegationWithdrawal", data: BytesLike): Result;
|
|
122
|
+
decodeFunctionResult(functionFragment: "completeNeutralsWithdrawal", data: BytesLike): Result;
|
|
123
|
+
decodeFunctionResult(functionFragment: "delegate", data: BytesLike): Result;
|
|
124
|
+
decodeFunctionResult(functionFragment: "distributeRewards", data: BytesLike): Result;
|
|
125
|
+
decodeFunctionResult(functionFragment: "getActiveNeutrals", data: BytesLike): Result;
|
|
126
|
+
decodeFunctionResult(functionFragment: "getCurrentGovernance", data: BytesLike): Result;
|
|
127
|
+
decodeFunctionResult(functionFragment: "getCurrentMaxActiveNeutralsParameter", data: BytesLike): Result;
|
|
128
|
+
decodeFunctionResult(functionFragment: "getDelegation", data: BytesLike): Result;
|
|
129
|
+
decodeFunctionResult(functionFragment: "getDelegatorRewards", data: BytesLike): Result;
|
|
130
|
+
decodeFunctionResult(functionFragment: "getDelegatorsPerNeutral", data: BytesLike): Result;
|
|
131
|
+
decodeFunctionResult(functionFragment: "getExternalLink", data: BytesLike): Result;
|
|
132
|
+
decodeFunctionResult(functionFragment: "getNeutralDelegationShare", data: BytesLike): Result;
|
|
133
|
+
decodeFunctionResult(functionFragment: "getNeutralInfo", data: BytesLike): Result;
|
|
134
|
+
decodeFunctionResult(functionFragment: "getNeutralRewards", data: BytesLike): Result;
|
|
135
|
+
decodeFunctionResult(functionFragment: "getNeutralsCount", data: BytesLike): Result;
|
|
136
|
+
decodeFunctionResult(functionFragment: "getNeutralsPerDelegator", data: BytesLike): Result;
|
|
137
|
+
decodeFunctionResult(functionFragment: "getNeutralsSlice", data: BytesLike): Result;
|
|
138
|
+
decodeFunctionResult(functionFragment: "getParameterRegistry", data: BytesLike): Result;
|
|
139
|
+
decodeFunctionResult(functionFragment: "getStandbyNeutrals", data: BytesLike): Result;
|
|
140
|
+
decodeFunctionResult(functionFragment: "getToken", data: BytesLike): Result;
|
|
141
|
+
decodeFunctionResult(functionFragment: "getWithdrawalAnnouncement", data: BytesLike): Result;
|
|
142
|
+
decodeFunctionResult(functionFragment: "implementation", data: BytesLike): Result;
|
|
143
|
+
decodeFunctionResult(functionFragment: "isNeutral", data: BytesLike): Result;
|
|
144
|
+
decodeFunctionResult(functionFragment: "isWithdrawalReady", data: BytesLike): Result;
|
|
145
|
+
decodeFunctionResult(functionFragment: "proxiableUUID", data: BytesLike): Result;
|
|
146
|
+
decodeFunctionResult(functionFragment: "setDelegationShare", data: BytesLike): Result;
|
|
147
|
+
decodeFunctionResult(functionFragment: "setExternalLink", data: BytesLike): Result;
|
|
148
|
+
decodeFunctionResult(functionFragment: "slashNeutral", data: BytesLike): Result;
|
|
149
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
150
|
+
decodeFunctionResult(functionFragment: "tryBecomeActive", data: BytesLike): Result;
|
|
151
|
+
decodeFunctionResult(functionFragment: "updateDelegationWithdrawal", data: BytesLike): Result;
|
|
152
|
+
decodeFunctionResult(functionFragment: "updateNeutralsWithdrawal", data: BytesLike): Result;
|
|
153
|
+
decodeFunctionResult(functionFragment: "upgradeToAndCall", data: BytesLike): Result;
|
|
154
|
+
}
|
|
155
|
+
export declare namespace DelegationWithdrawnEvent {
|
|
156
|
+
type InputTuple = [
|
|
157
|
+
delegator: AddressLike,
|
|
158
|
+
neutral: AddressLike,
|
|
159
|
+
amount: BigNumberish
|
|
160
|
+
];
|
|
161
|
+
type OutputTuple = [
|
|
162
|
+
delegator: string,
|
|
163
|
+
neutral: string,
|
|
164
|
+
amount: bigint
|
|
165
|
+
];
|
|
166
|
+
interface OutputObject {
|
|
167
|
+
delegator: string;
|
|
168
|
+
neutral: string;
|
|
169
|
+
amount: bigint;
|
|
170
|
+
}
|
|
171
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
172
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
173
|
+
type Log = TypedEventLog<Event>;
|
|
174
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
175
|
+
}
|
|
176
|
+
export declare namespace InitializedEvent {
|
|
177
|
+
type InputTuple = [version: BigNumberish];
|
|
178
|
+
type OutputTuple = [version: bigint];
|
|
179
|
+
interface OutputObject {
|
|
180
|
+
version: bigint;
|
|
181
|
+
}
|
|
182
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
183
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
184
|
+
type Log = TypedEventLog<Event>;
|
|
185
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace NeutralActivatedEvent {
|
|
188
|
+
type InputTuple = [neutral: AddressLike, stake: BigNumberish];
|
|
189
|
+
type OutputTuple = [neutral: string, stake: bigint];
|
|
190
|
+
interface OutputObject {
|
|
191
|
+
neutral: string;
|
|
192
|
+
stake: bigint;
|
|
193
|
+
}
|
|
194
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
195
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
196
|
+
type Log = TypedEventLog<Event>;
|
|
197
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
198
|
+
}
|
|
199
|
+
export declare namespace NeutralMovedToStandbyEvent {
|
|
200
|
+
type InputTuple = [neutral: AddressLike];
|
|
201
|
+
type OutputTuple = [neutral: string];
|
|
202
|
+
interface OutputObject {
|
|
203
|
+
neutral: string;
|
|
204
|
+
}
|
|
205
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
206
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
207
|
+
type Log = TypedEventLog<Event>;
|
|
208
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
209
|
+
}
|
|
210
|
+
export declare namespace NeutralPausedEvent {
|
|
211
|
+
type InputTuple = [neutral: AddressLike];
|
|
212
|
+
type OutputTuple = [neutral: string];
|
|
213
|
+
interface OutputObject {
|
|
214
|
+
neutral: string;
|
|
215
|
+
}
|
|
216
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
217
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
218
|
+
type Log = TypedEventLog<Event>;
|
|
219
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
220
|
+
}
|
|
221
|
+
export declare namespace NeutralSlashedEvent {
|
|
222
|
+
type InputTuple = [
|
|
223
|
+
neutral: AddressLike,
|
|
224
|
+
amount: BigNumberish,
|
|
225
|
+
recipient: AddressLike
|
|
226
|
+
];
|
|
227
|
+
type OutputTuple = [
|
|
228
|
+
neutral: string,
|
|
229
|
+
amount: bigint,
|
|
230
|
+
recipient: string
|
|
231
|
+
];
|
|
232
|
+
interface OutputObject {
|
|
233
|
+
neutral: string;
|
|
234
|
+
amount: bigint;
|
|
235
|
+
recipient: string;
|
|
236
|
+
}
|
|
237
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
238
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
239
|
+
type Log = TypedEventLog<Event>;
|
|
240
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
241
|
+
}
|
|
242
|
+
export declare namespace NeutralStakedEvent {
|
|
243
|
+
type InputTuple = [
|
|
244
|
+
neutral: AddressLike,
|
|
245
|
+
amount: BigNumberish,
|
|
246
|
+
totalStake: BigNumberish
|
|
247
|
+
];
|
|
248
|
+
type OutputTuple = [
|
|
249
|
+
neutral: string,
|
|
250
|
+
amount: bigint,
|
|
251
|
+
totalStake: bigint
|
|
252
|
+
];
|
|
253
|
+
interface OutputObject {
|
|
254
|
+
neutral: string;
|
|
255
|
+
amount: bigint;
|
|
256
|
+
totalStake: bigint;
|
|
257
|
+
}
|
|
258
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
259
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
260
|
+
type Log = TypedEventLog<Event>;
|
|
261
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
262
|
+
}
|
|
263
|
+
export declare namespace NeutralUnpausedEvent {
|
|
264
|
+
type InputTuple = [neutral: AddressLike];
|
|
265
|
+
type OutputTuple = [neutral: string];
|
|
266
|
+
interface OutputObject {
|
|
267
|
+
neutral: string;
|
|
268
|
+
}
|
|
269
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
270
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
271
|
+
type Log = TypedEventLog<Event>;
|
|
272
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
273
|
+
}
|
|
274
|
+
export declare namespace NeutralUnstakedEvent {
|
|
275
|
+
type InputTuple = [
|
|
276
|
+
neutral: AddressLike,
|
|
277
|
+
amount: BigNumberish,
|
|
278
|
+
remainingStake: BigNumberish
|
|
279
|
+
];
|
|
280
|
+
type OutputTuple = [
|
|
281
|
+
neutral: string,
|
|
282
|
+
amount: bigint,
|
|
283
|
+
remainingStake: bigint
|
|
284
|
+
];
|
|
285
|
+
interface OutputObject {
|
|
286
|
+
neutral: string;
|
|
287
|
+
amount: bigint;
|
|
288
|
+
remainingStake: bigint;
|
|
289
|
+
}
|
|
290
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
291
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
292
|
+
type Log = TypedEventLog<Event>;
|
|
293
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace RewardsClaimedEvent {
|
|
296
|
+
type InputTuple = [neutral: AddressLike, amount: BigNumberish];
|
|
297
|
+
type OutputTuple = [neutral: string, amount: bigint];
|
|
298
|
+
interface OutputObject {
|
|
299
|
+
neutral: string;
|
|
300
|
+
amount: bigint;
|
|
301
|
+
}
|
|
302
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
303
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
304
|
+
type Log = TypedEventLog<Event>;
|
|
305
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
306
|
+
}
|
|
307
|
+
export declare namespace RewardsDistributedEvent {
|
|
308
|
+
type InputTuple = [
|
|
309
|
+
selectedNeutrals: AddressLike[],
|
|
310
|
+
totalAmount: BigNumberish
|
|
311
|
+
];
|
|
312
|
+
type OutputTuple = [selectedNeutrals: string[], totalAmount: bigint];
|
|
313
|
+
interface OutputObject {
|
|
314
|
+
selectedNeutrals: string[];
|
|
315
|
+
totalAmount: bigint;
|
|
316
|
+
}
|
|
317
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
318
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
319
|
+
type Log = TypedEventLog<Event>;
|
|
320
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
321
|
+
}
|
|
322
|
+
export declare namespace UpgradedEvent {
|
|
323
|
+
type InputTuple = [implementation: AddressLike];
|
|
324
|
+
type OutputTuple = [implementation: string];
|
|
325
|
+
interface OutputObject {
|
|
326
|
+
implementation: string;
|
|
327
|
+
}
|
|
328
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
329
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
330
|
+
type Log = TypedEventLog<Event>;
|
|
331
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
332
|
+
}
|
|
333
|
+
export declare namespace WithdrawalAnnouncedEvent {
|
|
334
|
+
type InputTuple = [
|
|
335
|
+
neutral: AddressLike,
|
|
336
|
+
amount: BigNumberish,
|
|
337
|
+
availableAt: BigNumberish
|
|
338
|
+
];
|
|
339
|
+
type OutputTuple = [
|
|
340
|
+
neutral: string,
|
|
341
|
+
amount: bigint,
|
|
342
|
+
availableAt: bigint
|
|
343
|
+
];
|
|
344
|
+
interface OutputObject {
|
|
345
|
+
neutral: string;
|
|
346
|
+
amount: bigint;
|
|
347
|
+
availableAt: bigint;
|
|
348
|
+
}
|
|
349
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
350
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
351
|
+
type Log = TypedEventLog<Event>;
|
|
352
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
353
|
+
}
|
|
354
|
+
export declare namespace WithdrawalCancelledEvent {
|
|
355
|
+
type InputTuple = [neutral: AddressLike, amount: BigNumberish];
|
|
356
|
+
type OutputTuple = [neutral: string, amount: bigint];
|
|
357
|
+
interface OutputObject {
|
|
358
|
+
neutral: string;
|
|
359
|
+
amount: bigint;
|
|
360
|
+
}
|
|
361
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
362
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
363
|
+
type Log = TypedEventLog<Event>;
|
|
364
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
365
|
+
}
|
|
366
|
+
export interface NeutralsRegistry extends BaseContract {
|
|
367
|
+
contractName: "NeutralsRegistry";
|
|
368
|
+
connect(runner?: ContractRunner | null): NeutralsRegistry;
|
|
369
|
+
waitForDeployment(): Promise<this>;
|
|
370
|
+
interface: NeutralsRegistryInterface;
|
|
371
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
372
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
373
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
374
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
375
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
376
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
377
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
378
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
379
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
380
|
+
UPGRADE_INTERFACE_VERSION: TypedContractMethod<[], [string], "view">;
|
|
381
|
+
__NeutralsRegistry_init: TypedContractMethod<[
|
|
382
|
+
governance_: AddressLike
|
|
383
|
+
], [
|
|
384
|
+
void
|
|
385
|
+
], "nonpayable">;
|
|
386
|
+
addNeutralsStake: TypedContractMethod<[
|
|
387
|
+
amount_: BigNumberish
|
|
388
|
+
], [
|
|
389
|
+
void
|
|
390
|
+
], "nonpayable">;
|
|
391
|
+
announceDelegationWithdrawal: TypedContractMethod<[
|
|
392
|
+
neutral_: AddressLike,
|
|
393
|
+
amount_: BigNumberish
|
|
394
|
+
], [
|
|
395
|
+
void
|
|
396
|
+
], "nonpayable">;
|
|
397
|
+
announceNeutralsWithdrawal: TypedContractMethod<[
|
|
398
|
+
amount_: BigNumberish
|
|
399
|
+
], [
|
|
400
|
+
void
|
|
401
|
+
], "nonpayable">;
|
|
402
|
+
boundActiveNeutralsList: TypedContractMethod<[], [void], "nonpayable">;
|
|
403
|
+
cancelDelegationWithdrawal: TypedContractMethod<[
|
|
404
|
+
neutral_: AddressLike
|
|
405
|
+
], [
|
|
406
|
+
void
|
|
407
|
+
], "nonpayable">;
|
|
408
|
+
cancelNeutralsWithdrawal: TypedContractMethod<[], [void], "nonpayable">;
|
|
409
|
+
claimDelegatorRewards: TypedContractMethod<[
|
|
410
|
+
neutral_: AddressLike
|
|
411
|
+
], [
|
|
412
|
+
void
|
|
413
|
+
], "nonpayable">;
|
|
414
|
+
claimNeutralRewards: TypedContractMethod<[], [void], "nonpayable">;
|
|
415
|
+
completeDelegationWithdrawal: TypedContractMethod<[
|
|
416
|
+
neutral_: AddressLike
|
|
417
|
+
], [
|
|
418
|
+
void
|
|
419
|
+
], "nonpayable">;
|
|
420
|
+
completeNeutralsWithdrawal: TypedContractMethod<[], [void], "nonpayable">;
|
|
421
|
+
delegate: TypedContractMethod<[
|
|
422
|
+
neutral_: AddressLike,
|
|
423
|
+
amount_: BigNumberish
|
|
424
|
+
], [
|
|
425
|
+
void
|
|
426
|
+
], "nonpayable">;
|
|
427
|
+
distributeRewards: TypedContractMethod<[
|
|
428
|
+
selectedNeutrals_: AddressLike[],
|
|
429
|
+
amount_: BigNumberish
|
|
430
|
+
], [
|
|
431
|
+
void
|
|
432
|
+
], "nonpayable">;
|
|
433
|
+
getActiveNeutrals: TypedContractMethod<[
|
|
434
|
+
offset_: BigNumberish,
|
|
435
|
+
limit_: BigNumberish
|
|
436
|
+
], [
|
|
437
|
+
string[]
|
|
438
|
+
], "view">;
|
|
439
|
+
getCurrentGovernance: TypedContractMethod<[], [string], "view">;
|
|
440
|
+
getCurrentMaxActiveNeutralsParameter: TypedContractMethod<[
|
|
441
|
+
], [
|
|
442
|
+
bigint
|
|
443
|
+
], "view">;
|
|
444
|
+
getDelegation: TypedContractMethod<[
|
|
445
|
+
delegator_: AddressLike,
|
|
446
|
+
neutral_: AddressLike
|
|
447
|
+
], [
|
|
448
|
+
NeutralsRegistry.DelegationStructOutput
|
|
449
|
+
], "view">;
|
|
450
|
+
getDelegatorRewards: TypedContractMethod<[
|
|
451
|
+
delegator_: AddressLike,
|
|
452
|
+
neutral_: AddressLike
|
|
453
|
+
], [
|
|
454
|
+
bigint
|
|
455
|
+
], "view">;
|
|
456
|
+
getDelegatorsPerNeutral: TypedContractMethod<[
|
|
457
|
+
neutral_: AddressLike,
|
|
458
|
+
offset_: BigNumberish,
|
|
459
|
+
limit_: BigNumberish
|
|
460
|
+
], [
|
|
461
|
+
string[]
|
|
462
|
+
], "view">;
|
|
463
|
+
getExternalLink: TypedContractMethod<[
|
|
464
|
+
neutral_: AddressLike
|
|
465
|
+
], [
|
|
466
|
+
string
|
|
467
|
+
], "view">;
|
|
468
|
+
getNeutralDelegationShare: TypedContractMethod<[
|
|
469
|
+
neutral_: AddressLike
|
|
470
|
+
], [
|
|
471
|
+
bigint
|
|
472
|
+
], "view">;
|
|
473
|
+
getNeutralInfo: TypedContractMethod<[
|
|
474
|
+
neutral_: AddressLike
|
|
475
|
+
], [
|
|
476
|
+
NeutralsRegistry.NeutralsInfoStructOutput
|
|
477
|
+
], "view">;
|
|
478
|
+
getNeutralRewards: TypedContractMethod<[
|
|
479
|
+
neutral_: AddressLike
|
|
480
|
+
], [
|
|
481
|
+
bigint
|
|
482
|
+
], "view">;
|
|
483
|
+
getNeutralsCount: TypedContractMethod<[], [bigint], "view">;
|
|
484
|
+
getNeutralsPerDelegator: TypedContractMethod<[
|
|
485
|
+
delegator_: AddressLike,
|
|
486
|
+
offset_: BigNumberish,
|
|
487
|
+
limit_: BigNumberish
|
|
488
|
+
], [
|
|
489
|
+
string[]
|
|
490
|
+
], "view">;
|
|
491
|
+
getNeutralsSlice: TypedContractMethod<[
|
|
492
|
+
number_: BigNumberish
|
|
493
|
+
], [
|
|
494
|
+
string[]
|
|
495
|
+
], "view">;
|
|
496
|
+
getParameterRegistry: TypedContractMethod<[], [string], "view">;
|
|
497
|
+
getStandbyNeutrals: TypedContractMethod<[
|
|
498
|
+
offset_: BigNumberish,
|
|
499
|
+
limit_: BigNumberish
|
|
500
|
+
], [
|
|
501
|
+
string[]
|
|
502
|
+
], "view">;
|
|
503
|
+
getToken: TypedContractMethod<[], [string], "view">;
|
|
504
|
+
getWithdrawalAnnouncement: TypedContractMethod<[
|
|
505
|
+
neutral_: AddressLike
|
|
506
|
+
], [
|
|
507
|
+
NeutralsRegistry.WithdrawalAnnouncementStructOutput
|
|
508
|
+
], "view">;
|
|
509
|
+
implementation: TypedContractMethod<[], [string], "view">;
|
|
510
|
+
isNeutral: TypedContractMethod<[candidate_: AddressLike], [boolean], "view">;
|
|
511
|
+
isWithdrawalReady: TypedContractMethod<[
|
|
512
|
+
neutral_: AddressLike
|
|
513
|
+
], [
|
|
514
|
+
boolean
|
|
515
|
+
], "view">;
|
|
516
|
+
proxiableUUID: TypedContractMethod<[], [string], "view">;
|
|
517
|
+
setDelegationShare: TypedContractMethod<[
|
|
518
|
+
delegationShare_: BigNumberish
|
|
519
|
+
], [
|
|
520
|
+
void
|
|
521
|
+
], "nonpayable">;
|
|
522
|
+
setExternalLink: TypedContractMethod<[
|
|
523
|
+
externalLink_: string
|
|
524
|
+
], [
|
|
525
|
+
void
|
|
526
|
+
], "nonpayable">;
|
|
527
|
+
slashNeutral: TypedContractMethod<[
|
|
528
|
+
neutral_: AddressLike,
|
|
529
|
+
amount_: BigNumberish
|
|
530
|
+
], [
|
|
531
|
+
void
|
|
532
|
+
], "nonpayable">;
|
|
533
|
+
supportsInterface: TypedContractMethod<[
|
|
534
|
+
interfaceId_: BytesLike
|
|
535
|
+
], [
|
|
536
|
+
boolean
|
|
537
|
+
], "view">;
|
|
538
|
+
tryBecomeActive: TypedContractMethod<[], [void], "nonpayable">;
|
|
539
|
+
updateDelegationWithdrawal: TypedContractMethod<[
|
|
540
|
+
neutral_: AddressLike,
|
|
541
|
+
newAmount_: BigNumberish
|
|
542
|
+
], [
|
|
543
|
+
void
|
|
544
|
+
], "nonpayable">;
|
|
545
|
+
updateNeutralsWithdrawal: TypedContractMethod<[
|
|
546
|
+
newAmount_: BigNumberish
|
|
547
|
+
], [
|
|
548
|
+
void
|
|
549
|
+
], "nonpayable">;
|
|
550
|
+
upgradeToAndCall: TypedContractMethod<[
|
|
551
|
+
newImplementation: AddressLike,
|
|
552
|
+
data: BytesLike
|
|
553
|
+
], [
|
|
554
|
+
void
|
|
555
|
+
], "payable">;
|
|
556
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
557
|
+
getFunction(nameOrSignature: "UPGRADE_INTERFACE_VERSION"): TypedContractMethod<[], [string], "view">;
|
|
558
|
+
getFunction(nameOrSignature: "__NeutralsRegistry_init"): TypedContractMethod<[governance_: AddressLike], [void], "nonpayable">;
|
|
559
|
+
getFunction(nameOrSignature: "addNeutralsStake"): TypedContractMethod<[amount_: BigNumberish], [void], "nonpayable">;
|
|
560
|
+
getFunction(nameOrSignature: "announceDelegationWithdrawal"): TypedContractMethod<[
|
|
561
|
+
neutral_: AddressLike,
|
|
562
|
+
amount_: BigNumberish
|
|
563
|
+
], [
|
|
564
|
+
void
|
|
565
|
+
], "nonpayable">;
|
|
566
|
+
getFunction(nameOrSignature: "announceNeutralsWithdrawal"): TypedContractMethod<[amount_: BigNumberish], [void], "nonpayable">;
|
|
567
|
+
getFunction(nameOrSignature: "boundActiveNeutralsList"): TypedContractMethod<[], [void], "nonpayable">;
|
|
568
|
+
getFunction(nameOrSignature: "cancelDelegationWithdrawal"): TypedContractMethod<[neutral_: AddressLike], [void], "nonpayable">;
|
|
569
|
+
getFunction(nameOrSignature: "cancelNeutralsWithdrawal"): TypedContractMethod<[], [void], "nonpayable">;
|
|
570
|
+
getFunction(nameOrSignature: "claimDelegatorRewards"): TypedContractMethod<[neutral_: AddressLike], [void], "nonpayable">;
|
|
571
|
+
getFunction(nameOrSignature: "claimNeutralRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
572
|
+
getFunction(nameOrSignature: "completeDelegationWithdrawal"): TypedContractMethod<[neutral_: AddressLike], [void], "nonpayable">;
|
|
573
|
+
getFunction(nameOrSignature: "completeNeutralsWithdrawal"): TypedContractMethod<[], [void], "nonpayable">;
|
|
574
|
+
getFunction(nameOrSignature: "delegate"): TypedContractMethod<[
|
|
575
|
+
neutral_: AddressLike,
|
|
576
|
+
amount_: BigNumberish
|
|
577
|
+
], [
|
|
578
|
+
void
|
|
579
|
+
], "nonpayable">;
|
|
580
|
+
getFunction(nameOrSignature: "distributeRewards"): TypedContractMethod<[
|
|
581
|
+
selectedNeutrals_: AddressLike[],
|
|
582
|
+
amount_: BigNumberish
|
|
583
|
+
], [
|
|
584
|
+
void
|
|
585
|
+
], "nonpayable">;
|
|
586
|
+
getFunction(nameOrSignature: "getActiveNeutrals"): TypedContractMethod<[
|
|
587
|
+
offset_: BigNumberish,
|
|
588
|
+
limit_: BigNumberish
|
|
589
|
+
], [
|
|
590
|
+
string[]
|
|
591
|
+
], "view">;
|
|
592
|
+
getFunction(nameOrSignature: "getCurrentGovernance"): TypedContractMethod<[], [string], "view">;
|
|
593
|
+
getFunction(nameOrSignature: "getCurrentMaxActiveNeutralsParameter"): TypedContractMethod<[], [bigint], "view">;
|
|
594
|
+
getFunction(nameOrSignature: "getDelegation"): TypedContractMethod<[
|
|
595
|
+
delegator_: AddressLike,
|
|
596
|
+
neutral_: AddressLike
|
|
597
|
+
], [
|
|
598
|
+
NeutralsRegistry.DelegationStructOutput
|
|
599
|
+
], "view">;
|
|
600
|
+
getFunction(nameOrSignature: "getDelegatorRewards"): TypedContractMethod<[
|
|
601
|
+
delegator_: AddressLike,
|
|
602
|
+
neutral_: AddressLike
|
|
603
|
+
], [
|
|
604
|
+
bigint
|
|
605
|
+
], "view">;
|
|
606
|
+
getFunction(nameOrSignature: "getDelegatorsPerNeutral"): TypedContractMethod<[
|
|
607
|
+
neutral_: AddressLike,
|
|
608
|
+
offset_: BigNumberish,
|
|
609
|
+
limit_: BigNumberish
|
|
610
|
+
], [
|
|
611
|
+
string[]
|
|
612
|
+
], "view">;
|
|
613
|
+
getFunction(nameOrSignature: "getExternalLink"): TypedContractMethod<[neutral_: AddressLike], [string], "view">;
|
|
614
|
+
getFunction(nameOrSignature: "getNeutralDelegationShare"): TypedContractMethod<[neutral_: AddressLike], [bigint], "view">;
|
|
615
|
+
getFunction(nameOrSignature: "getNeutralInfo"): TypedContractMethod<[
|
|
616
|
+
neutral_: AddressLike
|
|
617
|
+
], [
|
|
618
|
+
NeutralsRegistry.NeutralsInfoStructOutput
|
|
619
|
+
], "view">;
|
|
620
|
+
getFunction(nameOrSignature: "getNeutralRewards"): TypedContractMethod<[neutral_: AddressLike], [bigint], "view">;
|
|
621
|
+
getFunction(nameOrSignature: "getNeutralsCount"): TypedContractMethod<[], [bigint], "view">;
|
|
622
|
+
getFunction(nameOrSignature: "getNeutralsPerDelegator"): TypedContractMethod<[
|
|
623
|
+
delegator_: AddressLike,
|
|
624
|
+
offset_: BigNumberish,
|
|
625
|
+
limit_: BigNumberish
|
|
626
|
+
], [
|
|
627
|
+
string[]
|
|
628
|
+
], "view">;
|
|
629
|
+
getFunction(nameOrSignature: "getNeutralsSlice"): TypedContractMethod<[number_: BigNumberish], [string[]], "view">;
|
|
630
|
+
getFunction(nameOrSignature: "getParameterRegistry"): TypedContractMethod<[], [string], "view">;
|
|
631
|
+
getFunction(nameOrSignature: "getStandbyNeutrals"): TypedContractMethod<[
|
|
632
|
+
offset_: BigNumberish,
|
|
633
|
+
limit_: BigNumberish
|
|
634
|
+
], [
|
|
635
|
+
string[]
|
|
636
|
+
], "view">;
|
|
637
|
+
getFunction(nameOrSignature: "getToken"): TypedContractMethod<[], [string], "view">;
|
|
638
|
+
getFunction(nameOrSignature: "getWithdrawalAnnouncement"): TypedContractMethod<[
|
|
639
|
+
neutral_: AddressLike
|
|
640
|
+
], [
|
|
641
|
+
NeutralsRegistry.WithdrawalAnnouncementStructOutput
|
|
642
|
+
], "view">;
|
|
643
|
+
getFunction(nameOrSignature: "implementation"): TypedContractMethod<[], [string], "view">;
|
|
644
|
+
getFunction(nameOrSignature: "isNeutral"): TypedContractMethod<[candidate_: AddressLike], [boolean], "view">;
|
|
645
|
+
getFunction(nameOrSignature: "isWithdrawalReady"): TypedContractMethod<[neutral_: AddressLike], [boolean], "view">;
|
|
646
|
+
getFunction(nameOrSignature: "proxiableUUID"): TypedContractMethod<[], [string], "view">;
|
|
647
|
+
getFunction(nameOrSignature: "setDelegationShare"): TypedContractMethod<[
|
|
648
|
+
delegationShare_: BigNumberish
|
|
649
|
+
], [
|
|
650
|
+
void
|
|
651
|
+
], "nonpayable">;
|
|
652
|
+
getFunction(nameOrSignature: "setExternalLink"): TypedContractMethod<[externalLink_: string], [void], "nonpayable">;
|
|
653
|
+
getFunction(nameOrSignature: "slashNeutral"): TypedContractMethod<[
|
|
654
|
+
neutral_: AddressLike,
|
|
655
|
+
amount_: BigNumberish
|
|
656
|
+
], [
|
|
657
|
+
void
|
|
658
|
+
], "nonpayable">;
|
|
659
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId_: BytesLike], [boolean], "view">;
|
|
660
|
+
getFunction(nameOrSignature: "tryBecomeActive"): TypedContractMethod<[], [void], "nonpayable">;
|
|
661
|
+
getFunction(nameOrSignature: "updateDelegationWithdrawal"): TypedContractMethod<[
|
|
662
|
+
neutral_: AddressLike,
|
|
663
|
+
newAmount_: BigNumberish
|
|
664
|
+
], [
|
|
665
|
+
void
|
|
666
|
+
], "nonpayable">;
|
|
667
|
+
getFunction(nameOrSignature: "updateNeutralsWithdrawal"): TypedContractMethod<[newAmount_: BigNumberish], [void], "nonpayable">;
|
|
668
|
+
getFunction(nameOrSignature: "upgradeToAndCall"): TypedContractMethod<[
|
|
669
|
+
newImplementation: AddressLike,
|
|
670
|
+
data: BytesLike
|
|
671
|
+
], [
|
|
672
|
+
void
|
|
673
|
+
], "payable">;
|
|
674
|
+
getEvent(key: "DelegationWithdrawn"): TypedContractEvent<DelegationWithdrawnEvent.InputTuple, DelegationWithdrawnEvent.OutputTuple, DelegationWithdrawnEvent.OutputObject>;
|
|
675
|
+
getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
676
|
+
getEvent(key: "NeutralActivated"): TypedContractEvent<NeutralActivatedEvent.InputTuple, NeutralActivatedEvent.OutputTuple, NeutralActivatedEvent.OutputObject>;
|
|
677
|
+
getEvent(key: "NeutralMovedToStandby"): TypedContractEvent<NeutralMovedToStandbyEvent.InputTuple, NeutralMovedToStandbyEvent.OutputTuple, NeutralMovedToStandbyEvent.OutputObject>;
|
|
678
|
+
getEvent(key: "NeutralPaused"): TypedContractEvent<NeutralPausedEvent.InputTuple, NeutralPausedEvent.OutputTuple, NeutralPausedEvent.OutputObject>;
|
|
679
|
+
getEvent(key: "NeutralSlashed"): TypedContractEvent<NeutralSlashedEvent.InputTuple, NeutralSlashedEvent.OutputTuple, NeutralSlashedEvent.OutputObject>;
|
|
680
|
+
getEvent(key: "NeutralStaked"): TypedContractEvent<NeutralStakedEvent.InputTuple, NeutralStakedEvent.OutputTuple, NeutralStakedEvent.OutputObject>;
|
|
681
|
+
getEvent(key: "NeutralUnpaused"): TypedContractEvent<NeutralUnpausedEvent.InputTuple, NeutralUnpausedEvent.OutputTuple, NeutralUnpausedEvent.OutputObject>;
|
|
682
|
+
getEvent(key: "NeutralUnstaked"): TypedContractEvent<NeutralUnstakedEvent.InputTuple, NeutralUnstakedEvent.OutputTuple, NeutralUnstakedEvent.OutputObject>;
|
|
683
|
+
getEvent(key: "RewardsClaimed"): TypedContractEvent<RewardsClaimedEvent.InputTuple, RewardsClaimedEvent.OutputTuple, RewardsClaimedEvent.OutputObject>;
|
|
684
|
+
getEvent(key: "RewardsDistributed"): TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
|
|
685
|
+
getEvent(key: "Upgraded"): TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
|
|
686
|
+
getEvent(key: "WithdrawalAnnounced"): TypedContractEvent<WithdrawalAnnouncedEvent.InputTuple, WithdrawalAnnouncedEvent.OutputTuple, WithdrawalAnnouncedEvent.OutputObject>;
|
|
687
|
+
getEvent(key: "WithdrawalCancelled"): TypedContractEvent<WithdrawalCancelledEvent.InputTuple, WithdrawalCancelledEvent.OutputTuple, WithdrawalCancelledEvent.OutputObject>;
|
|
688
|
+
filters: {
|
|
689
|
+
"DelegationWithdrawn(address,address,uint256)": TypedContractEvent<DelegationWithdrawnEvent.InputTuple, DelegationWithdrawnEvent.OutputTuple, DelegationWithdrawnEvent.OutputObject>;
|
|
690
|
+
DelegationWithdrawn: TypedContractEvent<DelegationWithdrawnEvent.InputTuple, DelegationWithdrawnEvent.OutputTuple, DelegationWithdrawnEvent.OutputObject>;
|
|
691
|
+
"Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
692
|
+
Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
693
|
+
"NeutralActivated(address,uint256)": TypedContractEvent<NeutralActivatedEvent.InputTuple, NeutralActivatedEvent.OutputTuple, NeutralActivatedEvent.OutputObject>;
|
|
694
|
+
NeutralActivated: TypedContractEvent<NeutralActivatedEvent.InputTuple, NeutralActivatedEvent.OutputTuple, NeutralActivatedEvent.OutputObject>;
|
|
695
|
+
"NeutralMovedToStandby(address)": TypedContractEvent<NeutralMovedToStandbyEvent.InputTuple, NeutralMovedToStandbyEvent.OutputTuple, NeutralMovedToStandbyEvent.OutputObject>;
|
|
696
|
+
NeutralMovedToStandby: TypedContractEvent<NeutralMovedToStandbyEvent.InputTuple, NeutralMovedToStandbyEvent.OutputTuple, NeutralMovedToStandbyEvent.OutputObject>;
|
|
697
|
+
"NeutralPaused(address)": TypedContractEvent<NeutralPausedEvent.InputTuple, NeutralPausedEvent.OutputTuple, NeutralPausedEvent.OutputObject>;
|
|
698
|
+
NeutralPaused: TypedContractEvent<NeutralPausedEvent.InputTuple, NeutralPausedEvent.OutputTuple, NeutralPausedEvent.OutputObject>;
|
|
699
|
+
"NeutralSlashed(address,uint256,address)": TypedContractEvent<NeutralSlashedEvent.InputTuple, NeutralSlashedEvent.OutputTuple, NeutralSlashedEvent.OutputObject>;
|
|
700
|
+
NeutralSlashed: TypedContractEvent<NeutralSlashedEvent.InputTuple, NeutralSlashedEvent.OutputTuple, NeutralSlashedEvent.OutputObject>;
|
|
701
|
+
"NeutralStaked(address,uint256,uint256)": TypedContractEvent<NeutralStakedEvent.InputTuple, NeutralStakedEvent.OutputTuple, NeutralStakedEvent.OutputObject>;
|
|
702
|
+
NeutralStaked: TypedContractEvent<NeutralStakedEvent.InputTuple, NeutralStakedEvent.OutputTuple, NeutralStakedEvent.OutputObject>;
|
|
703
|
+
"NeutralUnpaused(address)": TypedContractEvent<NeutralUnpausedEvent.InputTuple, NeutralUnpausedEvent.OutputTuple, NeutralUnpausedEvent.OutputObject>;
|
|
704
|
+
NeutralUnpaused: TypedContractEvent<NeutralUnpausedEvent.InputTuple, NeutralUnpausedEvent.OutputTuple, NeutralUnpausedEvent.OutputObject>;
|
|
705
|
+
"NeutralUnstaked(address,uint256,uint256)": TypedContractEvent<NeutralUnstakedEvent.InputTuple, NeutralUnstakedEvent.OutputTuple, NeutralUnstakedEvent.OutputObject>;
|
|
706
|
+
NeutralUnstaked: TypedContractEvent<NeutralUnstakedEvent.InputTuple, NeutralUnstakedEvent.OutputTuple, NeutralUnstakedEvent.OutputObject>;
|
|
707
|
+
"RewardsClaimed(address,uint256)": TypedContractEvent<RewardsClaimedEvent.InputTuple, RewardsClaimedEvent.OutputTuple, RewardsClaimedEvent.OutputObject>;
|
|
708
|
+
RewardsClaimed: TypedContractEvent<RewardsClaimedEvent.InputTuple, RewardsClaimedEvent.OutputTuple, RewardsClaimedEvent.OutputObject>;
|
|
709
|
+
"RewardsDistributed(address[],uint256)": TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
|
|
710
|
+
RewardsDistributed: TypedContractEvent<RewardsDistributedEvent.InputTuple, RewardsDistributedEvent.OutputTuple, RewardsDistributedEvent.OutputObject>;
|
|
711
|
+
"Upgraded(address)": TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
|
|
712
|
+
Upgraded: TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
|
|
713
|
+
"WithdrawalAnnounced(address,uint256,uint256)": TypedContractEvent<WithdrawalAnnouncedEvent.InputTuple, WithdrawalAnnouncedEvent.OutputTuple, WithdrawalAnnouncedEvent.OutputObject>;
|
|
714
|
+
WithdrawalAnnounced: TypedContractEvent<WithdrawalAnnouncedEvent.InputTuple, WithdrawalAnnouncedEvent.OutputTuple, WithdrawalAnnouncedEvent.OutputObject>;
|
|
715
|
+
"WithdrawalCancelled(address,uint256)": TypedContractEvent<WithdrawalCancelledEvent.InputTuple, WithdrawalCancelledEvent.OutputTuple, WithdrawalCancelledEvent.OutputObject>;
|
|
716
|
+
WithdrawalCancelled: TypedContractEvent<WithdrawalCancelledEvent.InputTuple, WithdrawalCancelledEvent.OutputTuple, WithdrawalCancelledEvent.OutputObject>;
|
|
717
|
+
};
|
|
718
|
+
}
|