48 releases (13 breaking)

new 0.14.0 Apr 9, 2025
0.13.0 Mar 28, 2025
0.12.6 Mar 18, 2025
0.9.1 Dec 30, 2024
0.0.0-reserved Nov 23, 2023

#556 in Magic Beans

Download history 27988/week @ 2024-12-24 32060/week @ 2024-12-31 49464/week @ 2025-01-07 50343/week @ 2025-01-14 50581/week @ 2025-01-21 57431/week @ 2025-01-28 59761/week @ 2025-02-04 60801/week @ 2025-02-11 60523/week @ 2025-02-18 55687/week @ 2025-02-25 60409/week @ 2025-03-04 75055/week @ 2025-03-11 79501/week @ 2025-03-18 71580/week @ 2025-03-25 69453/week @ 2025-04-01 73543/week @ 2025-04-08

308,293 downloads per month
Used in 200 crates (18 directly)

MIT/Apache

25KB
380 lines

alloy-signer

Ethereum signer abstraction.

You can implement the Signer trait to extend functionality to other signers such as Hardware Security Modules, KMS etc. See its documentation for more.

Signer implementations in Alloy:

Examples

Sign an Ethereum prefixed message (EIP-712):

use alloy_signer::{Signer, SignerSync};
use alloy_signer_local::PrivateKeySigner;

// Instantiate a signer.
let signer = PrivateKeySigner::random();

// Sign a message.
let message = "Some data";
let signature = signer.sign_message_sync(message.as_bytes())?;

// Recover the signer from the message.
let recovered = signature.recover_address_from_msg(message)?;
assert_eq!(recovered, signer.address());
# Ok::<_, Box<dyn std::error::Error>>(())

Sign a transaction:

use alloy_consensus::TxLegacy;
use alloy_primitives::{U256, address, bytes};
use alloy_signer::{Signer, SignerSync};
use alloy_signer_local::PrivateKeySigner;
use alloy_network::TxSignerSync;

// Instantiate a signer.
let signer = "dcf2cbdd171a21c480aa7f53d77f31bb102282b3ff099c78e3118b37348c72f7"
    .parse::<PrivateKeySigner>()?;

// Create a transaction.
let mut tx = TxLegacy {
    to: address!("d8dA6BF26964aF9D7eEd9e03E53415D37aA96045").into(),
    value: U256::from(1_000_000_000),
    gas_limit: 2_000_000,
    nonce: 0,
    gas_price: 21_000_000_000,
    input: bytes!(),
    chain_id: Some(1),
};

// Sign it.
let signature = signer.sign_transaction_sync(&mut tx)?;
# Ok::<_, Box<dyn std::error::Error>>(())

Dependencies

~19MB
~403K SLoC