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

34 lines
818 B
TypeScript
Raw Normal View History

2019-02-11 14:56:48 +01:00
import Config from "./models/Config"
2019-02-12 15:07:10 +01:00
import Account from "./ocean/Account"
import DID from "./ocean/DID"
import { Ocean } from "./ocean/Ocean"
import { LoggerInstance as Logger} from "./utils/Logger"
2018-12-17 18:46:29 +01:00
import WebServiceConnectorProvider from "./utils/WebServiceConnectorProvider"
import Keeper from "./keeper/Keeper"
2018-12-17 17:37:36 +01: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
export * from "./ddo/DDO"
export * from "./ddo/MetaData"
export { AgreementTemplate } from "./keeper/contracts/templates"
export { Condition } from "./keeper/contracts/conditions"
2018-09-25 08:30:54 +02:00
export {
Ocean,
2019-02-11 14:56:48 +01:00
2018-11-05 10:01:58 +01:00
Account,
2019-02-11 14:56:48 +01:00
Config,
2018-12-17 22:41:47 +01:00
DID,
Logger,
Keeper,
2019-02-11 14:56:48 +01:00
WebServiceConnectorProvider,
conditions,
templates,
utils,
2018-10-02 10:06:26 +02:00
}