@dappnode/dappnodesdk
Version: 
dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain
13 lines (12 loc) • 428 B
TypeScript
import { CommandModule } from "yargs";
import { CliGlobalOptions } from "../types.js";
interface CliCommandOptions extends CliGlobalOptions {
    type: string;
    provider: string;
}
export declare const next: CommandModule<CliGlobalOptions, CliCommandOptions>;
/**
 * Common handler for CLI and programatic usage
 */
export declare function nextHandler({ type, provider, dir }: CliCommandOptions): Promise<string>;
export {};