diff --git a/src/libs/registry.ts b/src/libs/registry.ts index 7d02093e..3d77839a 100644 --- a/src/libs/registry.ts +++ b/src/libs/registry.ts @@ -41,7 +41,7 @@ import type { StakingPool, Validator, } from '@/types/staking'; -import type { PaginatedTxs, Tx, TxResponse } from '@/types/tx'; +import type { PaginatedTxs, Tx, TxResponse } from '@/types'; import semver from 'semver' export interface Request { url: string; diff --git a/src/types/base.ts b/src/types/base.ts index bd3d2707..4c59b2ff 100644 --- a/src/types/base.ts +++ b/src/types/base.ts @@ -1,5 +1,4 @@ import type { Key } from "./common" -import type { Tx } from "./tx" export interface NodeInfo { default_node_info: { diff --git a/src/types/index.ts b/src/types/index.ts index f5c7aeb1..017367d4 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -6,6 +6,6 @@ export * from './common' export * from './distribution' export * from './gov' export * from './staking' -export * from './tx' +export * from './transaction' export * from './ibc' export * from './slashing' \ No newline at end of file diff --git a/src/types/Tx.ts b/src/types/transaction.ts similarity index 100% rename from src/types/Tx.ts rename to src/types/transaction.ts