#ethereum #solana #crypto #blockchain

signature-verifier

Convenience crate for verifying crypto-signed messages

1 stable release

1.0.0 Apr 2, 2024

#2737 in Magic Beans

Download history 82/week @ 2024-03-27 52/week @ 2024-04-03

134 downloads per month

MIT and maybe LGPL-3.0+

13KB
176 lines

signature-verifier

This crate provide an easy way to verify Solana and Ethereum wallet-signed messages.

Installation

Add the crate to your Cargo.toml and specify the needed features. By default it doesn't include anything.

[dependencies]
signature-verifier = { version = "1.0.0", features = ["solana", "ethereum"]}

Usage

use signature_verifier::ethereum::EthereumVerifier;
// or
// use signature_verifier::solana::SolanaVerifier;
use signature_verifier::SignatureVerifier;

fn main() {
    let message = "hello, world!";
    let signature = "7c7240d970b40d0b7a7a798584fee5dbc3e64a7fd276eb068c9139e84bda6b57383276bf73f32ef7055969d0c896884350fc5e899a17904a5f728c5055d8c70d1b";
    let account = "0x099dC008292EF1FEb96fBF67eA47fB71fde142C3";

    let verification_result = EthereumVerifier::verify(signature, message, account);

    match verification_result {
        Ok(_) => println!("Signature is valid!"),
        Err(e) => eprintln!("{}", e),
    };
}


lib.rs:

signature-verifier

Convenience crate for verifying crypto-signed messages.

Currently supports Ethereum- and Solana-signed messages.

Dependencies

~0–11MB
~102K SLoC