Skip to content

Commit

Permalink
fix: circular dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 committed Sep 16, 2024
1 parent 27a207f commit 2439cec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 50 deletions.
49 changes: 2 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/http-sdk/src/api-http/api-http.service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HttpService } from "@akashnetwork/http-sdk";
import { HttpService } from "../http/http.service";
import { AxiosRequestConfig, AxiosResponse } from "axios";

export interface ApiOutput<T> {
Expand Down
2 changes: 1 addition & 1 deletion packages/http-sdk/src/tx-http/tx-http.service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ApiHttpService } from "@akashnetwork/http-sdk";
import { ApiHttpService } from "../api-http/api-http.service";
import type { Registry } from "@cosmjs/proto-signing";
import type { EncodeObject } from "@cosmjs/proto-signing/build/registry";
import type { DeliverTxResponse } from "@cosmjs/stargate";
Expand Down
3 changes: 2 additions & 1 deletion packages/http-sdk/src/user-http/user-http.service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ApiOutput, HttpService } from "@akashnetwork/http-sdk";
import { ApiOutput } from "../api-http/api-http.service";
import { HttpService } from "../http/http.service";
import type { AxiosRequestConfig } from "axios";
import memoize from "lodash/memoize";

Expand Down

0 comments on commit 2439cec

Please sign in to comment.