diff --git a/src/keeper/Keeper.ts b/src/keeper/Keeper.ts index e96c08f..6c66ac2 100644 --- a/src/keeper/Keeper.ts +++ b/src/keeper/Keeper.ts @@ -1,4 +1,3 @@ -// import Logger from "../utils/Logger" import OceanAuth from "./contracts/Auth" import AccessConditions from "./contracts/conditions/AccessConditions" import PaymentConditions from "./contracts/conditions/PaymentConditions" @@ -6,6 +5,7 @@ import DIDRegistry from "./contracts/DIDRegistry" import OceanMarket from "./contracts/Market" import ServiceAgreement from "./contracts/ServiceAgreement" import OceanToken from "./contracts/Token" + import Web3Provider from "./Web3Provider" export default class Keeper { diff --git a/src/squid.ts b/src/squid.ts index 6968386..1d550bf 100644 --- a/src/squid.ts +++ b/src/squid.ts @@ -1,4 +1,3 @@ -import EventListener from "./keeper/EventListener" import Account from "./ocean/Account" import Ocean from "./ocean/Ocean" import ServiceAgreement from "./ocean/ServiceAgreements/ServiceAgreement" @@ -7,6 +6,8 @@ import Access from "./ocean/ServiceAgreements/Templates/Access" import FitchainCompute from "./ocean/ServiceAgreements/Templates/FitchainCompute" import Logger from "./utils/Logger" +import EventListener from "./keeper/EventListener" + const Templates = {Access, FitchainCompute} export {