rename tx.ts

This commit is contained in:
liangping 2023-05-21 18:20:49 +08:00
parent a07fd54cb3
commit 03abd9c75a
4 changed files with 2 additions and 3 deletions

View File

@ -41,7 +41,7 @@ import type {
StakingPool, StakingPool,
Validator, Validator,
} from '@/types/staking'; } from '@/types/staking';
import type { PaginatedTxs, Tx, TxResponse } from '@/types/tx'; import type { PaginatedTxs, Tx, TxResponse } from '@/types';
import semver from 'semver' import semver from 'semver'
export interface Request<T> { export interface Request<T> {
url: string; url: string;

View File

@ -1,5 +1,4 @@
import type { Key } from "./common" import type { Key } from "./common"
import type { Tx } from "./tx"
export interface NodeInfo { export interface NodeInfo {
default_node_info: { default_node_info: {

View File

@ -6,6 +6,6 @@ export * from './common'
export * from './distribution' export * from './distribution'
export * from './gov' export * from './gov'
export * from './staking' export * from './staking'
export * from './tx' export * from './transaction'
export * from './ibc' export * from './ibc'
export * from './slashing' export * from './slashing'