feat(cli): add subcommand generate-session-keys
... | @@ -47,6 +47,7 @@ sp-membership = { path = 'primitives/membership' } | ... | @@ -47,6 +47,7 @@ sp-membership = { path = 'primitives/membership' } |
# crates.io dependencies | # crates.io dependencies | ||
async-io = "1.3" | async-io = "1.3" | ||
futures = { version = "0.3.1", features = ["compat"] } | futures = { version = "0.3.1", features = ["compat"] } | ||
hex = "0.4.3" | |||
jsonrpc-core = '18.0.0' | jsonrpc-core = '18.0.0' | ||
log = "0.4" | log = "0.4" | ||
maplit = '1.0.2' | maplit = '1.0.2' | ||
... | @@ -85,6 +86,7 @@ sp-core = { git = "https://github.com/librelois/substrate.git", branch = "dunite | ... | @@ -85,6 +86,7 @@ sp-core = { git = "https://github.com/librelois/substrate.git", branch = "dunite |
sp-finality-grandpa = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | sp-finality-grandpa = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | ||
sp-offchain = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | sp-offchain = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | ||
sp-keyring = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | sp-keyring = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | ||
sp-keystore = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | |||
sp-runtime = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | sp-runtime = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | ||
sp-session = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | sp-session = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | ||
sp-storage = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | sp-storage = { git = "https://github.com/librelois/substrate.git", branch = "duniter-monthly-2022-01" } | ||
... | ... |
node/src/cli/key.rs
0 → 100644
Please register or sign in to comment