hyper_exchange/lib.rs
1pub mod adapter;
2pub mod client;
3pub mod signer;
4pub mod signing;
5pub mod types;
6
7// Re-export key types at the crate root for convenience.
8pub use client::ExchangeClient;
9pub use signer::Signer;
10pub use signing::{
11 compute_action_hash, compute_action_hash_with_expiry, sign_l1_action, sign_user_signed_action,
12 EIP712Field,
13};
14pub use types::{
15 ExchangeError, LimitOrderType, OrderTypeWire, OrderWire, Signature, TriggerOrderType,
16};