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