flashbots-cli
Version:
Flashbots CLI tool.
17 lines (16 loc) • 414 B
TypeScript
import { Command } from '@oclif/core';
export default class BundleCache extends Command {
static description: string;
static examples: string[];
static args: ({
name: string;
description: string;
required: boolean;
} | {
name: string;
description: string;
required?: undefined;
})[];
catch(e: any): Promise<void>;
run(): Promise<void>;
}