grin/wallet/Cargo.toml
Ignotus Peverell ac553493f1
WIP: Wallet functionality to receive and send coins
Beginning of a first pass at simple wallet functionalities so
Grin can be used to author transactions. We introduce a
receiving server, to be at least able to build coinbase outputs
that can be used by the mining daemon.

Present:

* Coinbase receiving API.
* Command to start the receiving server.
* Beginning of a transaction sending command.
* Improvements to the REST API abstractions to support the above.

Still to do:

* Change to the miner daemon to use the receiving server.
* A command line sender.
* API to receive any transaction (not just coinbase).
* A command line receiver.

Beyond that, HD derivation and seed generation are very simple
so far and almost certainly insecure. Just for testing for now.
2017-05-24 16:09:39 -07:00

19 lines
448 B
TOML

[package]
name = "grin_wallet"
version = "0.1.0"
authors = ["Ignotus Peverell <igno_peverell@protonmail.com>", "Laurent Meunier <laurent.meunier95@gmail.com>"]
[dependencies]
byteorder = "1"
log = "^0.3"
rand = "^0.3"
rust-crypto = "^0.2"
serde = "~0.9.10"
serde_derive = "~0.9.10"
serde_json = "~0.9.8"
grin_api = { path = "../api" }
grin_core = { path = "../core" }
grin_util = { path = "../util" }
secp256k1zkp = { path = "../secp256k1zkp" }