linera-service 0.15.18

Executable for clients (aka CLI wallets), proxy (aka validator frontend) and servers of the Linera protocol.
Documentation
// Copyright (c) Facebook, Inc. and its affiliates.
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

#![recursion_limit = "256"]

//! This module provides the executables needed to operate a Linera service, including a placeholder wallet acting as a GraphQL service for user interfaces.

pub mod cli;
pub mod cli_wrappers;
pub mod config;
pub mod controller;
pub mod node_service;
pub mod project;
pub mod query_subscription;
pub mod storage;
pub mod task_processor;
pub mod util;

pub use linera_wallet_json::PersistentWallet as Wallet;