-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.ts
79 lines (78 loc) · 3.48 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
import Ask from './abi/Ask.json';
import AskStorage from './abi/AskStorage.json';
import Chronos from './abi/Chronos.json';
import ContractStatus from './abi/ContractStatus.json';
import EpochStorage from './abi/EpochStorage.json';
import Guardian from './abi/Guardian.json';
import Hub from './abi/Hub.json';
import HubDependent from './abi/HubDependent.json';
import IContractStatus from './abi/IContractStatus.json';
import ICustodian from './abi/ICustodian.json';
import Identity from './abi/Identity.json';
import IdentityStorage from './abi/IdentityStorage.json';
import IIndexable from './abi/IIndexable.json';
import IInitializable from './abi/IInitializable.json';
import INamed from './abi/INamed.json';
import IPaymaster from './abi/IPaymaster.json';
import IVersioned from './abi/IVersioned.json';
import KnowledgeCollection from './abi/KnowledgeCollection.json';
import KnowledgeCollectionStorage from './abi/KnowledgeCollectionStorage.json';
import Migrator from './abi/Migrator.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 Paymaster from './abi/Paymaster.json';
import PaymasterManager from './abi/PaymasterManager.json';
import Profile from './abi/Profile.json';
import ProfileStorage from './abi/ProfileStorage.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 WhitelistStorage from './abi/WhitelistStorage.json';
export {
Hub as HubABI,
KnowledgeCollection as KnowledgeCollectionABI,
KnowledgeCollectionStorage as KnowledgeCollectionStorageABI,
ParametersStorage as ParametersStorageABI,
ShardingTableStorage as ShardingTableStorageABI,
ShardingTable as ShardingTableABI,
Token as TokenABI,
IdentityStorage as IdentityStorageABI,
Identity as IdentityABI,
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,
Staking as StakingABI,
WhitelistStorage as WhitelistStorageABI,
Ask as AskABI,
AskStorage as AskStorageABI,
Chronos as ChronosABI,
EpochStorage as EpochStorageABI,
PaymasterManager as PaymasterManagerABI,
Paymaster as PaymasterABI,
Migrator as MigratorABI,
HubDependent as HubDependentABI,
ContractStatus as ContractStatusABI,
Guardian as GuardianABI,
ICustodian as ICustodianABI,
IIndexable as IIndexableABI,
IInitializable as IInitializableABI,
INamed as INamedABI,
IVersioned as IVersionedABI,
IContractStatus as IContractStatusABI,
IPaymaster as IPaymasterABI,
};