@web3dotorg/evm-slc-core-sdk 0.3.6 → 0.3.9
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 +984 -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 +1736 -0
- package/lib.commonjs/factories/contracts/governance/Governance__factory.js +2281 -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 +984 -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 +1736 -0
- package/lib.esm/factories/contracts/governance/Governance__factory.js +2277 -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 -2328
- 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,198 @@
|
|
|
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 SLCCore {
|
|
4
|
+
type SLCCoreStorageStruct = {
|
|
5
|
+
governance: AddressLike;
|
|
6
|
+
slcCreator: AddressLike;
|
|
7
|
+
slcCreationTimestamp: BigNumberish;
|
|
8
|
+
legalDocumentLink: string;
|
|
9
|
+
data: BytesLike;
|
|
10
|
+
};
|
|
11
|
+
type SLCCoreStorageStructOutput = [
|
|
12
|
+
governance: string,
|
|
13
|
+
slcCreator: string,
|
|
14
|
+
slcCreationTimestamp: bigint,
|
|
15
|
+
legalDocumentLink: string,
|
|
16
|
+
data: string
|
|
17
|
+
] & {
|
|
18
|
+
governance: string;
|
|
19
|
+
slcCreator: string;
|
|
20
|
+
slcCreationTimestamp: bigint;
|
|
21
|
+
legalDocumentLink: string;
|
|
22
|
+
data: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
export interface SLCCoreInterface extends Interface {
|
|
26
|
+
getFunction(nameOrSignature: "__SLCCore_init" | "arbitraryExecute" | "getSLCCoreStorage" | "requestService" | "supportsInterface"): FunctionFragment;
|
|
27
|
+
getEvent(nameOrSignatureOrTopic: "ArbitraryExecute" | "Initialized" | "SLCInitialized" | "ServiceRequested"): EventFragment;
|
|
28
|
+
encodeFunctionData(functionFragment: "__SLCCore_init", values: [AddressLike, AddressLike, string, BytesLike]): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "arbitraryExecute", values: [BigNumberish, AddressLike, BytesLike, BigNumberish]): string;
|
|
30
|
+
encodeFunctionData(functionFragment: "getSLCCoreStorage", values?: undefined): string;
|
|
31
|
+
encodeFunctionData(functionFragment: "requestService", values: [BigNumberish, BigNumberish, string, BytesLike]): string;
|
|
32
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
33
|
+
decodeFunctionResult(functionFragment: "__SLCCore_init", data: BytesLike): Result;
|
|
34
|
+
decodeFunctionResult(functionFragment: "arbitraryExecute", data: BytesLike): Result;
|
|
35
|
+
decodeFunctionResult(functionFragment: "getSLCCoreStorage", data: BytesLike): Result;
|
|
36
|
+
decodeFunctionResult(functionFragment: "requestService", data: BytesLike): Result;
|
|
37
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace ArbitraryExecuteEvent {
|
|
40
|
+
type InputTuple = [
|
|
41
|
+
operation: BigNumberish,
|
|
42
|
+
to: AddressLike,
|
|
43
|
+
data: BytesLike,
|
|
44
|
+
value: BigNumberish
|
|
45
|
+
];
|
|
46
|
+
type OutputTuple = [
|
|
47
|
+
operation: bigint,
|
|
48
|
+
to: string,
|
|
49
|
+
data: string,
|
|
50
|
+
value: bigint
|
|
51
|
+
];
|
|
52
|
+
interface OutputObject {
|
|
53
|
+
operation: bigint;
|
|
54
|
+
to: string;
|
|
55
|
+
data: string;
|
|
56
|
+
value: bigint;
|
|
57
|
+
}
|
|
58
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
59
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
60
|
+
type Log = TypedEventLog<Event>;
|
|
61
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
62
|
+
}
|
|
63
|
+
export declare namespace InitializedEvent {
|
|
64
|
+
type InputTuple = [version: BigNumberish];
|
|
65
|
+
type OutputTuple = [version: bigint];
|
|
66
|
+
interface OutputObject {
|
|
67
|
+
version: bigint;
|
|
68
|
+
}
|
|
69
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
70
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
71
|
+
type Log = TypedEventLog<Event>;
|
|
72
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
73
|
+
}
|
|
74
|
+
export declare namespace SLCInitializedEvent {
|
|
75
|
+
type InputTuple = [creator: AddressLike, legalDocumentLink: string];
|
|
76
|
+
type OutputTuple = [creator: string, legalDocumentLink: string];
|
|
77
|
+
interface OutputObject {
|
|
78
|
+
creator: string;
|
|
79
|
+
legalDocumentLink: string;
|
|
80
|
+
}
|
|
81
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
82
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
83
|
+
type Log = TypedEventLog<Event>;
|
|
84
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
85
|
+
}
|
|
86
|
+
export declare namespace ServiceRequestedEvent {
|
|
87
|
+
type InputTuple = [
|
|
88
|
+
requester: AddressLike,
|
|
89
|
+
serviceFee: BigNumberish,
|
|
90
|
+
neutralsNumber: BigNumberish,
|
|
91
|
+
additionalLink: string
|
|
92
|
+
];
|
|
93
|
+
type OutputTuple = [
|
|
94
|
+
requester: string,
|
|
95
|
+
serviceFee: bigint,
|
|
96
|
+
neutralsNumber: bigint,
|
|
97
|
+
additionalLink: string
|
|
98
|
+
];
|
|
99
|
+
interface OutputObject {
|
|
100
|
+
requester: string;
|
|
101
|
+
serviceFee: bigint;
|
|
102
|
+
neutralsNumber: bigint;
|
|
103
|
+
additionalLink: string;
|
|
104
|
+
}
|
|
105
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
106
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
107
|
+
type Log = TypedEventLog<Event>;
|
|
108
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
109
|
+
}
|
|
110
|
+
export interface SLCCore extends BaseContract {
|
|
111
|
+
contractName: "SLCCore";
|
|
112
|
+
connect(runner?: ContractRunner | null): SLCCore;
|
|
113
|
+
waitForDeployment(): Promise<this>;
|
|
114
|
+
interface: SLCCoreInterface;
|
|
115
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
116
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
117
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
118
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
119
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
120
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
121
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
122
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
123
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
124
|
+
__SLCCore_init: TypedContractMethod<[
|
|
125
|
+
creator_: AddressLike,
|
|
126
|
+
governance_: AddressLike,
|
|
127
|
+
legalDocumentLink_: string,
|
|
128
|
+
data_: BytesLike
|
|
129
|
+
], [
|
|
130
|
+
void
|
|
131
|
+
], "nonpayable">;
|
|
132
|
+
arbitraryExecute: TypedContractMethod<[
|
|
133
|
+
operation_: BigNumberish,
|
|
134
|
+
to_: AddressLike,
|
|
135
|
+
data_: BytesLike,
|
|
136
|
+
value_: BigNumberish
|
|
137
|
+
], [
|
|
138
|
+
boolean
|
|
139
|
+
], "nonpayable">;
|
|
140
|
+
getSLCCoreStorage: TypedContractMethod<[
|
|
141
|
+
], [
|
|
142
|
+
SLCCore.SLCCoreStorageStructOutput
|
|
143
|
+
], "view">;
|
|
144
|
+
requestService: TypedContractMethod<[
|
|
145
|
+
serviceFee_: BigNumberish,
|
|
146
|
+
neutralsNumber_: BigNumberish,
|
|
147
|
+
additionalLink_: string,
|
|
148
|
+
data_: BytesLike
|
|
149
|
+
], [
|
|
150
|
+
boolean
|
|
151
|
+
], "payable">;
|
|
152
|
+
supportsInterface: TypedContractMethod<[
|
|
153
|
+
interfaceId: BytesLike
|
|
154
|
+
], [
|
|
155
|
+
boolean
|
|
156
|
+
], "view">;
|
|
157
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
158
|
+
getFunction(nameOrSignature: "__SLCCore_init"): TypedContractMethod<[
|
|
159
|
+
creator_: AddressLike,
|
|
160
|
+
governance_: AddressLike,
|
|
161
|
+
legalDocumentLink_: string,
|
|
162
|
+
data_: BytesLike
|
|
163
|
+
], [
|
|
164
|
+
void
|
|
165
|
+
], "nonpayable">;
|
|
166
|
+
getFunction(nameOrSignature: "arbitraryExecute"): TypedContractMethod<[
|
|
167
|
+
operation_: BigNumberish,
|
|
168
|
+
to_: AddressLike,
|
|
169
|
+
data_: BytesLike,
|
|
170
|
+
value_: BigNumberish
|
|
171
|
+
], [
|
|
172
|
+
boolean
|
|
173
|
+
], "nonpayable">;
|
|
174
|
+
getFunction(nameOrSignature: "getSLCCoreStorage"): TypedContractMethod<[], [SLCCore.SLCCoreStorageStructOutput], "view">;
|
|
175
|
+
getFunction(nameOrSignature: "requestService"): TypedContractMethod<[
|
|
176
|
+
serviceFee_: BigNumberish,
|
|
177
|
+
neutralsNumber_: BigNumberish,
|
|
178
|
+
additionalLink_: string,
|
|
179
|
+
data_: BytesLike
|
|
180
|
+
], [
|
|
181
|
+
boolean
|
|
182
|
+
], "payable">;
|
|
183
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
184
|
+
getEvent(key: "ArbitraryExecute"): TypedContractEvent<ArbitraryExecuteEvent.InputTuple, ArbitraryExecuteEvent.OutputTuple, ArbitraryExecuteEvent.OutputObject>;
|
|
185
|
+
getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
186
|
+
getEvent(key: "SLCInitialized"): TypedContractEvent<SLCInitializedEvent.InputTuple, SLCInitializedEvent.OutputTuple, SLCInitializedEvent.OutputObject>;
|
|
187
|
+
getEvent(key: "ServiceRequested"): TypedContractEvent<ServiceRequestedEvent.InputTuple, ServiceRequestedEvent.OutputTuple, ServiceRequestedEvent.OutputObject>;
|
|
188
|
+
filters: {
|
|
189
|
+
"ArbitraryExecute(uint8,address,bytes,uint256)": TypedContractEvent<ArbitraryExecuteEvent.InputTuple, ArbitraryExecuteEvent.OutputTuple, ArbitraryExecuteEvent.OutputObject>;
|
|
190
|
+
ArbitraryExecute: TypedContractEvent<ArbitraryExecuteEvent.InputTuple, ArbitraryExecuteEvent.OutputTuple, ArbitraryExecuteEvent.OutputObject>;
|
|
191
|
+
"Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
192
|
+
Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
193
|
+
"SLCInitialized(address,string)": TypedContractEvent<SLCInitializedEvent.InputTuple, SLCInitializedEvent.OutputTuple, SLCInitializedEvent.OutputObject>;
|
|
194
|
+
SLCInitialized: TypedContractEvent<SLCInitializedEvent.InputTuple, SLCInitializedEvent.OutputTuple, SLCInitializedEvent.OutputObject>;
|
|
195
|
+
"ServiceRequested(address,uint256,uint256,string)": TypedContractEvent<ServiceRequestedEvent.InputTuple, ServiceRequestedEvent.OutputTuple, ServiceRequestedEvent.OutputObject>;
|
|
196
|
+
ServiceRequested: TypedContractEvent<ServiceRequestedEvent.InputTuple, ServiceRequestedEvent.OutputTuple, ServiceRequestedEvent.OutputObject>;
|
|
197
|
+
};
|
|
198
|
+
}
|
|
@@ -0,0 +1,264 @@
|
|
|
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 SLCCoreFactory {
|
|
4
|
+
type SLCFactoryStorageDataStruct = {
|
|
5
|
+
parametersRegistry: AddressLike;
|
|
6
|
+
slcCoreImplementation: AddressLike;
|
|
7
|
+
};
|
|
8
|
+
type SLCFactoryStorageDataStructOutput = [
|
|
9
|
+
parametersRegistry: string,
|
|
10
|
+
slcCoreImplementation: string
|
|
11
|
+
] & {
|
|
12
|
+
parametersRegistry: string;
|
|
13
|
+
slcCoreImplementation: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export interface SLCCoreFactoryInterface extends Interface {
|
|
17
|
+
getFunction(nameOrSignature: "UPGRADE_INTERFACE_VERSION" | "__SLCFactory_init" | "deploySLC" | "deploySLCWithGovernance" | "getDeployedSLCs" | "getSLCCoreImplementation" | "getSLCFactoryStorage" | "getSalt" | "implementation" | "isSLCCore" | "nonces" | "owner" | "predictSLCAddress" | "proxiableUUID" | "renounceOwnership" | "setSLCCoreImplementation" | "supportsInterface" | "transferOwnership" | "upgradeToAndCall"): FunctionFragment;
|
|
18
|
+
getEvent(nameOrSignatureOrTopic: "Initialized" | "OwnershipTransferred" | "SLCDeployed" | "Upgraded"): EventFragment;
|
|
19
|
+
encodeFunctionData(functionFragment: "UPGRADE_INTERFACE_VERSION", values?: undefined): string;
|
|
20
|
+
encodeFunctionData(functionFragment: "__SLCFactory_init", values: [AddressLike, AddressLike, AddressLike]): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "deploySLC", values: [string]): string;
|
|
22
|
+
encodeFunctionData(functionFragment: "deploySLCWithGovernance", values: [AddressLike, string]): string;
|
|
23
|
+
encodeFunctionData(functionFragment: "getDeployedSLCs", values: [BigNumberish, BigNumberish]): string;
|
|
24
|
+
encodeFunctionData(functionFragment: "getSLCCoreImplementation", values?: undefined): string;
|
|
25
|
+
encodeFunctionData(functionFragment: "getSLCFactoryStorage", values?: undefined): string;
|
|
26
|
+
encodeFunctionData(functionFragment: "getSalt", values: [AddressLike, BigNumberish]): string;
|
|
27
|
+
encodeFunctionData(functionFragment: "implementation", values?: undefined): string;
|
|
28
|
+
encodeFunctionData(functionFragment: "isSLCCore", values: [AddressLike]): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "nonces", values: [AddressLike]): string;
|
|
30
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
31
|
+
encodeFunctionData(functionFragment: "predictSLCAddress", values: [AddressLike, BigNumberish]): string;
|
|
32
|
+
encodeFunctionData(functionFragment: "proxiableUUID", values?: undefined): string;
|
|
33
|
+
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
34
|
+
encodeFunctionData(functionFragment: "setSLCCoreImplementation", values: [AddressLike]): string;
|
|
35
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
37
|
+
encodeFunctionData(functionFragment: "upgradeToAndCall", values: [AddressLike, BytesLike]): string;
|
|
38
|
+
decodeFunctionResult(functionFragment: "UPGRADE_INTERFACE_VERSION", data: BytesLike): Result;
|
|
39
|
+
decodeFunctionResult(functionFragment: "__SLCFactory_init", data: BytesLike): Result;
|
|
40
|
+
decodeFunctionResult(functionFragment: "deploySLC", data: BytesLike): Result;
|
|
41
|
+
decodeFunctionResult(functionFragment: "deploySLCWithGovernance", data: BytesLike): Result;
|
|
42
|
+
decodeFunctionResult(functionFragment: "getDeployedSLCs", data: BytesLike): Result;
|
|
43
|
+
decodeFunctionResult(functionFragment: "getSLCCoreImplementation", data: BytesLike): Result;
|
|
44
|
+
decodeFunctionResult(functionFragment: "getSLCFactoryStorage", data: BytesLike): Result;
|
|
45
|
+
decodeFunctionResult(functionFragment: "getSalt", data: BytesLike): Result;
|
|
46
|
+
decodeFunctionResult(functionFragment: "implementation", data: BytesLike): Result;
|
|
47
|
+
decodeFunctionResult(functionFragment: "isSLCCore", data: BytesLike): Result;
|
|
48
|
+
decodeFunctionResult(functionFragment: "nonces", data: BytesLike): Result;
|
|
49
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
50
|
+
decodeFunctionResult(functionFragment: "predictSLCAddress", data: BytesLike): Result;
|
|
51
|
+
decodeFunctionResult(functionFragment: "proxiableUUID", data: BytesLike): Result;
|
|
52
|
+
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
53
|
+
decodeFunctionResult(functionFragment: "setSLCCoreImplementation", data: BytesLike): Result;
|
|
54
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
55
|
+
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
56
|
+
decodeFunctionResult(functionFragment: "upgradeToAndCall", data: BytesLike): Result;
|
|
57
|
+
}
|
|
58
|
+
export declare namespace InitializedEvent {
|
|
59
|
+
type InputTuple = [version: BigNumberish];
|
|
60
|
+
type OutputTuple = [version: bigint];
|
|
61
|
+
interface OutputObject {
|
|
62
|
+
version: bigint;
|
|
63
|
+
}
|
|
64
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
65
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
66
|
+
type Log = TypedEventLog<Event>;
|
|
67
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
68
|
+
}
|
|
69
|
+
export declare namespace OwnershipTransferredEvent {
|
|
70
|
+
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
71
|
+
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
72
|
+
interface OutputObject {
|
|
73
|
+
previousOwner: string;
|
|
74
|
+
newOwner: string;
|
|
75
|
+
}
|
|
76
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
77
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
78
|
+
type Log = TypedEventLog<Event>;
|
|
79
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
80
|
+
}
|
|
81
|
+
export declare namespace SLCDeployedEvent {
|
|
82
|
+
type InputTuple = [
|
|
83
|
+
slc: AddressLike,
|
|
84
|
+
governance: AddressLike,
|
|
85
|
+
deployer: AddressLike
|
|
86
|
+
];
|
|
87
|
+
type OutputTuple = [slc: string, governance: string, deployer: string];
|
|
88
|
+
interface OutputObject {
|
|
89
|
+
slc: string;
|
|
90
|
+
governance: string;
|
|
91
|
+
deployer: string;
|
|
92
|
+
}
|
|
93
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
94
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
95
|
+
type Log = TypedEventLog<Event>;
|
|
96
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
97
|
+
}
|
|
98
|
+
export declare namespace UpgradedEvent {
|
|
99
|
+
type InputTuple = [implementation: AddressLike];
|
|
100
|
+
type OutputTuple = [implementation: string];
|
|
101
|
+
interface OutputObject {
|
|
102
|
+
implementation: string;
|
|
103
|
+
}
|
|
104
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
105
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
106
|
+
type Log = TypedEventLog<Event>;
|
|
107
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
108
|
+
}
|
|
109
|
+
export interface SLCCoreFactory extends BaseContract {
|
|
110
|
+
contractName: "SLCCoreFactory";
|
|
111
|
+
connect(runner?: ContractRunner | null): SLCCoreFactory;
|
|
112
|
+
waitForDeployment(): Promise<this>;
|
|
113
|
+
interface: SLCCoreFactoryInterface;
|
|
114
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
115
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
116
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
117
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
118
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
119
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
120
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
121
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
122
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
123
|
+
UPGRADE_INTERFACE_VERSION: TypedContractMethod<[], [string], "view">;
|
|
124
|
+
__SLCFactory_init: TypedContractMethod<[
|
|
125
|
+
initialOwner_: AddressLike,
|
|
126
|
+
parametersRegistry_: AddressLike,
|
|
127
|
+
slcImplementation_: AddressLike
|
|
128
|
+
], [
|
|
129
|
+
void
|
|
130
|
+
], "nonpayable">;
|
|
131
|
+
deploySLC: TypedContractMethod<[
|
|
132
|
+
legalDocumentLink_: string
|
|
133
|
+
], [
|
|
134
|
+
string
|
|
135
|
+
], "nonpayable">;
|
|
136
|
+
deploySLCWithGovernance: TypedContractMethod<[
|
|
137
|
+
governance_: AddressLike,
|
|
138
|
+
legalDocumentLink_: string
|
|
139
|
+
], [
|
|
140
|
+
string
|
|
141
|
+
], "nonpayable">;
|
|
142
|
+
getDeployedSLCs: TypedContractMethod<[
|
|
143
|
+
offset_: BigNumberish,
|
|
144
|
+
limit_: BigNumberish
|
|
145
|
+
], [
|
|
146
|
+
string[]
|
|
147
|
+
], "view">;
|
|
148
|
+
getSLCCoreImplementation: TypedContractMethod<[], [string], "view">;
|
|
149
|
+
getSLCFactoryStorage: TypedContractMethod<[
|
|
150
|
+
], [
|
|
151
|
+
SLCCoreFactory.SLCFactoryStorageDataStructOutput
|
|
152
|
+
], "view">;
|
|
153
|
+
getSalt: TypedContractMethod<[
|
|
154
|
+
slcDeployer_: AddressLike,
|
|
155
|
+
nonce_: BigNumberish
|
|
156
|
+
], [
|
|
157
|
+
string
|
|
158
|
+
], "view">;
|
|
159
|
+
implementation: TypedContractMethod<[], [string], "view">;
|
|
160
|
+
isSLCCore: TypedContractMethod<[toCheck_: AddressLike], [boolean], "view">;
|
|
161
|
+
nonces: TypedContractMethod<[owner_: AddressLike], [bigint], "view">;
|
|
162
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
163
|
+
predictSLCAddress: TypedContractMethod<[
|
|
164
|
+
slcDeployer_: AddressLike,
|
|
165
|
+
nonce_: BigNumberish
|
|
166
|
+
], [
|
|
167
|
+
string
|
|
168
|
+
], "view">;
|
|
169
|
+
proxiableUUID: TypedContractMethod<[], [string], "view">;
|
|
170
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
171
|
+
setSLCCoreImplementation: TypedContractMethod<[
|
|
172
|
+
newImplementation_: AddressLike
|
|
173
|
+
], [
|
|
174
|
+
void
|
|
175
|
+
], "nonpayable">;
|
|
176
|
+
supportsInterface: TypedContractMethod<[
|
|
177
|
+
interfaceId_: BytesLike
|
|
178
|
+
], [
|
|
179
|
+
boolean
|
|
180
|
+
], "view">;
|
|
181
|
+
transferOwnership: TypedContractMethod<[
|
|
182
|
+
newOwner: AddressLike
|
|
183
|
+
], [
|
|
184
|
+
void
|
|
185
|
+
], "nonpayable">;
|
|
186
|
+
upgradeToAndCall: TypedContractMethod<[
|
|
187
|
+
newImplementation: AddressLike,
|
|
188
|
+
data: BytesLike
|
|
189
|
+
], [
|
|
190
|
+
void
|
|
191
|
+
], "payable">;
|
|
192
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
193
|
+
getFunction(nameOrSignature: "UPGRADE_INTERFACE_VERSION"): TypedContractMethod<[], [string], "view">;
|
|
194
|
+
getFunction(nameOrSignature: "__SLCFactory_init"): TypedContractMethod<[
|
|
195
|
+
initialOwner_: AddressLike,
|
|
196
|
+
parametersRegistry_: AddressLike,
|
|
197
|
+
slcImplementation_: AddressLike
|
|
198
|
+
], [
|
|
199
|
+
void
|
|
200
|
+
], "nonpayable">;
|
|
201
|
+
getFunction(nameOrSignature: "deploySLC"): TypedContractMethod<[legalDocumentLink_: string], [string], "nonpayable">;
|
|
202
|
+
getFunction(nameOrSignature: "deploySLCWithGovernance"): TypedContractMethod<[
|
|
203
|
+
governance_: AddressLike,
|
|
204
|
+
legalDocumentLink_: string
|
|
205
|
+
], [
|
|
206
|
+
string
|
|
207
|
+
], "nonpayable">;
|
|
208
|
+
getFunction(nameOrSignature: "getDeployedSLCs"): TypedContractMethod<[
|
|
209
|
+
offset_: BigNumberish,
|
|
210
|
+
limit_: BigNumberish
|
|
211
|
+
], [
|
|
212
|
+
string[]
|
|
213
|
+
], "view">;
|
|
214
|
+
getFunction(nameOrSignature: "getSLCCoreImplementation"): TypedContractMethod<[], [string], "view">;
|
|
215
|
+
getFunction(nameOrSignature: "getSLCFactoryStorage"): TypedContractMethod<[
|
|
216
|
+
], [
|
|
217
|
+
SLCCoreFactory.SLCFactoryStorageDataStructOutput
|
|
218
|
+
], "view">;
|
|
219
|
+
getFunction(nameOrSignature: "getSalt"): TypedContractMethod<[
|
|
220
|
+
slcDeployer_: AddressLike,
|
|
221
|
+
nonce_: BigNumberish
|
|
222
|
+
], [
|
|
223
|
+
string
|
|
224
|
+
], "view">;
|
|
225
|
+
getFunction(nameOrSignature: "implementation"): TypedContractMethod<[], [string], "view">;
|
|
226
|
+
getFunction(nameOrSignature: "isSLCCore"): TypedContractMethod<[toCheck_: AddressLike], [boolean], "view">;
|
|
227
|
+
getFunction(nameOrSignature: "nonces"): TypedContractMethod<[owner_: AddressLike], [bigint], "view">;
|
|
228
|
+
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
229
|
+
getFunction(nameOrSignature: "predictSLCAddress"): TypedContractMethod<[
|
|
230
|
+
slcDeployer_: AddressLike,
|
|
231
|
+
nonce_: BigNumberish
|
|
232
|
+
], [
|
|
233
|
+
string
|
|
234
|
+
], "view">;
|
|
235
|
+
getFunction(nameOrSignature: "proxiableUUID"): TypedContractMethod<[], [string], "view">;
|
|
236
|
+
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
237
|
+
getFunction(nameOrSignature: "setSLCCoreImplementation"): TypedContractMethod<[
|
|
238
|
+
newImplementation_: AddressLike
|
|
239
|
+
], [
|
|
240
|
+
void
|
|
241
|
+
], "nonpayable">;
|
|
242
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId_: BytesLike], [boolean], "view">;
|
|
243
|
+
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
244
|
+
getFunction(nameOrSignature: "upgradeToAndCall"): TypedContractMethod<[
|
|
245
|
+
newImplementation: AddressLike,
|
|
246
|
+
data: BytesLike
|
|
247
|
+
], [
|
|
248
|
+
void
|
|
249
|
+
], "payable">;
|
|
250
|
+
getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
251
|
+
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
252
|
+
getEvent(key: "SLCDeployed"): TypedContractEvent<SLCDeployedEvent.InputTuple, SLCDeployedEvent.OutputTuple, SLCDeployedEvent.OutputObject>;
|
|
253
|
+
getEvent(key: "Upgraded"): TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
|
|
254
|
+
filters: {
|
|
255
|
+
"Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
256
|
+
Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
257
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
258
|
+
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
259
|
+
"SLCDeployed(address,address,address)": TypedContractEvent<SLCDeployedEvent.InputTuple, SLCDeployedEvent.OutputTuple, SLCDeployedEvent.OutputObject>;
|
|
260
|
+
SLCDeployed: TypedContractEvent<SLCDeployedEvent.InputTuple, SLCDeployedEvent.OutputTuple, SLCDeployedEvent.OutputObject>;
|
|
261
|
+
"Upgraded(address)": TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
|
|
262
|
+
Upgraded: TypedContractEvent<UpgradedEvent.InputTuple, UpgradedEvent.OutputTuple, UpgradedEvent.OutputObject>;
|
|
263
|
+
};
|
|
264
|
+
}
|