2019-06-20 00:20:09 +02:00
|
|
|
import Config from './models/Config'
|
|
|
|
import Account from './ocean/Account'
|
|
|
|
import DID from './ocean/DID'
|
|
|
|
import { Ocean } from './ocean/Ocean'
|
|
|
|
import { LoggerInstance as Logger } from './utils/Logger'
|
|
|
|
import Keeper from './keeper/Keeper'
|
2018-12-17 17:37:36 +01:00
|
|
|
|
2019-06-20 00:20:09 +02:00
|
|
|
import * as templates from './keeper/contracts/templates'
|
|
|
|
import * as conditions from './keeper/contracts/conditions'
|
|
|
|
import * as utils from './utils'
|
2019-02-28 21:28:57 +01:00
|
|
|
|
2019-02-11 14:56:48 +01:00
|
|
|
// Exports
|
2019-06-20 00:20:09 +02:00
|
|
|
export * from './ddo/DDO'
|
|
|
|
export * from './ddo/MetaData'
|
2019-02-11 14:56:48 +01:00
|
|
|
|
2019-06-20 00:20:09 +02:00
|
|
|
export { OrderProgressStep, CreateProgressStep } from './ocean/OceanAssets'
|
|
|
|
export {
|
|
|
|
OceanPlatformTechStatus,
|
|
|
|
OceanPlatformTech,
|
|
|
|
OceanPlatformKeeperTech,
|
|
|
|
OceanPlatformVersions
|
|
|
|
} from './ocean/OceanVersions'
|
2019-05-07 13:08:26 +02:00
|
|
|
|
2019-06-20 00:20:09 +02:00
|
|
|
export { AgreementTemplate } from './keeper/contracts/templates'
|
|
|
|
export { Condition, ConditionState } from './keeper/contracts/conditions'
|
2018-11-12 12:09:42 +01:00
|
|
|
|
2019-09-09 12:18:54 +02:00
|
|
|
export { Ocean, Account, Config, DID, Logger, Keeper, conditions, templates, utils }
|