mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
38 lines
945 B
TypeScript
38 lines
945 B
TypeScript
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 * as templates from './keeper/contracts/templates'
|
|
import * as conditions from './keeper/contracts/conditions'
|
|
import * as utils from './utils'
|
|
|
|
// Exports
|
|
export * from './ddo/DDO'
|
|
export * from './ddo/MetaData'
|
|
|
|
export { OrderProgressStep, CreateProgressStep } from './ocean/OceanAssets'
|
|
export {
|
|
OceanPlatformTechStatus,
|
|
OceanPlatformTech,
|
|
OceanPlatformKeeperTech,
|
|
OceanPlatformVersions
|
|
} from './ocean/OceanVersions'
|
|
|
|
export { AgreementTemplate } from './keeper/contracts/templates'
|
|
export { Condition, ConditionState } from './keeper/contracts/conditions'
|
|
|
|
export {
|
|
Ocean,
|
|
Account,
|
|
Config,
|
|
DID,
|
|
Logger,
|
|
Keeper,
|
|
conditions,
|
|
templates,
|
|
utils
|
|
}
|