Skip to content

Commit

Permalink
Reimplement transaction signing with license compatible crate (#325)
Browse files Browse the repository at this point in the history
* Revert "Revert "Add transaction signing with in `accounts` sub-namespace. (#279)" (#315)"

This reverts commit 9928849.

* implemented signing and recovery with secp256k1 crate

* attempt to protect key from being leaked
  • Loading branch information
nlordell committed Feb 11, 2020
1 parent db9b799 commit 74b14ad
Show file tree
Hide file tree
Showing 8 changed files with 976 additions and 3 deletions.
8 changes: 6 additions & 2 deletions Cargo.toml
Expand Up @@ -13,19 +13,23 @@ edition = "2018"

[dependencies]
arrayvec = "0.5.0"
base64 = "0.11.0"
derive_more = "0.99.1"
ethabi = "11.0.0"
ethereum-types = "0.8.0"
futures = "0.1.26"
jsonrpc-core = "14.0.0"
log = "0.4.6"
parking_lot = "0.10.0"
rlp = "0.4"
rustc-hex = "2.0.1"
secp256k1 = { version = "0.17", features = ["recovery"] }
serde = { version = "1.0.90", features = ["derive"] }
serde_json = "1.0.39"
tiny-keccak = { version = "2.0.1", features = ["keccak"] }
tokio-timer = "0.1"
url = "2.1.0"
base64 = "0.11.0"
derive_more = "0.99.1"
zeroize = "1.1.0"
# Optional deps
hyper = { version = "0.12.25", optional = true }
hyper-tls = { version = "0.3.2", optional = true }
Expand Down

0 comments on commit 74b14ad

Please sign in to comment.