UNPKG

o3-dapi-ont

Version:
24 lines (21 loc) 478 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface DeployInput { code: string; name?: string; version?: string; author?: string; email?: string; description?: string; needStorage?: boolean; gasPrice?: string; gasLimit?: string; network: string; broadcastOverride?: boolean; } export function deploy(data: DeployInput): Promise<void> { return sendMessage({ command: Command.deploy, data, }); }