ledger-sdk-eth-app 0.0.1

Ledger Ethereum app interaction helpers with EIP-712 support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: Apache-2.0

//! EIP-712 command implementations
//!
//! This module contains all EIP-712 related functionality organized by APDU command type.

pub mod encoding;
pub mod filtering;
pub mod high_level;
pub mod signing;
pub mod structs;

// Re-export all public traits and types
pub use encoding::*;
pub use filtering::*;
pub use high_level::*;
pub use signing::*;
pub use structs::*;