Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
emidev98 committed Mar 18, 2024
1 parent 2bc3995 commit 2575a9d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/client/lcd/api/ICAv1API.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { QueryInterchainAccountResponse } from '@terra-money/terra.proto/ibc/app
import { APIParams } from '../APIRequester';
import { LCDClient } from '../LCDClient';
import { BaseAPI } from './BaseAPI';
import { AccAddress } from 'core';
import { AccAddress } from '../../../core';

export class ICAv1API extends BaseAPI {
constructor(public lcd: LCDClient) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/alliance/models/AllianceDelegation.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Dec } from '../../../core/numeric';
import { AccAddress, ValAddress } from 'core/bech32';
import { AccAddress, ValAddress } from '../../../core/bech32';
import { RewardHistory } from './RewardHistory';
import Long from 'long';
import { Coin } from '../../../core/Coin';
Expand Down
2 changes: 1 addition & 1 deletion src/core/alliance/models/AllianceRedelegation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AccAddress, ValAddress } from 'core/bech32';
import { AccAddress, ValAddress } from '../../../core/bech32';
import { Coin } from '../../../core/Coin';

export class AllianceRedelegation {
Expand Down
2 changes: 1 addition & 1 deletion src/core/alliance/models/AllianceUnbondings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ValAddress } from 'core/bech32';
import { ValAddress } from '../../../core/bech32';

export class AllianceUnbonding {
constructor(
Expand Down
3 changes: 1 addition & 2 deletions src/core/alliance/models/AllianceValidator.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ValAddress } from 'core/bech32';
import { Coin } from '../../../core/Coin';
import { ValAddress } from '../../../core/bech32';
import { AllianceValidatorAmount } from './AllianceValidatorAmount';

export class AllianceValidator {
Expand Down
2 changes: 1 addition & 1 deletion src/core/feemarket/v1/models/FeemarketDenomParams.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FeeDenomParam as FeeDenomParam_pb } from '@terra-money/terra.proto/feemarket/feemarket/v1/genesis';
import { Denom } from 'core/Denom';
import { Denom } from '../../../../core/Denom';
import Decimal from 'decimal.js';
import { JSONSerializable } from '../../../../util/json';

Expand Down
2 changes: 1 addition & 1 deletion src/core/gov/v1/Proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import {
MsgFeeDenomParam,
MsgRemoveFeeDenomParam,
} from '../../../core/feemarket';
import { AccAddress } from 'core/bech32';
import { AccAddress } from '../../../core/bech32';

/**
* Stores information pertaining to a submitted proposal, such as its status and time of
Expand Down

0 comments on commit 2575a9d

Please sign in to comment.