Skip to content

Commit

Permalink
feat(cli): remove unused type
Browse files Browse the repository at this point in the history
  • Loading branch information
tuler committed Sep 18, 2024
1 parent b81edf5 commit b183f7f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions apps/cli/src/baseCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,7 @@ export type Flags<T extends typeof Command> = Interfaces.InferredFlags<
(typeof BaseCommand)["baseFlags"] & T["flags"]
>;
export type Args<T extends typeof Command> = Interfaces.InferredArgs<T["args"]>;

export type AddressBook = Record<string, Address>;
export interface DApp {
address: Address;
blockHash: Address;
blockNumber: number;
transactionHash: Address;
}

export abstract class BaseCommand<T extends typeof Command> extends Command {
protected flags!: Flags<T>;
Expand Down

0 comments on commit b183f7f

Please sign in to comment.