Skip to content

Commit

Permalink
chore: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
shane-moore committed Jan 1, 2024
1 parent fc0e3b6 commit 1a6792d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion layer/providers/cacheApi/base.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios, { AxiosInstance } from 'axios'
import { Pagination, TotalSupply } from '@injectivelabs/sdk-ts'
import { bankApi } from '@/Service'
import { bankApi } from '../../Service'

export class BaseCacheApi {
client: AxiosInstance
Expand Down
2 changes: 1 addition & 1 deletion layer/providers/cacheApi/derivative.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { BaseCacheApi } from './base'
import {
indexerDerivativesApi,
indexerRestDerivativeChronosApi
} from '@/Service'
} from '../../Service'

export class DerivativeCacheApi extends BaseCacheApi {
async fetchMarkets(props?: { marketStatus?: string }) {
Expand Down
2 changes: 1 addition & 1 deletion layer/providers/cacheApi/staking.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Pagination, Validator } from '@injectivelabs/sdk-ts'
import { BaseCacheApi } from './base'
import { stakingApi } from '@/Service'
import { stakingApi } from '../../Service'

export class StakingCacheApi extends BaseCacheApi {
async fetchValidators(_params?: any) {
Expand Down
2 changes: 1 addition & 1 deletion layer/providers/cacheApi/token.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Pagination, TotalSupply } from '@injectivelabs/sdk-ts'
import { BaseCacheApi } from './base'
import { bankApi } from '@/Service'
import { bankApi } from '../../Service'

export class TokenCacheApi extends BaseCacheApi {
async fetchTotalSupply(_params: any) {
Expand Down

0 comments on commit 1a6792d

Please sign in to comment.