mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
ac553493f1
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.
19 lines
448 B
TOML
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" }
|