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.
21 lines
491 B
TOML
21 lines
491 B
TOML
[package]
|
|
name = "grin"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
|
|
[workspace]
|
|
members = ["api", "chain", "core", "grin", "p2p", "store", "util", "pool", "wallet"]
|
|
|
|
[dependencies]
|
|
grin_api = { path = "./api" }
|
|
grin_grin = { path = "./grin" }
|
|
grin_wallet = { path = "./wallet" }
|
|
secp256k1zkp = { path = "./secp256k1zkp" }
|
|
|
|
clap = "^2.23.3"
|
|
daemonize = "^0.2.3"
|
|
env_logger="^0.3.5"
|
|
log = "^0.3"
|
|
serde = "~0.9.10"
|
|
serde_json = "~0.9.9"
|
|
tiny-keccak = "1.1"
|