diff --git a/src/services/OrionBlockchain/index.ts b/src/services/OrionBlockchain/index.ts index 86a7b40..37987b8 100644 --- a/src/services/OrionBlockchain/index.ts +++ b/src/services/OrionBlockchain/index.ts @@ -10,12 +10,12 @@ import { userEarnedSchema, PairStatusEnum, pairStatusSchema, + CFDContractsSchema, } from './schemas'; import redeemOrderSchema from '../OrionAggregator/schemas/redeemOrderSchema'; import { sourceAtomicHistorySchema, targetAtomicHistorySchema } from './schemas/atomicHistorySchema'; import { makePartial } from '../../utils'; import { networkCodes } from '../../constants'; -import CFDContractsSchema from './schemas/CFDContractsSchema'; interface IAdminAuthHeaders { auth: string; diff --git a/src/services/OrionBlockchain/schemas/index.ts b/src/services/OrionBlockchain/schemas/index.ts index 939bcf9..7fd1c5f 100644 --- a/src/services/OrionBlockchain/schemas/index.ts +++ b/src/services/OrionBlockchain/schemas/index.ts @@ -12,3 +12,4 @@ export { default as atomicSummarySchema } from './atomicSummarySchema'; export { default as poolsLpAndStakedSchema } from './poolsLpAndStakedSchema'; export { default as userVotesSchema } from './userVotesSchema'; export { default as userEarnedSchema } from './userEarnedSchema'; +export { default as CFDContractsSchema } from './CFDContractsSchema';