1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/src/squid.ts

39 lines
941 B
TypeScript
Raw Normal View History

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'
import { Aquarius } from './aquarius/Aquarius'
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-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 { Condition, ConditionState } from './keeper/contracts/conditions'
2020-01-15 15:58:44 +01:00
export {
Ocean,
Account,
Config,
DID,
Logger,
Keeper,
Aquarius,
conditions,
templates,
utils
}