diff --git a/frontend/src/core/hooks/index.js b/frontend/src/core/hooks/index.js index cc2149db..ffc5f257 100644 --- a/frontend/src/core/hooks/index.js +++ b/frontend/src/core/hooks/index.js @@ -37,6 +37,7 @@ export { default as useStripe } from "./useStripe"; export { default as useSubscriptions } from "./useSubscriptions"; export { default as useToast } from "./useToast"; export { default as useTokens } from "./useTokens"; +export { default as useTxInfo } from "./useTxInfo" export { default as useUpdateEntry } from "./useUpdateEntry"; export { default as useUpdateTag } from "./useUpdateTag"; export { default as useUser } from "./useUser"; diff --git a/frontend/src/core/services/index.js b/frontend/src/core/services/index.js index d311e414..3d768330 100644 --- a/frontend/src/core/services/index.js +++ b/frontend/src/core/services/index.js @@ -9,6 +9,7 @@ import * as HumbugService from "./humbug.service"; import * as InvitesService from "./invites.service"; import * as UserService from "./user.service"; import * as SubscriptionsService from "./subscriptions.service"; +import * as TxInfoService from "./txinfo.service" export { SearchService, @@ -22,4 +23,5 @@ export { InvitesService, UserService, SubscriptionsService, + TxInfoService, };