ethereum-tx-sign

Build Status

Allows you to sign Ethereum transactions offline.

``` const ETHCHAINID: u32 = 1;

let tx = RawTransaction { ... }

let rawrlpbytes = tx.sign(&privatekey, ETHCHAIN_ID);

```

That's it!