linera-service 0.15.0

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
// 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.

#![deny(clippy::large_futures)]

pub mod cli;
pub mod cli_wrappers;
pub mod config;
pub mod node_service;
pub mod project;
pub mod storage;
pub mod util;
pub mod wallet;