forked from OriginTrail/dkg-evm-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
143 lines (140 loc) · 4.81 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import AbstractAsset from './abi/AbstractAsset.json';
import Assertion from './abi/Assertion.json';
import AssertionStorage from './abi/AssertionStorage.json';
import CommitManagerV1 from './abi/CommitManagerV1.json';
import CommitManagerV1U1 from './abi/CommitManagerV1U1.json';
import ContentAsset from './abi/ContentAsset.json';
import ContentAssetStorage from './abi/ContentAssetStorage.json';
import ContentAssetStorageV2 from './abi/ContentAssetStorageV2.json';
import ContractStatus from './abi/ContractStatus.json';
import Guardian from './abi/Guardian.json';
import HashingProxy from './abi/HashingProxy.json';
import Hub from './abi/Hub.json';
import HubController from './abi/HubController.json';
import HubDependent from './abi/HubDependent.json';
import HubV2 from './abi/HubV2.json';
import ICustodian from './abi/ICustodian.json';
import Identity from './abi/Identity.json';
import IdentityStorage from './abi/IdentityStorage.json';
import IdentityStorageV2 from './abi/IdentityStorageV2.json';
import IHashFunction from './abi/IHashFunction.json';
import Indexable from './abi/Indexable.json';
import Initializable from './abi/Initializable.json';
import IScoreFunction from './abi/IScoreFunction.json';
import Log2PLDSF from './abi/Log2PLDSF.json';
import MultiSigWallet from './abi/MultiSigWallet.json';
import Named from './abi/Named.json';
import ParametersStorage from './abi/ParametersStorage.json';
import Profile from './abi/Profile.json';
import ProfileStorage from './abi/ProfileStorage.json';
import ProofManagerV1 from './abi/ProofManagerV1.json';
import ProofManagerV1U1 from './abi/ProofManagerV1U1.json';
import ScoringProxy from './abi/ScoringProxy.json';
import ServiceAgreementStorageProxy from './abi/ServiceAgreementStorageProxy.json';
import ServiceAgreementStorageV1 from './abi/ServiceAgreementStorageV1.json';
import ServiceAgreementStorageV1U1 from './abi/ServiceAgreementStorageV1U1.json';
import ServiceAgreementV1 from './abi/ServiceAgreementV1.json';
import SHA256 from './abi/SHA256.json';
import ShardingTable from './abi/ShardingTable.json';
import ShardingTableStorage from './abi/ShardingTableStorage.json';
import Staking from './abi/Staking.json';
import StakingStorage from './abi/StakingStorage.json';
import Token from './abi/Token.json';
import UnfinalizedStateStorage from './abi/UnfinalizedStateStorage.json';
import Versioned from './abi/Versioned.json';
import WhitelistStorage from './abi/WhitelistStorage.json';
const ABIV1 = {
Hub,
HubController,
ParametersStorage,
HashingProxy,
ScoringProxy,
SHA256,
ShardingTableStorage,
ShardingTable,
AssertionStorage,
Assertion,
ServiceAgreementStorageV1,
ServiceAgreementStorageV1U1,
ServiceAgreementStorageProxy,
ServiceAgreementV1,
CommitManagerV1,
CommitManagerV1U1,
ProofManagerV1,
ProofManagerV1U1,
ContentAssetStorage,
ContentAsset,
Token,
IdentityStorage,
Identity,
Log2PLDSF,
ProfileStorage,
Profile,
StakingStorage,
Staking,
UnfinalizedStateStorage,
WhitelistStorage,
MultiSigWallet,
AbstractAsset,
HubDependent,
ContractStatus,
Guardian,
ICustodian,
IHashFunction,
Indexable,
Initializable,
IScoreFunction,
Named,
Versioned,
};
const ABIV2 = {
HubV2,
ContentAssetStorageV2,
IdentityStorageV2,
};
export {
HubV2 as HubABI,
HubController as HubControllerABI,
ParametersStorage as ParametersStorageABI,
HashingProxy as HashingProxyABI,
ScoringProxy as ScoringProxyABI,
SHA256 as SHA256ABI,
ShardingTableStorage as ShardingTableStorageABI,
ShardingTable as ShardingTableABI,
AssertionStorage as AssertionStorageABI,
Assertion as AssertionABI,
ServiceAgreementStorageV1 as ServiceAgreementStorageV1ABI,
ServiceAgreementStorageV1U1 as ServiceAgreementStorageV1U1ABI,
ServiceAgreementStorageProxy as ServiceAgreementStorageProxyABI,
ServiceAgreementV1 as ServiceAgreementV1ABI,
CommitManagerV1 as CommitManagerV1ABI,
CommitManagerV1U1 as CommitManagerV1U1ABI,
ProofManagerV1 as ProofManagerV1ABI,
ProofManagerV1U1 as ProofManagerV1U1ABI,
ContentAssetStorageV2 as ContentAssetStorageABI,
ContentAsset as ContentAssetABI,
Token as TokenABI,
IdentityStorageV2 as IdentityStorageABI,
Identity as IdentityABI,
Log2PLDSF as Log2PLDSFABI,
ProfileStorage as ProfileStorageABI,
Profile as ProfileABI,
StakingStorage as StakingStorageABI,
Staking as StakingABI,
UnfinalizedStateStorage as UnfinalizedStateStorageABI,
WhitelistStorage as WhitelistStorageABI,
MultiSigWallet as MultiSigWalletABI,
AbstractAsset as AbstractAssetABI,
HubDependent as HubDependentABI,
ContractStatus as ContractStatusABI,
Guardian as GuardianABI,
ICustodian as ICustodianABI,
IHashFunction as IHashFunctionABI,
Indexable as IndexableABI,
Initializable as InitializableABI,
IScoreFunction as IScoreFunctionABI,
Named as NamedABI,
Versioned as VersionedABI,
ABIV1,
ABIV2,
};