linera-wallet-json 0.15.21

Persistent wallet implementation for the Linera protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

//! A wallet and keystore for the Linera client, persisted as JSON files on disk.

#![deny(missing_docs)]

pub mod display;
pub mod keystore;
pub mod paths;
pub mod wallet;

pub use keystore::Keystore;
pub use wallet::PersistentWallet;