@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,134 @@
|
|
|
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 interface IWrappedTokenInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "deposit" | "totalSupply" | "transfer" | "transferFrom"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "Approval" | "Transfer"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "deposit", values?: undefined): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
13
|
+
decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result;
|
|
14
|
+
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
|
|
15
|
+
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
16
|
+
decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
|
|
17
|
+
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
18
|
+
decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
|
|
19
|
+
decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace ApprovalEvent {
|
|
22
|
+
type InputTuple = [
|
|
23
|
+
owner: AddressLike,
|
|
24
|
+
spender: AddressLike,
|
|
25
|
+
value: BigNumberish
|
|
26
|
+
];
|
|
27
|
+
type OutputTuple = [owner: string, spender: string, value: bigint];
|
|
28
|
+
interface OutputObject {
|
|
29
|
+
owner: string;
|
|
30
|
+
spender: string;
|
|
31
|
+
value: bigint;
|
|
32
|
+
}
|
|
33
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
34
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
35
|
+
type Log = TypedEventLog<Event>;
|
|
36
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace TransferEvent {
|
|
39
|
+
type InputTuple = [
|
|
40
|
+
from: AddressLike,
|
|
41
|
+
to: AddressLike,
|
|
42
|
+
value: BigNumberish
|
|
43
|
+
];
|
|
44
|
+
type OutputTuple = [from: string, to: string, value: bigint];
|
|
45
|
+
interface OutputObject {
|
|
46
|
+
from: string;
|
|
47
|
+
to: string;
|
|
48
|
+
value: bigint;
|
|
49
|
+
}
|
|
50
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
51
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
52
|
+
type Log = TypedEventLog<Event>;
|
|
53
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
54
|
+
}
|
|
55
|
+
export interface IWrappedToken extends BaseContract {
|
|
56
|
+
contractName: "IWrappedToken";
|
|
57
|
+
connect(runner?: ContractRunner | null): IWrappedToken;
|
|
58
|
+
waitForDeployment(): Promise<this>;
|
|
59
|
+
interface: IWrappedTokenInterface;
|
|
60
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
61
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
62
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
63
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
64
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
65
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
66
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
67
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
68
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
69
|
+
allowance: TypedContractMethod<[
|
|
70
|
+
owner: AddressLike,
|
|
71
|
+
spender: AddressLike
|
|
72
|
+
], [
|
|
73
|
+
bigint
|
|
74
|
+
], "view">;
|
|
75
|
+
approve: TypedContractMethod<[
|
|
76
|
+
spender: AddressLike,
|
|
77
|
+
value: BigNumberish
|
|
78
|
+
], [
|
|
79
|
+
boolean
|
|
80
|
+
], "nonpayable">;
|
|
81
|
+
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
82
|
+
deposit: TypedContractMethod<[], [boolean], "payable">;
|
|
83
|
+
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
84
|
+
transfer: TypedContractMethod<[
|
|
85
|
+
to: AddressLike,
|
|
86
|
+
value: BigNumberish
|
|
87
|
+
], [
|
|
88
|
+
boolean
|
|
89
|
+
], "nonpayable">;
|
|
90
|
+
transferFrom: TypedContractMethod<[
|
|
91
|
+
from: AddressLike,
|
|
92
|
+
to: AddressLike,
|
|
93
|
+
value: BigNumberish
|
|
94
|
+
], [
|
|
95
|
+
boolean
|
|
96
|
+
], "nonpayable">;
|
|
97
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
98
|
+
getFunction(nameOrSignature: "allowance"): TypedContractMethod<[
|
|
99
|
+
owner: AddressLike,
|
|
100
|
+
spender: AddressLike
|
|
101
|
+
], [
|
|
102
|
+
bigint
|
|
103
|
+
], "view">;
|
|
104
|
+
getFunction(nameOrSignature: "approve"): TypedContractMethod<[
|
|
105
|
+
spender: AddressLike,
|
|
106
|
+
value: BigNumberish
|
|
107
|
+
], [
|
|
108
|
+
boolean
|
|
109
|
+
], "nonpayable">;
|
|
110
|
+
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
111
|
+
getFunction(nameOrSignature: "deposit"): TypedContractMethod<[], [boolean], "payable">;
|
|
112
|
+
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
113
|
+
getFunction(nameOrSignature: "transfer"): TypedContractMethod<[
|
|
114
|
+
to: AddressLike,
|
|
115
|
+
value: BigNumberish
|
|
116
|
+
], [
|
|
117
|
+
boolean
|
|
118
|
+
], "nonpayable">;
|
|
119
|
+
getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[
|
|
120
|
+
from: AddressLike,
|
|
121
|
+
to: AddressLike,
|
|
122
|
+
value: BigNumberish
|
|
123
|
+
], [
|
|
124
|
+
boolean
|
|
125
|
+
], "nonpayable">;
|
|
126
|
+
getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
127
|
+
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
128
|
+
filters: {
|
|
129
|
+
"Approval(address,address,uint256)": TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
130
|
+
Approval: TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
131
|
+
"Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
132
|
+
Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
133
|
+
};
|
|
134
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type { IExecutorsRegistry } from "./IExecutorsRegistry";
|
|
2
|
+
export type { IGovernance } from "./IGovernance";
|
|
3
|
+
export type { INeutralsRegistry } from "./INeutralsRegistry";
|
|
4
|
+
export type { IQParameters } from "./IQParameters";
|
|
5
|
+
export type { ISLCCore } from "./ISLCCore";
|
|
6
|
+
export type { ISLCCoreFactory } from "./ISLCCoreFactory";
|
|
7
|
+
export type { IWrappedToken } from "./IWrappedToken";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { BaseContract, FunctionFragment, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener } from "../../common";
|
|
3
|
+
export interface ErrorsInterface extends Interface {
|
|
4
|
+
}
|
|
5
|
+
export interface Errors extends BaseContract {
|
|
6
|
+
contractName: "Errors";
|
|
7
|
+
connect(runner?: ContractRunner | null): Errors;
|
|
8
|
+
waitForDeployment(): Promise<this>;
|
|
9
|
+
interface: ErrorsInterface;
|
|
10
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
11
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
12
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
13
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
14
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
15
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
16
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
17
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
18
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
19
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
20
|
+
filters: {};
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { BaseContract, FunctionFragment, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener } from "../../common";
|
|
3
|
+
export interface NeutralsSelectionInterface extends Interface {
|
|
4
|
+
}
|
|
5
|
+
export interface NeutralsSelection extends BaseContract {
|
|
6
|
+
contractName: "NeutralsSelection";
|
|
7
|
+
connect(runner?: ContractRunner | null): NeutralsSelection;
|
|
8
|
+
waitForDeployment(): Promise<this>;
|
|
9
|
+
interface: NeutralsSelectionInterface;
|
|
10
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
11
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
12
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
13
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
14
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
15
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
16
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
17
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
18
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
19
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
20
|
+
filters: {};
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common";
|
|
3
|
+
export declare namespace MockGovernance {
|
|
4
|
+
type ServiceRequestCallStruct = {
|
|
5
|
+
requester: AddressLike;
|
|
6
|
+
serviceFee: BigNumberish;
|
|
7
|
+
neutralsNumber: BigNumberish;
|
|
8
|
+
additionalLink: string;
|
|
9
|
+
data: BytesLike;
|
|
10
|
+
};
|
|
11
|
+
type ServiceRequestCallStructOutput = [
|
|
12
|
+
requester: string,
|
|
13
|
+
serviceFee: bigint,
|
|
14
|
+
neutralsNumber: bigint,
|
|
15
|
+
additionalLink: string,
|
|
16
|
+
data: string
|
|
17
|
+
] & {
|
|
18
|
+
requester: string;
|
|
19
|
+
serviceFee: bigint;
|
|
20
|
+
neutralsNumber: bigint;
|
|
21
|
+
additionalLink: string;
|
|
22
|
+
data: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
export declare namespace IGovernance {
|
|
26
|
+
type OperationDataStruct = {
|
|
27
|
+
operation_: BigNumberish;
|
|
28
|
+
to_: AddressLike;
|
|
29
|
+
data_: BytesLike;
|
|
30
|
+
value_: BigNumberish;
|
|
31
|
+
};
|
|
32
|
+
type OperationDataStructOutput = [
|
|
33
|
+
operation_: bigint,
|
|
34
|
+
to_: string,
|
|
35
|
+
data_: string,
|
|
36
|
+
value_: bigint
|
|
37
|
+
] & {
|
|
38
|
+
operation_: bigint;
|
|
39
|
+
to_: string;
|
|
40
|
+
data_: string;
|
|
41
|
+
value_: bigint;
|
|
42
|
+
};
|
|
43
|
+
type OperationBundleStruct = {
|
|
44
|
+
operations: IGovernance.OperationDataStruct[];
|
|
45
|
+
};
|
|
46
|
+
type OperationBundleStructOutput = [
|
|
47
|
+
operations: IGovernance.OperationDataStructOutput[]
|
|
48
|
+
] & {
|
|
49
|
+
operations: IGovernance.OperationDataStructOutput[];
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
export interface MockGovernanceInterface extends Interface {
|
|
53
|
+
getFunction(nameOrSignature: "_lastCall" | "_parametersRegistry" | "_processServiceRequestResult" | "_systemToken" | "getLastProcessServiceRequestCall" | "getParametersRegistry" | "getSystemToken" | "processServiceRequest" | "proposeOperations" | "setParametersRegistry" | "setProcessServiceRequestResult" | "setSystemToken" | "supportsInterface"): FunctionFragment;
|
|
54
|
+
encodeFunctionData(functionFragment: "_lastCall", values?: undefined): string;
|
|
55
|
+
encodeFunctionData(functionFragment: "_parametersRegistry", values?: undefined): string;
|
|
56
|
+
encodeFunctionData(functionFragment: "_processServiceRequestResult", values?: undefined): string;
|
|
57
|
+
encodeFunctionData(functionFragment: "_systemToken", values?: undefined): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "getLastProcessServiceRequestCall", values?: undefined): string;
|
|
59
|
+
encodeFunctionData(functionFragment: "getParametersRegistry", values?: undefined): string;
|
|
60
|
+
encodeFunctionData(functionFragment: "getSystemToken", values?: undefined): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "processServiceRequest", values: [AddressLike, BigNumberish, BigNumberish, string, BytesLike]): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "proposeOperations", values: [BigNumberish, IGovernance.OperationBundleStruct]): string;
|
|
63
|
+
encodeFunctionData(functionFragment: "setParametersRegistry", values: [AddressLike]): string;
|
|
64
|
+
encodeFunctionData(functionFragment: "setProcessServiceRequestResult", values: [boolean]): string;
|
|
65
|
+
encodeFunctionData(functionFragment: "setSystemToken", values: [AddressLike]): string;
|
|
66
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
67
|
+
decodeFunctionResult(functionFragment: "_lastCall", data: BytesLike): Result;
|
|
68
|
+
decodeFunctionResult(functionFragment: "_parametersRegistry", data: BytesLike): Result;
|
|
69
|
+
decodeFunctionResult(functionFragment: "_processServiceRequestResult", data: BytesLike): Result;
|
|
70
|
+
decodeFunctionResult(functionFragment: "_systemToken", data: BytesLike): Result;
|
|
71
|
+
decodeFunctionResult(functionFragment: "getLastProcessServiceRequestCall", data: BytesLike): Result;
|
|
72
|
+
decodeFunctionResult(functionFragment: "getParametersRegistry", data: BytesLike): Result;
|
|
73
|
+
decodeFunctionResult(functionFragment: "getSystemToken", data: BytesLike): Result;
|
|
74
|
+
decodeFunctionResult(functionFragment: "processServiceRequest", data: BytesLike): Result;
|
|
75
|
+
decodeFunctionResult(functionFragment: "proposeOperations", data: BytesLike): Result;
|
|
76
|
+
decodeFunctionResult(functionFragment: "setParametersRegistry", data: BytesLike): Result;
|
|
77
|
+
decodeFunctionResult(functionFragment: "setProcessServiceRequestResult", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(functionFragment: "setSystemToken", data: BytesLike): Result;
|
|
79
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
80
|
+
}
|
|
81
|
+
export interface MockGovernance extends BaseContract {
|
|
82
|
+
contractName: "MockGovernance";
|
|
83
|
+
connect(runner?: ContractRunner | null): MockGovernance;
|
|
84
|
+
waitForDeployment(): Promise<this>;
|
|
85
|
+
interface: MockGovernanceInterface;
|
|
86
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
87
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
88
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
89
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
90
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
91
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
92
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
93
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
94
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
95
|
+
_lastCall: TypedContractMethod<[
|
|
96
|
+
], [
|
|
97
|
+
[
|
|
98
|
+
string,
|
|
99
|
+
bigint,
|
|
100
|
+
bigint,
|
|
101
|
+
string,
|
|
102
|
+
string
|
|
103
|
+
] & {
|
|
104
|
+
requester: string;
|
|
105
|
+
serviceFee: bigint;
|
|
106
|
+
neutralsNumber: bigint;
|
|
107
|
+
additionalLink: string;
|
|
108
|
+
data: string;
|
|
109
|
+
}
|
|
110
|
+
], "view">;
|
|
111
|
+
_parametersRegistry: TypedContractMethod<[], [string], "view">;
|
|
112
|
+
_processServiceRequestResult: TypedContractMethod<[], [boolean], "view">;
|
|
113
|
+
_systemToken: TypedContractMethod<[], [string], "view">;
|
|
114
|
+
getLastProcessServiceRequestCall: TypedContractMethod<[
|
|
115
|
+
], [
|
|
116
|
+
MockGovernance.ServiceRequestCallStructOutput
|
|
117
|
+
], "view">;
|
|
118
|
+
getParametersRegistry: TypedContractMethod<[], [string], "view">;
|
|
119
|
+
getSystemToken: TypedContractMethod<[], [string], "view">;
|
|
120
|
+
processServiceRequest: TypedContractMethod<[
|
|
121
|
+
requester_: AddressLike,
|
|
122
|
+
serviceFee_: BigNumberish,
|
|
123
|
+
neutralsNumber_: BigNumberish,
|
|
124
|
+
additionalLink_: string,
|
|
125
|
+
data_: BytesLike
|
|
126
|
+
], [
|
|
127
|
+
boolean
|
|
128
|
+
], "payable">;
|
|
129
|
+
proposeOperations: TypedContractMethod<[
|
|
130
|
+
proposalId_: BigNumberish,
|
|
131
|
+
operationBundle_: IGovernance.OperationBundleStruct
|
|
132
|
+
], [
|
|
133
|
+
void
|
|
134
|
+
], "nonpayable">;
|
|
135
|
+
setParametersRegistry: TypedContractMethod<[
|
|
136
|
+
registry_: AddressLike
|
|
137
|
+
], [
|
|
138
|
+
void
|
|
139
|
+
], "nonpayable">;
|
|
140
|
+
setProcessServiceRequestResult: TypedContractMethod<[
|
|
141
|
+
result_: boolean
|
|
142
|
+
], [
|
|
143
|
+
void
|
|
144
|
+
], "nonpayable">;
|
|
145
|
+
setSystemToken: TypedContractMethod<[
|
|
146
|
+
token_: AddressLike
|
|
147
|
+
], [
|
|
148
|
+
void
|
|
149
|
+
], "nonpayable">;
|
|
150
|
+
supportsInterface: TypedContractMethod<[
|
|
151
|
+
interfaceId: BytesLike
|
|
152
|
+
], [
|
|
153
|
+
boolean
|
|
154
|
+
], "view">;
|
|
155
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
156
|
+
getFunction(nameOrSignature: "_lastCall"): TypedContractMethod<[
|
|
157
|
+
], [
|
|
158
|
+
[
|
|
159
|
+
string,
|
|
160
|
+
bigint,
|
|
161
|
+
bigint,
|
|
162
|
+
string,
|
|
163
|
+
string
|
|
164
|
+
] & {
|
|
165
|
+
requester: string;
|
|
166
|
+
serviceFee: bigint;
|
|
167
|
+
neutralsNumber: bigint;
|
|
168
|
+
additionalLink: string;
|
|
169
|
+
data: string;
|
|
170
|
+
}
|
|
171
|
+
], "view">;
|
|
172
|
+
getFunction(nameOrSignature: "_parametersRegistry"): TypedContractMethod<[], [string], "view">;
|
|
173
|
+
getFunction(nameOrSignature: "_processServiceRequestResult"): TypedContractMethod<[], [boolean], "view">;
|
|
174
|
+
getFunction(nameOrSignature: "_systemToken"): TypedContractMethod<[], [string], "view">;
|
|
175
|
+
getFunction(nameOrSignature: "getLastProcessServiceRequestCall"): TypedContractMethod<[
|
|
176
|
+
], [
|
|
177
|
+
MockGovernance.ServiceRequestCallStructOutput
|
|
178
|
+
], "view">;
|
|
179
|
+
getFunction(nameOrSignature: "getParametersRegistry"): TypedContractMethod<[], [string], "view">;
|
|
180
|
+
getFunction(nameOrSignature: "getSystemToken"): TypedContractMethod<[], [string], "view">;
|
|
181
|
+
getFunction(nameOrSignature: "processServiceRequest"): TypedContractMethod<[
|
|
182
|
+
requester_: AddressLike,
|
|
183
|
+
serviceFee_: BigNumberish,
|
|
184
|
+
neutralsNumber_: BigNumberish,
|
|
185
|
+
additionalLink_: string,
|
|
186
|
+
data_: BytesLike
|
|
187
|
+
], [
|
|
188
|
+
boolean
|
|
189
|
+
], "payable">;
|
|
190
|
+
getFunction(nameOrSignature: "proposeOperations"): TypedContractMethod<[
|
|
191
|
+
proposalId_: BigNumberish,
|
|
192
|
+
operationBundle_: IGovernance.OperationBundleStruct
|
|
193
|
+
], [
|
|
194
|
+
void
|
|
195
|
+
], "nonpayable">;
|
|
196
|
+
getFunction(nameOrSignature: "setParametersRegistry"): TypedContractMethod<[registry_: AddressLike], [void], "nonpayable">;
|
|
197
|
+
getFunction(nameOrSignature: "setProcessServiceRequestResult"): TypedContractMethod<[result_: boolean], [void], "nonpayable">;
|
|
198
|
+
getFunction(nameOrSignature: "setSystemToken"): TypedContractMethod<[token_: AddressLike], [void], "nonpayable">;
|
|
199
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
200
|
+
filters: {};
|
|
201
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|