navskit
Version:
Deploy TypeScript logic on Ethereum. Includes core library, CLI tools, and utilities.
15 lines (14 loc) • 350 B
TypeScript
import { Account } from 'viem';
interface OperatorOptions {
account?: Account;
rpcUrl: string;
verbose?: boolean;
tempDir?: string;
local?: boolean;
watch?: boolean;
}
/**
* Runs the central NAVS operator that listens for all tasks
*/
export declare function runOperator(options: OperatorOptions): Promise<void>;
export {};