alloy_signer_turnkey/lib.rs
1#![doc = include_str!("../README.md")]
2#![doc(
3 html_logo_url = "https://raw.githubusercontent.com/alloy-rs/core/main/assets/alloy.jpg",
4 html_favicon_url = "https://raw.githubusercontent.com/alloy-rs/core/main/assets/favicon.ico"
5)]
6#![cfg_attr(not(test), warn(unused_crate_dependencies))]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8
9mod signer;
10pub use signer::{TurnkeySigner, TurnkeySignerError};
11
12pub use turnkey_client::{self, TurnkeyClientError, TurnkeyP256ApiKey};
13
14/// Alias for the Turnkey SDK client using the P256 API key stamper.
15pub type TurnkeyClient = turnkey_client::TurnkeyClient<TurnkeyP256ApiKey>;
16
17/// Alias for the Turnkey SDK client builder using the P256 API key stamper.
18pub type TurnkeyClientBuilder = turnkey_client::TurnkeyClientBuilder<TurnkeyP256ApiKey>;