linera-service 0.15.9

Executable for clients (aka CLI wallets), proxy (aka validator frontend) and servers of the Linera protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Facebook, Inc. and its affiliates.
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

//! 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 storage;
pub mod task_processor;
pub mod util;
pub mod wallet;
pub use wallet::Wallet;