-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.ts
182 lines (179 loc) · 6.71 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
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 CommitManagerV2 from './abi/CommitManagerV2.json';
import CommitManagerV2U1 from './abi/CommitManagerV2U1.json';
import ContentAsset from './abi/ContentAsset.json';
import ContentAssetStorage from './abi/ContentAssetStorage.json';
import ContentAssetStorageV2 from './abi/ContentAssetStorageV2.json';
import ContentAssetV2 from './abi/ContentAssetV2.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 IProximityScoreFunctionsPair from './abi/IProximityScoreFunctionsPair.json';
import LinearSum from './abi/LinearSum.json';
import Log2PLDSF from './abi/Log2PLDSF.json';
import MultiSigWallet from './abi/MultiSigWallet.json';
import Named from './abi/Named.json';
import NodeOperatorFeesStorage from './abi/NodeOperatorFeesStorage.json';
import ParametersStorage from './abi/ParametersStorage.json';
import Paranet from './abi/Paranet.json';
import ParanetIncentivesPoolFactory from './abi/ParanetIncentivesPoolFactory.json';
import ParanetKnowledgeAssetsRegistry from './abi/ParanetKnowledgeAssetsRegistry.json';
import ParanetKnowledgeMinersRegistry from './abi/ParanetKnowledgeMinersRegistry.json';
import ParanetNeuroIncentivesPool from './abi/ParanetNeuroIncentivesPool.json';
import ParanetServicesRegistry from './abi/ParanetServicesRegistry.json';
import ParanetsRegistry from './abi/ParanetsRegistry.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 ProximityScoringProxy from './abi/ProximityScoringProxy.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 ShardingTableStorageV2 from './abi/ShardingTableStorageV2.json';
import ShardingTableV2 from './abi/ShardingTableV2.json';
import Staking from './abi/Staking.json';
import StakingStorage from './abi/StakingStorage.json';
import StakingV2 from './abi/StakingV2.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: ProximityScoringProxy,
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: IProximityScoreFunctionsPair,
Named,
Versioned,
};
const ABIV2 = {
HubV2,
ContentAssetStorageV2,
ContentAssetV2,
IdentityStorageV2,
CommitManagerV2,
CommitManagerV2U1,
LinearSum,
NodeOperatorFeesStorage,
Paranet,
ParanetIncentivesPoolFactory,
ParanetKnowledgeAssetsRegistry,
ParanetKnowledgeMinersRegistry,
ParanetServicesRegistry,
ParanetsRegistry,
ParanetNeuroIncentivesPool,
ShardingTableV2,
ShardingTableStorageV2,
StakingV2,
};
export {
HubV2 as HubABI,
HubController as HubControllerABI,
ParametersStorage as ParametersStorageABI,
HashingProxy as HashingProxyABI,
ProximityScoringProxy as ScoringProxyABI,
SHA256 as SHA256ABI,
ShardingTableStorageV2 as ShardingTableStorageABI,
ShardingTableV2 as ShardingTableABI,
AssertionStorage as AssertionStorageABI,
Assertion as AssertionABI,
ServiceAgreementStorageV1 as ServiceAgreementStorageV1ABI,
ServiceAgreementStorageV1U1 as ServiceAgreementStorageV1U1ABI,
ServiceAgreementStorageProxy as ServiceAgreementStorageProxyABI,
ServiceAgreementV1 as ServiceAgreementV1ABI,
CommitManagerV2 as CommitManagerV1ABI,
CommitManagerV2U1 as CommitManagerV1U1ABI,
ProofManagerV1 as ProofManagerV1ABI,
ProofManagerV1U1 as ProofManagerV1U1ABI,
ContentAssetStorageV2 as ContentAssetStorageABI,
ContentAssetV2 as ContentAssetABI,
Token as TokenABI,
IdentityStorageV2 as IdentityStorageABI,
Identity as IdentityABI,
LinearSum as LinearSumABI,
Log2PLDSF as Log2PLDSFABI,
NodeOperatorFeesStorage as NodeOperatorFeesStorageABI,
Paranet as ParanetABI,
ParanetIncentivesPoolFactory as ParanetIncentivesPoolFactoryABI,
ParanetKnowledgeAssetsRegistry as ParanetKnowledgeAssetsRegistryABI,
ParanetKnowledgeMinersRegistry as ParanetKnowledgeMinersRegistryABI,
ParanetServicesRegistry as ParanetServicesRegistryABI,
ParanetsRegistry as ParanetsRegistryABI,
ParanetNeuroIncentivesPool as ParanetNeuroIncentivesPoolABI,
ProfileStorage as ProfileStorageABI,
Profile as ProfileABI,
StakingStorage as StakingStorageABI,
StakingV2 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,
IProximityScoreFunctionsPair as IScoreFunctionABI,
Named as NamedABI,
Versioned as VersionedABI,
ABIV1,
ABIV2,
};