[][src]Function casper_client::send_deploy_file

pub fn send_deploy_file(
    maybe_rpc_id: &str,
    node_address: &str,
    verbose: bool,
    input_path: &str
) -> Result<JsonRpc, Error>

Reads a previously-saved Deploy from a file and sends it to the network for execution.

  • maybe_rpc_id is the JSON-RPC identifier, applied to the request and returned in the response. If it can be parsed as an i64 it will be used as a JSON integer. If empty, a random i64 will be assigned. Otherwise the provided string will be used verbatim.
  • node_address is the hostname or IP and port of the node on which the HTTP service is running, e.g. "http://127.0.0.1:7777".
  • When verbose is true, the JSON-RPC request will be printed to stdout.
  • input_path specifies the path to the previously-saved Deploy file.