linera_wallet_json/lib.rs
1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4//! A wallet and keystore for the Linera client, persisted as JSON files on disk.
5
6#![deny(missing_docs)]
7
8pub mod display;
9pub mod keystore;
10pub mod paths;
11pub mod wallet;
12
13pub use keystore::Keystore;
14pub use wallet::PersistentWallet;