neptune-core-cli 0.9.0

cli client for interfacing with neptune-core
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::path::PathBuf;

use clap::Subcommand;

/// represents data format of input to claim-utxo
#[derive(Debug, Clone, Subcommand)]
pub(crate) enum ClaimUtxoFormat {
    /// reads a utxo-transfer json file
    File {
        /// path to the file
        path: PathBuf,
    },
    Raw {
        /// The encrypted UTXO notification payload.
        ciphertext: String,
    },
}