@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
|
@@ -1,397 +0,0 @@
|
|
|
1
|
-
/* Autogenerated file. Do not edit manually. */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import type {
|
|
5
|
-
BaseContract,
|
|
6
|
-
BigNumberish,
|
|
7
|
-
BytesLike,
|
|
8
|
-
FunctionFragment,
|
|
9
|
-
Result,
|
|
10
|
-
Interface,
|
|
11
|
-
EventFragment,
|
|
12
|
-
AddressLike,
|
|
13
|
-
ContractRunner,
|
|
14
|
-
ContractMethod,
|
|
15
|
-
Listener,
|
|
16
|
-
} from "ethers";
|
|
17
|
-
import type {
|
|
18
|
-
TypedContractEvent,
|
|
19
|
-
TypedDeferredTopicFilter,
|
|
20
|
-
TypedEventLog,
|
|
21
|
-
TypedLogDescription,
|
|
22
|
-
TypedListener,
|
|
23
|
-
TypedContractMethod,
|
|
24
|
-
} from "../../common";
|
|
25
|
-
|
|
26
|
-
export declare namespace SLCCore {
|
|
27
|
-
export type SLCCoreStorageStruct = {
|
|
28
|
-
governance: AddressLike;
|
|
29
|
-
slcCreator: AddressLike;
|
|
30
|
-
slcCreationTimestamp: BigNumberish;
|
|
31
|
-
legalDocumentLink: string;
|
|
32
|
-
data: BytesLike;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export type SLCCoreStorageStructOutput = [
|
|
36
|
-
governance: string,
|
|
37
|
-
slcCreator: string,
|
|
38
|
-
slcCreationTimestamp: bigint,
|
|
39
|
-
legalDocumentLink: string,
|
|
40
|
-
data: string
|
|
41
|
-
] & {
|
|
42
|
-
governance: string;
|
|
43
|
-
slcCreator: string;
|
|
44
|
-
slcCreationTimestamp: bigint;
|
|
45
|
-
legalDocumentLink: string;
|
|
46
|
-
data: string;
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export interface SLCCoreInterface extends Interface {
|
|
51
|
-
getFunction(
|
|
52
|
-
nameOrSignature:
|
|
53
|
-
| "__SLCCore_init"
|
|
54
|
-
| "arbitraryExecute"
|
|
55
|
-
| "getSLCCoreStorage"
|
|
56
|
-
| "requestService"
|
|
57
|
-
| "supportsInterface"
|
|
58
|
-
): FunctionFragment;
|
|
59
|
-
|
|
60
|
-
getEvent(
|
|
61
|
-
nameOrSignatureOrTopic:
|
|
62
|
-
| "ArbitraryExecute"
|
|
63
|
-
| "Initialized"
|
|
64
|
-
| "SLCInitialized"
|
|
65
|
-
| "ServiceRequested"
|
|
66
|
-
): EventFragment;
|
|
67
|
-
|
|
68
|
-
encodeFunctionData(
|
|
69
|
-
functionFragment: "__SLCCore_init",
|
|
70
|
-
values: [AddressLike, AddressLike, string, BytesLike]
|
|
71
|
-
): string;
|
|
72
|
-
encodeFunctionData(
|
|
73
|
-
functionFragment: "arbitraryExecute",
|
|
74
|
-
values: [BigNumberish, AddressLike, BytesLike, BigNumberish]
|
|
75
|
-
): string;
|
|
76
|
-
encodeFunctionData(
|
|
77
|
-
functionFragment: "getSLCCoreStorage",
|
|
78
|
-
values?: undefined
|
|
79
|
-
): string;
|
|
80
|
-
encodeFunctionData(
|
|
81
|
-
functionFragment: "requestService",
|
|
82
|
-
values: [BigNumberish, BigNumberish, string, BytesLike]
|
|
83
|
-
): string;
|
|
84
|
-
encodeFunctionData(
|
|
85
|
-
functionFragment: "supportsInterface",
|
|
86
|
-
values: [BytesLike]
|
|
87
|
-
): string;
|
|
88
|
-
|
|
89
|
-
decodeFunctionResult(
|
|
90
|
-
functionFragment: "__SLCCore_init",
|
|
91
|
-
data: BytesLike
|
|
92
|
-
): Result;
|
|
93
|
-
decodeFunctionResult(
|
|
94
|
-
functionFragment: "arbitraryExecute",
|
|
95
|
-
data: BytesLike
|
|
96
|
-
): Result;
|
|
97
|
-
decodeFunctionResult(
|
|
98
|
-
functionFragment: "getSLCCoreStorage",
|
|
99
|
-
data: BytesLike
|
|
100
|
-
): Result;
|
|
101
|
-
decodeFunctionResult(
|
|
102
|
-
functionFragment: "requestService",
|
|
103
|
-
data: BytesLike
|
|
104
|
-
): Result;
|
|
105
|
-
decodeFunctionResult(
|
|
106
|
-
functionFragment: "supportsInterface",
|
|
107
|
-
data: BytesLike
|
|
108
|
-
): Result;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
export namespace ArbitraryExecuteEvent {
|
|
112
|
-
export type InputTuple = [
|
|
113
|
-
operation: BigNumberish,
|
|
114
|
-
to: AddressLike,
|
|
115
|
-
data: BytesLike,
|
|
116
|
-
value: BigNumberish
|
|
117
|
-
];
|
|
118
|
-
export type OutputTuple = [
|
|
119
|
-
operation: bigint,
|
|
120
|
-
to: string,
|
|
121
|
-
data: string,
|
|
122
|
-
value: bigint
|
|
123
|
-
];
|
|
124
|
-
export interface OutputObject {
|
|
125
|
-
operation: bigint;
|
|
126
|
-
to: string;
|
|
127
|
-
data: string;
|
|
128
|
-
value: bigint;
|
|
129
|
-
}
|
|
130
|
-
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
131
|
-
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
132
|
-
export type Log = TypedEventLog<Event>;
|
|
133
|
-
export type LogDescription = TypedLogDescription<Event>;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
export namespace InitializedEvent {
|
|
137
|
-
export type InputTuple = [version: BigNumberish];
|
|
138
|
-
export type OutputTuple = [version: bigint];
|
|
139
|
-
export interface OutputObject {
|
|
140
|
-
version: bigint;
|
|
141
|
-
}
|
|
142
|
-
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
143
|
-
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
144
|
-
export type Log = TypedEventLog<Event>;
|
|
145
|
-
export type LogDescription = TypedLogDescription<Event>;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
export namespace SLCInitializedEvent {
|
|
149
|
-
export type InputTuple = [creator: AddressLike, legalDocumentLink: string];
|
|
150
|
-
export type OutputTuple = [creator: string, legalDocumentLink: string];
|
|
151
|
-
export interface OutputObject {
|
|
152
|
-
creator: string;
|
|
153
|
-
legalDocumentLink: string;
|
|
154
|
-
}
|
|
155
|
-
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
156
|
-
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
157
|
-
export type Log = TypedEventLog<Event>;
|
|
158
|
-
export type LogDescription = TypedLogDescription<Event>;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
export namespace ServiceRequestedEvent {
|
|
162
|
-
export type InputTuple = [
|
|
163
|
-
requester: AddressLike,
|
|
164
|
-
serviceFee: BigNumberish,
|
|
165
|
-
neutralsNumber: BigNumberish,
|
|
166
|
-
additionalLink: string
|
|
167
|
-
];
|
|
168
|
-
export type OutputTuple = [
|
|
169
|
-
requester: string,
|
|
170
|
-
serviceFee: bigint,
|
|
171
|
-
neutralsNumber: bigint,
|
|
172
|
-
additionalLink: string
|
|
173
|
-
];
|
|
174
|
-
export interface OutputObject {
|
|
175
|
-
requester: string;
|
|
176
|
-
serviceFee: bigint;
|
|
177
|
-
neutralsNumber: bigint;
|
|
178
|
-
additionalLink: string;
|
|
179
|
-
}
|
|
180
|
-
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
181
|
-
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
182
|
-
export type Log = TypedEventLog<Event>;
|
|
183
|
-
export type LogDescription = TypedLogDescription<Event>;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
export interface SLCCore extends BaseContract {
|
|
187
|
-
contractName: "SLCCore";
|
|
188
|
-
|
|
189
|
-
connect(runner?: ContractRunner | null): SLCCore;
|
|
190
|
-
waitForDeployment(): Promise<this>;
|
|
191
|
-
|
|
192
|
-
interface: SLCCoreInterface;
|
|
193
|
-
|
|
194
|
-
queryFilter<TCEvent extends TypedContractEvent>(
|
|
195
|
-
event: TCEvent,
|
|
196
|
-
fromBlockOrBlockhash?: string | number | undefined,
|
|
197
|
-
toBlock?: string | number | undefined
|
|
198
|
-
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
199
|
-
queryFilter<TCEvent extends TypedContractEvent>(
|
|
200
|
-
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
201
|
-
fromBlockOrBlockhash?: string | number | undefined,
|
|
202
|
-
toBlock?: string | number | undefined
|
|
203
|
-
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
204
|
-
|
|
205
|
-
on<TCEvent extends TypedContractEvent>(
|
|
206
|
-
event: TCEvent,
|
|
207
|
-
listener: TypedListener<TCEvent>
|
|
208
|
-
): Promise<this>;
|
|
209
|
-
on<TCEvent extends TypedContractEvent>(
|
|
210
|
-
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
211
|
-
listener: TypedListener<TCEvent>
|
|
212
|
-
): Promise<this>;
|
|
213
|
-
|
|
214
|
-
once<TCEvent extends TypedContractEvent>(
|
|
215
|
-
event: TCEvent,
|
|
216
|
-
listener: TypedListener<TCEvent>
|
|
217
|
-
): Promise<this>;
|
|
218
|
-
once<TCEvent extends TypedContractEvent>(
|
|
219
|
-
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
220
|
-
listener: TypedListener<TCEvent>
|
|
221
|
-
): Promise<this>;
|
|
222
|
-
|
|
223
|
-
listeners<TCEvent extends TypedContractEvent>(
|
|
224
|
-
event: TCEvent
|
|
225
|
-
): Promise<Array<TypedListener<TCEvent>>>;
|
|
226
|
-
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
227
|
-
removeAllListeners<TCEvent extends TypedContractEvent>(
|
|
228
|
-
event?: TCEvent
|
|
229
|
-
): Promise<this>;
|
|
230
|
-
|
|
231
|
-
__SLCCore_init: TypedContractMethod<
|
|
232
|
-
[
|
|
233
|
-
creator_: AddressLike,
|
|
234
|
-
governance_: AddressLike,
|
|
235
|
-
legalDocumentLink_: string,
|
|
236
|
-
data_: BytesLike
|
|
237
|
-
],
|
|
238
|
-
[void],
|
|
239
|
-
"nonpayable"
|
|
240
|
-
>;
|
|
241
|
-
|
|
242
|
-
arbitraryExecute: TypedContractMethod<
|
|
243
|
-
[
|
|
244
|
-
operation_: BigNumberish,
|
|
245
|
-
to_: AddressLike,
|
|
246
|
-
data_: BytesLike,
|
|
247
|
-
value_: BigNumberish
|
|
248
|
-
],
|
|
249
|
-
[boolean],
|
|
250
|
-
"nonpayable"
|
|
251
|
-
>;
|
|
252
|
-
|
|
253
|
-
getSLCCoreStorage: TypedContractMethod<
|
|
254
|
-
[],
|
|
255
|
-
[SLCCore.SLCCoreStorageStructOutput],
|
|
256
|
-
"view"
|
|
257
|
-
>;
|
|
258
|
-
|
|
259
|
-
requestService: TypedContractMethod<
|
|
260
|
-
[
|
|
261
|
-
serviceFee_: BigNumberish,
|
|
262
|
-
neutralsNumber_: BigNumberish,
|
|
263
|
-
additionalLink_: string,
|
|
264
|
-
data_: BytesLike
|
|
265
|
-
],
|
|
266
|
-
[boolean],
|
|
267
|
-
"payable"
|
|
268
|
-
>;
|
|
269
|
-
|
|
270
|
-
supportsInterface: TypedContractMethod<
|
|
271
|
-
[interfaceId: BytesLike],
|
|
272
|
-
[boolean],
|
|
273
|
-
"view"
|
|
274
|
-
>;
|
|
275
|
-
|
|
276
|
-
getFunction<T extends ContractMethod = ContractMethod>(
|
|
277
|
-
key: string | FunctionFragment
|
|
278
|
-
): T;
|
|
279
|
-
|
|
280
|
-
getFunction(
|
|
281
|
-
nameOrSignature: "__SLCCore_init"
|
|
282
|
-
): TypedContractMethod<
|
|
283
|
-
[
|
|
284
|
-
creator_: AddressLike,
|
|
285
|
-
governance_: AddressLike,
|
|
286
|
-
legalDocumentLink_: string,
|
|
287
|
-
data_: BytesLike
|
|
288
|
-
],
|
|
289
|
-
[void],
|
|
290
|
-
"nonpayable"
|
|
291
|
-
>;
|
|
292
|
-
getFunction(
|
|
293
|
-
nameOrSignature: "arbitraryExecute"
|
|
294
|
-
): TypedContractMethod<
|
|
295
|
-
[
|
|
296
|
-
operation_: BigNumberish,
|
|
297
|
-
to_: AddressLike,
|
|
298
|
-
data_: BytesLike,
|
|
299
|
-
value_: BigNumberish
|
|
300
|
-
],
|
|
301
|
-
[boolean],
|
|
302
|
-
"nonpayable"
|
|
303
|
-
>;
|
|
304
|
-
getFunction(
|
|
305
|
-
nameOrSignature: "getSLCCoreStorage"
|
|
306
|
-
): TypedContractMethod<[], [SLCCore.SLCCoreStorageStructOutput], "view">;
|
|
307
|
-
getFunction(
|
|
308
|
-
nameOrSignature: "requestService"
|
|
309
|
-
): TypedContractMethod<
|
|
310
|
-
[
|
|
311
|
-
serviceFee_: BigNumberish,
|
|
312
|
-
neutralsNumber_: BigNumberish,
|
|
313
|
-
additionalLink_: string,
|
|
314
|
-
data_: BytesLike
|
|
315
|
-
],
|
|
316
|
-
[boolean],
|
|
317
|
-
"payable"
|
|
318
|
-
>;
|
|
319
|
-
getFunction(
|
|
320
|
-
nameOrSignature: "supportsInterface"
|
|
321
|
-
): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
322
|
-
|
|
323
|
-
getEvent(
|
|
324
|
-
key: "ArbitraryExecute"
|
|
325
|
-
): TypedContractEvent<
|
|
326
|
-
ArbitraryExecuteEvent.InputTuple,
|
|
327
|
-
ArbitraryExecuteEvent.OutputTuple,
|
|
328
|
-
ArbitraryExecuteEvent.OutputObject
|
|
329
|
-
>;
|
|
330
|
-
getEvent(
|
|
331
|
-
key: "Initialized"
|
|
332
|
-
): TypedContractEvent<
|
|
333
|
-
InitializedEvent.InputTuple,
|
|
334
|
-
InitializedEvent.OutputTuple,
|
|
335
|
-
InitializedEvent.OutputObject
|
|
336
|
-
>;
|
|
337
|
-
getEvent(
|
|
338
|
-
key: "SLCInitialized"
|
|
339
|
-
): TypedContractEvent<
|
|
340
|
-
SLCInitializedEvent.InputTuple,
|
|
341
|
-
SLCInitializedEvent.OutputTuple,
|
|
342
|
-
SLCInitializedEvent.OutputObject
|
|
343
|
-
>;
|
|
344
|
-
getEvent(
|
|
345
|
-
key: "ServiceRequested"
|
|
346
|
-
): TypedContractEvent<
|
|
347
|
-
ServiceRequestedEvent.InputTuple,
|
|
348
|
-
ServiceRequestedEvent.OutputTuple,
|
|
349
|
-
ServiceRequestedEvent.OutputObject
|
|
350
|
-
>;
|
|
351
|
-
|
|
352
|
-
filters: {
|
|
353
|
-
"ArbitraryExecute(uint8,address,bytes,uint256)": TypedContractEvent<
|
|
354
|
-
ArbitraryExecuteEvent.InputTuple,
|
|
355
|
-
ArbitraryExecuteEvent.OutputTuple,
|
|
356
|
-
ArbitraryExecuteEvent.OutputObject
|
|
357
|
-
>;
|
|
358
|
-
ArbitraryExecute: TypedContractEvent<
|
|
359
|
-
ArbitraryExecuteEvent.InputTuple,
|
|
360
|
-
ArbitraryExecuteEvent.OutputTuple,
|
|
361
|
-
ArbitraryExecuteEvent.OutputObject
|
|
362
|
-
>;
|
|
363
|
-
|
|
364
|
-
"Initialized(uint64)": TypedContractEvent<
|
|
365
|
-
InitializedEvent.InputTuple,
|
|
366
|
-
InitializedEvent.OutputTuple,
|
|
367
|
-
InitializedEvent.OutputObject
|
|
368
|
-
>;
|
|
369
|
-
Initialized: TypedContractEvent<
|
|
370
|
-
InitializedEvent.InputTuple,
|
|
371
|
-
InitializedEvent.OutputTuple,
|
|
372
|
-
InitializedEvent.OutputObject
|
|
373
|
-
>;
|
|
374
|
-
|
|
375
|
-
"SLCInitialized(address,string)": TypedContractEvent<
|
|
376
|
-
SLCInitializedEvent.InputTuple,
|
|
377
|
-
SLCInitializedEvent.OutputTuple,
|
|
378
|
-
SLCInitializedEvent.OutputObject
|
|
379
|
-
>;
|
|
380
|
-
SLCInitialized: TypedContractEvent<
|
|
381
|
-
SLCInitializedEvent.InputTuple,
|
|
382
|
-
SLCInitializedEvent.OutputTuple,
|
|
383
|
-
SLCInitializedEvent.OutputObject
|
|
384
|
-
>;
|
|
385
|
-
|
|
386
|
-
"ServiceRequested(address,uint256,uint256,string)": TypedContractEvent<
|
|
387
|
-
ServiceRequestedEvent.InputTuple,
|
|
388
|
-
ServiceRequestedEvent.OutputTuple,
|
|
389
|
-
ServiceRequestedEvent.OutputObject
|
|
390
|
-
>;
|
|
391
|
-
ServiceRequested: TypedContractEvent<
|
|
392
|
-
ServiceRequestedEvent.InputTuple,
|
|
393
|
-
ServiceRequestedEvent.OutputTuple,
|
|
394
|
-
ServiceRequestedEvent.OutputObject
|
|
395
|
-
>;
|
|
396
|
-
};
|
|
397
|
-
}
|