Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ alloy-signer-gcp = { version = "1.0.41", path = "crates/signer-gcp", default-fea
alloy-signer-ledger = { version = "1.0.41", path = "crates/signer-ledger", default-features = false }
alloy-signer-local = { version = "1.0.41", path = "crates/signer-local", default-features = false }
alloy-signer-trezor = { version = "1.0.41", path = "crates/signer-trezor", default-features = false }
alloy-signer-turnkey = { version = "1.0.41", path = "crates/signer-turnkey", default-features = false }
alloy-transport = { version = "1.0.41", path = "crates/transport", default-features = false }
alloy-transport-http = { version = "1.0.41", path = "crates/transport-http", default-features = false }
alloy-transport-ipc = { version = "1.0.41", path = "crates/transport-ipc", default-features = false }
Expand Down
3 changes: 3 additions & 0 deletions crates/alloy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ alloy-signer-gcp = { workspace = true, optional = true }
alloy-signer-ledger = { workspace = true, optional = true }
alloy-signer-local = { workspace = true, optional = true }
alloy-signer-trezor = { workspace = true, optional = true }
alloy-signer-turnkey = { workspace = true, optional = true }

# transport
alloy-transport = { workspace = true, optional = true }
Expand Down Expand Up @@ -268,6 +269,7 @@ signer-ledger-browser = ["signer-ledger", "alloy-signer-ledger?/browser"]
signer-ledger-node = ["signer-ledger", "alloy-signer-ledger?/node"]
signer-local = ["signers", "dep:alloy-signer-local"]
signer-trezor = ["signers", "dep:alloy-signer-trezor"]
signer-turnkey = ["signers", "dep:alloy-signer-turnkey"]
signer-keystore = ["signer-local", "alloy-signer-local?/keystore"]
signer-mnemonic = ["signer-local", "alloy-signer-local?/mnemonic"]
signer-mnemonic-all-languages = [
Expand Down Expand Up @@ -329,6 +331,7 @@ eip712 = [
"alloy-signer-aws?/eip712",
"alloy-signer-gcp?/eip712",
"alloy-signer-ledger?/eip712",
"alloy-signer-turnkey?/eip712",
# TODO: https://github.com/alloy-rs/alloy/issues/201
# "alloy-signer-trezor?/eip712",
]
Expand Down
4 changes: 4 additions & 0 deletions crates/alloy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,10 @@ pub mod signers {
#[cfg(feature = "signer-trezor")]
#[doc(inline)]
pub use alloy_signer_trezor as trezor;

#[cfg(feature = "signer-turnkey")]
#[doc(inline)]
pub use alloy_signer_turnkey as turnkey;
}

/// Low-level Ethereum JSON-RPC transport abstraction and implementations.
Expand Down
2 changes: 1 addition & 1 deletion crates/signer-turnkey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ alloy-signer.workspace = true
async-trait.workspace = true
thiserror.workspace = true
tracing.workspace = true
turnkey_client = "0.4"
turnkey_client = "0.5"

[dev-dependencies]
k256 = { workspace = true, features = ["ecdsa"] }
Expand Down