[][src]Struct grin_wallet_config::types::WalletConfig

pub struct WalletConfig {
    pub chain_type: Option<ChainTypes>,
    pub api_listen_interface: String,
    pub api_listen_port: u16,
    pub owner_api_listen_port: Option<u16>,
    pub api_secret_path: Option<String>,
    pub node_api_secret_path: Option<String>,
    pub check_node_api_http_addr: String,
    pub owner_api_include_foreign: Option<bool>,
    pub data_file_dir: String,
    pub no_commit_cache: Option<bool>,
    pub tls_certificate_file: Option<String>,
    pub tls_certificate_key: Option<String>,
    pub dark_background_color_scheme: Option<bool>,
    pub keybase_notify_ttl: Option<u16>,
}

Command-line wallet configuration

Fields

chain_type: Option<ChainTypes>

Chain parameters (default to Mainnet if none at the moment)

api_listen_interface: String

The api interface/ip_address that this api server (i.e. this wallet) will run by default this is 127.0.0.1 (and will not accept connections from external clients)

api_listen_port: u16

The port this wallet will run on

owner_api_listen_port: Option<u16>

The port this wallet's owner API will run on

api_secret_path: Option<String>

Location of the secret for basic auth on the Owner API

node_api_secret_path: Option<String>

Location of the node api secret for basic auth on the Grin API

check_node_api_http_addr: String

The api address of a running server node against which transaction inputs will be checked during send

owner_api_include_foreign: Option<bool>

Whether to include foreign API endpoints on the Owner API

data_file_dir: String

The directory in which wallet files are stored

no_commit_cache: Option<bool>

If Some(true), don't cache commits alongside output data speed improvement, but your commits are in the database

tls_certificate_file: Option<String>

TLS certificate file

tls_certificate_key: Option<String>

TLS certificate private key file

dark_background_color_scheme: Option<bool>

Whether to use the black background color scheme for command line if enabled, wallet command output color will be suitable for black background terminal

keybase_notify_ttl: Option<u16>

The exploding lifetime (minutes) for keybase notification on coins received

Methods

impl WalletConfig[src]

pub fn api_listen_addr(&self) -> String[src]

API Listen address

pub fn default_owner_api_listen_port() -> u16[src]

Default listener port

pub fn owner_api_listen_port(&self) -> u16[src]

Use value from config file, defaulting to sensible value if missing.

pub fn owner_api_listen_addr(&self) -> String[src]

Owner API listen address

Trait Implementations

impl Clone for WalletConfig[src]

impl Debug for WalletConfig[src]

impl Default for WalletConfig[src]

impl<'de> Deserialize<'de> for WalletConfig[src]

impl PartialEq<WalletConfig> for WalletConfig[src]

impl Serialize for WalletConfig[src]

impl StructuralPartialEq for WalletConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,