From 187cd8024d81d6fcc00bf0a49d6b4bbfb3d295e5 Mon Sep 17 00:00:00 2001 From: Jason Spafford Date: Wed, 30 Oct 2024 16:20:57 -0700 Subject: [PATCH] Move transactions list command to index --- .../{transactions.ts => transactions/index.ts} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename ironfish-cli/src/commands/wallet/{transactions.ts => transactions/index.ts} (96%) diff --git a/ironfish-cli/src/commands/wallet/transactions.ts b/ironfish-cli/src/commands/wallet/transactions/index.ts similarity index 96% rename from ironfish-cli/src/commands/wallet/transactions.ts rename to ironfish-cli/src/commands/wallet/transactions/index.ts index d38eb61e3b..9b4576c32e 100644 --- a/ironfish-cli/src/commands/wallet/transactions.ts +++ b/ironfish-cli/src/commands/wallet/transactions/index.ts @@ -11,12 +11,12 @@ import { TransactionType, } from '@ironfish/sdk' import { Flags } from '@oclif/core' -import { IronfishCommand } from '../../command' -import { RemoteFlags } from '../../flags' -import * as ui from '../../ui' -import { getAssetsByIDs, useAccount } from '../../utils' -import { extractChainportDataFromTransaction } from '../../utils/chainport' -import { Format, TableCols } from '../../utils/table' +import { IronfishCommand } from '../../../command' +import { RemoteFlags } from '../../../flags' +import * as ui from '../../../ui' +import { getAssetsByIDs, useAccount } from '../../../utils' +import { extractChainportDataFromTransaction } from '../../../utils/chainport' +import { Format, TableCols } from '../../../utils/table' const { sort: _, ...tableFlags } = ui.TableFlags export class TransactionsCommand extends IronfishCommand {