signatory_client_lib/
lib.rs

1//! Utilities for working with DFlow signatory servers
2//!
3//! The signatory client lib provides modules for creating and verifying endorsements and payment in
4//! lieu tokens and for interacting with the DFlow signatory server API.
5//!
6
7/// API paths
8pub mod api_path;
9/// Endorsement module
10pub mod endorsement;
11/// Endorsement key module
12pub mod endorsement_key;
13/// Client module for the signatory server EVM API
14pub mod evm;
15/// Markets endpoint types
16pub mod markets;
17/// Payment in lieu module
18pub mod payment_in_lieu;
19/// Client module for the signatory server Solana API
20pub mod solana;
21
22pub use bs58;
23pub use ed25519_dalek;
24pub use rand;
25
26mod common;