ethsign 0.2.0

A library to read JSON keyfiles and sign Ethereum stuff.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
echo ""
echo "Running with C implementation of secp256k1"
echo "=========================================="
echo ""
cargo build || exit
cargo test || exit

echo ""
echo "Running with Rust implementation of secp256k1"
echo "============================================="
echo ""
cargo build --no-default-features --features secp256k1-rs || exit
cargo test --no-default-features --features secp256k1-rs || exit