Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 364 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 364 Bytes

ethereum-tx-sign

Build Status

Allows you to sign Ethereum transaction offline.

  const ETH_CHAIN_ID: u32 = 1;

  let tx = RawTransaction {
    ...
  }

  let raw_rlp_bytes = tx.sign(&private_key, ETH_CHAIN_ID);

That's it!